/* Shrink */
.rf-hov-shrink {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
  }
  .btn-hover:hover{
	  cursor: pointer;
	  filter: drop-shadow(2px 4px 6px black);
  }
  .rf-hov-shrink:hover, .rf-hov-shrink:focus, .rf-hov-shrink:active {
	-webkit-transform: scale(0.97);
	transform: scale(0.97);
  }
  /* Shrink*/

  .rf-animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.rf-animated.infinite {
    animation-iteration-count: infinite;
}
@keyframes rf-pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}
.rf-pulse {
    animation-name: rf-pulse;
}
/*==========================================================================================================*/
/*============================================= SECTION 1 ==================================================*/
/*==========================================================================================================*/
.section1{
	/* background: url(../images/layout/home/section1/bg.jpg) no-repeat center top; */
	background: url(/gl/assets/images/layout/section1/bg.jpg) no-repeat center top;
	background-size: cover;
	height: 47vw;
	/* height: 915px; */
	color: #fff;
	position: relative;
}
.btn-download{
	width: 18vw;
    /* padding: 0vw 22vw; */
    /* margin-top: 41vw; */
	margin-top: 40vw;
}
.btn-download:hover {
    filter: hue-rotate(45deg);
    transition: 0.5s;
}
.section1 .highlight{
	margin-top: 10.1vw;
	margin-left: 42.5vw;
}
.section1 .highlight h2{
	font-family: 'Tomorrow', sans-serif;
	font-weight: 300;
	font-size: 16pt;
	margin: 0 0 15px;
	border-bottom: 2px solid transparent;
	border-image: linear-gradient(0.25turn, #ff8000, #b95e03, rgba(56,2,155,0));
	border-image-slice: 1;
	width: 80%;
	padding-bottom: 10px;
}
.section1 .highlight h1{
	font-family: 'Tomorrow', sans-serif;
	font-weight: 500;
	font-size: 30pt;
	text-transform: uppercase;
	margin: 0 0 20px;
	line-height: 1;
}
.section1 .highlight p{
	font-family: 'Tomorrow', sans-serif;
	font-weight: 300;
	font-size: 12pt;
	margin: 0;
	line-height: 1.2;
}
@media(max-width: 768px){
	.btn-download{
		/* width: 60%;
		margin-top: 158vw; */
		width: 48%;
        margin-top: 162vw;
	}
	.section1{
		/* background: url(../images/layout/home/section1/mobile/bg.jpg) no-repeat center top; */
		background: url(/grandlaunch/assets/images/layout/section1/mobile/bg-new.jpg) no-repeat center top;
		background-size: 100%;
		height: 177vw;
		position: relative;
	}
	.section1 .highlight{
		margin: 131vw 0 0;
		display: flex;
		justify-content: center;
	}
}
/*==========================================================================================================*/
/*=========================================== END SECTION 1 ================================================*/
/*==========================================================================================================*/

/*==========================================================================================================*/
/*============================================= SECTION 2 ==================================================*/
/*==========================================================================================================*/
.section2{
	background: url(../images/layout/home/section2/bg.jpg) no-repeat center top;
	background-size: cover;
	height: auto;
	color: #fff;
	position: relative;
	padding: 5vw 0;
}
ul.news-list{
	list-style-type: none;
	/* margin: 0 -15px 0; */
	margin: 0 0.5vw 0;
	padding: 0;
	display: flex;
}
ul.news-list li{
	flex: 0 0 25%;
    max-width: 25%;
	padding: 0 0.5vw;
    position: relative;
    cursor: pointer;
}
ul.news-list li:hover {
    filter: drop-shadow(2px 4px 6px black);
    transition: 0.5s;
}
ul.news-list li .news-wrap-list{
	background: url(../images/layout/home/section2/frame-news.png) no-repeat center top;
    background-size: 100%;
    /* height: auto; */
    /* border: 1px solid #86602b; */
    /* padding: 5vw 0.5vw; */
	padding: 1.7vw 0.5vw;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
    height: 100%;
}
ul.news-list li .news-wrap-list div{
	flex: 0 0 100%;
}
ul.news-list li .news-wrap-list .news-banner{
	z-index: 1;
}
ul.news-list li .news-wrap-list .news-banner img{
	width: 100%;
	/* margin-bottom: 30px; */
	margin-bottom: 1vw;
}
ul.news-list li .news-wrap-list .news-title{
	font-family: 'Tomorrow', sans-serif;
	font-weight: 500;
	font-size: 1.1vw;
    line-height: 0.5;
    color: #cf1a32;
    margin-bottom: 0.5vw;
	z-index: 1;
	font-style: italic;
}
ul.news-list li .news-wrap-list .news-description{
	font-family: 'Tomorrow', sans-serif;
    font-weight: 300;
    font-size: 0.8vw;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
	margin-bottom: 2.8vw;
    z-index: 1;
}
ul.news-list li .news-wrap-list a.readmore{
	font-family: 'Tomorrow', sans-serif;
    font-weight: 500;
    font-size: 0.9vw;
    color: #cf1a32;
    position: absolute;
    bottom: 2.8vw;
    right: 2.2vw;
    font-style: italic;
}
.read-more{
	margin-top: 3vw;
}
.btn-news{
	width: 45vw;
    padding: 2vw 0vw;
}
.btn-news:hover {
	transition: 0.5s;
	filter: contrast(0.2);
}

@media(max-width: 768px){
	.btn-news{
		width: 100vw;
		padding: 0vw 0vw;
	}
	.section2{
		background: url(../images/layout/home/section2/mobile/bg.jpg) no-repeat center top;
		background-size: cover;
		height: auto;
		color: #fff;
		position: relative;
		padding: 12vw 0;

	}
	ul.news-list{
		margin: 0;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
	}
	ul.news-list li{
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 20px;
		margin-bottom: 30px;
	}
	ul.news-list li .news-wrap-list{
		background: url(../images/layout/home/section2/mobile/frame-news.png) no-repeat center top;
		background-size: 100%;
		padding: 2vw 2vw;
		display: flex;
		align-content: space-between;
		flex-wrap: wrap;
		height: 100%;
	}
	ul.news-list li .news-wrap-list:after{
		right: 40px;
	}
	ul.news-list li .news-wrap-list:before{
		height: 97%;
		margin: 4px 24px;
	}
	ul.news-list li .news-wrap-list .news-banner img{
		margin-bottom: 10px;
	}
	ul.news-list li .news-wrap-list .news-title{
		font-size: 10pt;
		margin-bottom: 15px;
	}
	ul.news-list li .news-wrap-list .news-description{
		display: none;
	}
	ul.news-list li .news-wrap-list a.readmore{
		font-size: 3vw;
        position: absolute;
        bottom: 4vw;
        right: 10vw;
	}
	.uri-decoration{
		margin-top: 40px;
	}
	.uri-decoration a{
		position: relative;
		display: inline-block;
		width: 50%;
		color: white;
		font-family: 'Tomorrow', sans-serif;
		font-weight: 500;
		font-size: 14pt;
		line-height: 1;
		text-align: center;
		text-decoration: unset;
		font-style: italic;
	}
	.uri-decoration:before{
		content: '';
		position: relative;
		left: 0;
		top: 3px;
		background: url(../images/layout/home/section2/side-left.png) no-repeat right top;
		width: 28vw;
		height: 18px;
	}
	.uri-decoration:after{
		content: '';
		position: relative;
		right: 0;
		top: 3px;
		background: url(../images/layout/home/section2/side-right.png) no-repeat left top;
		width: 28vw;
		height: 18px;
	}
}
/*==========================================================================================================*/
/*=========================================== END SECTION 2 ================================================*/
/*==========================================================================================================*/

/*==========================================================================================================*/
/*============================================= SECTION 3 ==================================================*/
/*==========================================================================================================*/
.section3{
	background: url(../images/layout/home/section3/bg-accretia.jpg) no-repeat center top;
	background-size: cover !important;
	height: 50vw;
	padding: 10vw 0;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.rfr-three-nation-content{
	margin-top: 0;
}
ul.rfr-three-nation-info{
	list-style-type: none;
	display: flex;
	margin: 0;
	padding: 0;
	width: 10%;
	flex-direction: column;
	align-items: center;
	left: 75vw;
    position: relative;
}
ul.rfr-three-nation-info li{
	margin: 0 0 2vw;
}
ul.rfr-three-nation-info li a{
	cursor: pointer;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
/*ACC*/
ul.rfr-three-nation-info > li a.acc{
	background: url(../images/layout/home/section3/btn-acc.png) no-repeat;
	background-size: 100%;
	/* width: 9.063vw;
	height: 7.969vw; */
	width: 8.5vw;
    height: 8.5vw;
	display: block;
}
ul.rfr-three-nation-info > li a.acc.active,
ul.rfr-three-nation-info > li a.acc:hover{
	background: url(../images/layout/home/section3/btn-acc_.gif) no-repeat;
	background-size: 100%;
	/* width: 9.063vw;
	height: 7.969vw; */
	width: 8.5vw;
    height: 8.5vw;
}
/*BEL*/
ul.rfr-three-nation-info > li a.bel{
	background: url(../images/layout/home/section3/btn-bellato.png) no-repeat;
	background-size: 100%;
	/* width: 7.6045vw;
	height: 7.865vw; */
	width: 8.5vw;
    height: 8.5vw;
	display: block;
}
ul.rfr-three-nation-info > li a.bel.active,
ul.rfr-three-nation-info > li a.bel:hover{
	background: url(../images/layout/home/section3/btn-bellato_.gif) no-repeat;
	background-size: 100%;
	/* width: 7.6045vw;
	height: 7.865vw; */
	width: 8.5vw;
    height: 8.5vw;
}
/*COR*/
ul.rfr-three-nation-info > li a.cor{
	background: url(../images/layout/home/section3/btn-cora.png) no-repeat;
	background-size: 100%;
	/* width: 8.1778vw;
	height: 8.021vw; */
	width: 8.5vw;
    height: 8.5vw;
	display: block;
}
ul.rfr-three-nation-info > li a.cor.active,
ul.rfr-three-nation-info > li a.cor:hover{
	background: url(../images/layout/home/section3/btn-cora_.gif) no-repeat;
	background-size: 100%;
	/* width: 8.1778vw;
	height: 8.021vw; */
	width: 8.5vw;
    height: 8.5vw;
}
@media(max-width: 768px){
	.section3{
		background: url(../images/layout/home/section3/mobile/bg-accretia.jpg) no-repeat center top;
		background-size: cover;
		height: 172vw;
	}
	ul.rfr-three-nation-info{
		display: flex;
		width: 100%;
		flex-direction: row;
		justify-content: center;
		margin-top: 0vw;
		left: unset;
	}
	ul.rfr-three-nation-info li{
		margin: 0 3vw 2vw;
	}
	ul.rfr-three-nation-info > li a.acc,
	ul.rfr-three-nation-info > li a.acc.active,
	ul.rfr-three-nation-info > li a.acc:hover,
	ul.rfr-three-nation-info > li a.bel,
	ul.rfr-three-nation-info > li a.bel.active,
	ul.rfr-three-nation-info > li a.bel:hover,
	ul.rfr-three-nation-info > li a.cor,
	ul.rfr-three-nation-info > li a.cor.active,
	ul.rfr-three-nation-info > li a.cor:hover{
		width: 23vw !important;
		height: 31vw !important;
	}
	/*ACC*/
	ul.rfr-three-nation-info > li a.acc{
		background: url(../images/layout/home/section3/mobile/btn-acc.png) no-repeat;
		background-size: 100%;
		display: block;
	}
	ul.rfr-three-nation-info > li a.acc.active,
	ul.rfr-three-nation-info > li a.acc:hover{
		background: url(../images/layout/home/section3/mobile/btn-acc_.gif) no-repeat;
		background-size: 100%;
	}
	/*BEL*/
	ul.rfr-three-nation-info > li a.bel{
		background: url(../images/layout/home/section3/mobile/btn-bellato.png) no-repeat;
		background-size: 100%;
		display: block;
	}
	ul.rfr-three-nation-info > li a.bel.active,
	ul.rfr-three-nation-info > li a.bel:hover{
		background: url(../images/layout/home/section3/mobile/btn-bellato_.gif) no-repeat;
		background-size: 100%;
	}
	/*COR*/
	ul.rfr-three-nation-info > li a.cor{
		background: url(../images/layout/home/section3/mobile/btn-cora.png) no-repeat;
		background-size: 100%;
		display: block;
	}
	ul.rfr-three-nation-info > li a.cor.active,
	ul.rfr-three-nation-info > li a.cor:hover{
		background: url(../images/layout/home/section3/mobile/btn-cora_.gif) no-repeat;
		background-size: 100%;
	}
}
/*==========================================================================================================*/
/*=========================================== END SECTION 3 ================================================*/
/*==========================================================================================================*/

/*==========================================================================================================*/
/*============================================= SECTION 4 ==================================================*/
/*==========================================================================================================*/
.section4{
	min-height: 400px;
}
@media(max-width: 768px){
	
}
/*==========================================================================================================*/
/*=========================================== END SECTION 4 ================================================*/
/*==========================================================================================================*/

/*==========================================================================================================*/
/*============================================= SECTION 5 ==================================================*/
/*==========================================================================================================*/
.section5{
	background: url(../images/layout/home/section5/bg.jpg) no-repeat center top;
	background-size: cover;
	height: auto;
	color: #fff;
	position: relative;
	padding: 6vw 0;
}
.section5-slider .slick-prev{
	top: 55%;
	left: 0;
	z-index: 999;
	width: 82px;
	height: 106px;
}
.section5-slider .slick-next{
	top: 55%;
	right: 0;
	z-index: 999;
	width: 82px;
	height: 106px;
}
.section5-slider .slick-prev:before {
	content: "" !important;
	background: url(../images/layout/home/section5/prev.png) no-repeat left top;
	background-size: 100%;
	width: 82px;
	height: 106px;
	float: left;
	position: relative;
	opacity: 1 !important;
}
.section5-slider .slick-next:before {
	content: "" !important;
	background: url(../images/layout/home/section5/next.png) no-repeat right top;
	background-size: 100%;
	width: 82px;
	height: 106px;
	float: right;
	position: relative;
	opacity: 1 !important;
}
.section5-slider.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.section5-slider .slick-slide img {
    width: 45vw;
    margin-top: 4vw;
}
@media(max-width: 768px){
	.section5-slider .slick-slide img {
		width: 100%;
	}
	.section5{
		background: url(../images/layout/home/section5/mobile/bg.jpg) no-repeat center top;
		background-size: 100%;
		height: auto;
		position: relative;
		padding: 32vw 0 45vw;
	}
	.section5-slider .slick-prev{
		top: unset;
		bottom: -20vw;
		left: 30vw !important;
		z-index: 999;
		width: 30px;
		height: 38px;
	}
	.section5-slider .slick-next{
		top: unset;
		bottom: -20vw;
		right: 30vw !important;
		z-index: 999;
		width: 30px;
		height: 38px;
	}
	.section5-slider .slick-prev:before {
		content: "" !important;
		background: url(../images/layout/home/section5/prev.png) no-repeat left top;
		background-size: 100%;
		width: 30px;
		height: 38px;
		float: left;
		position: relative;
		opacity: 1 !important;
	}
	.section5-slider .slick-next:before {
		content: "" !important;
		background: url(../images/layout/home/section5/next.png) no-repeat right top;
		background-size: 100%;
		width: 30px;
		height: 38px;
		float: right;
		position: relative;
		opacity: 1 !important;
	}
	.section5-slider.slick-dotted.slick-slider {
		margin-bottom: 0;
	}
}
/*==========================================================================================================*/
/*=========================================== END SECTION 5 ================================================*/
/*==========================================================================================================*/
