body {
	background-color: #fff !important;
	/* overflow-x: hidden; */
	margin: 0;
}

p {
	font-size: 1.8rem;
	color: #666;
}

img {
	user-select: none;
}

.pd-0 {
	padding: 0 !important;
}

.mt-10 {
	margin-top: 10px;
}

.text-white {
	color: #fff;
}

.footer-text {
	color: #fff;
	text-align: center;
	background-color: #26BEC9;
	line-height: 42px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

header {
	transition: .3s;
}

header:not(.fix) {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	background: transparent;
	border: 0;
	z-index: 9;
}

header:not(.fix) .logo-blue {
	display: none;
}

header.fix .logo-blue {
	display: block;
}

header.fix .logo-white {
	display: none;
}

header .container,
header .d-flex {
	height: inherit;
}

footer {
	background-color: #444;
}

footer a {
	color:#f4f4f4;
}

section {
	padding: 60px 0;
}

[class*=fade-item] {
	transform: translateY(30px);
	opacity: 0;
	transition: 0.8s;
}

.animate-sec.active [class*=fade-item] {
	transform: translateY(0);
	opacity: 1;
}

.fade-item-2 {
	transition-delay: 0.2s;
}

.fade-item-3 {
	transition-delay: 0.4s;
}

.fade-item-4 {
	transition-delay: 0.6s;
}

.fade-item-5 {
	transition-delay: 0.8s;
}

.banner {
	padding: 150px 0 50px;
	/* min-height: 90vh; */
}

.banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 45%;
	max-height: 120%;
	opacity: 0;
	transition: 1s
}

.banner.active .banner-bg {
	opacity: 1;
}

.banner .content {
	margin-bottom: 30px;
}

.banner .content h1 {
	margin-top: 10px;
	margin-bottom: 20px;
	font-size: 3.4rem;
	line-height: 1.4;
}

.banner .content h2 {
	font-size: 2.4rem;
	font-weight: normal;
	color: #666;
}

.banner .download-links > img {
	display: inline-block;
	height: 130px;
	vertical-align: top;
}

.banner .store {
	display: inline-block;
	margin-left: 30px;
	padding: 8px 0;
	vertical-align: top;
}

.banner .store a > img {
	display: block;
	height: 52px;
    margin-bottom: 10px;
}

section:not(.banner) .content {
	padding-top: 25%;
}

.content h3 {
	margin-bottom: 20px;
	font-size:  2.8rem;
}

.feature-sec {
	padding: 140px 0 160px;
	position: relative;
	background-size: auto 200px;
	background-repeat: no-repeat;
}

section.feature-sec.bg-blue {
	background-color: #E6F5F6;
	background-image: url(../img/bg-phone.png);
	background-position: calc(100% - 30px) calc(100% - 80px);
}

section.feature-sec.bg-yellow {
	background-color: #FFF7E6;
	background-image: url(../img/bg-instant.png);
	background-position: 30px calc(100% - 80px);
}

section.feature-sec.bg-red {
	background-color: #FFEEEC;
	background-image: url(../img/bg-code.png);
	background-position: calc(100% - 30px) calc(100% - 20px);
	background-size: 150px;
}

section.feature-sec:before,
section.feature-sec:after {
	content: '';
	position: absolute;
	border-style: solid;
}

section.feature-sec:before {
	top: -5vw;
	z-index: 2;
}

section.feature-sec:after {
	bottom: -4vw;
	z-index: 1;
}

section.feature-sec.bg-blue:before {	
	border-width: 5vw 100vw 5vw 0;
	border-color: transparent #E6F5F6 #E6F5F6 transparent;
}

section.feature-sec.bg-blue:after {
	border-width: 5vw 100vw 5vw 0;
	border-color: transparent #fff #fff transparent;
}

section.feature-sec.bg-yellow:before {
	border-width: 5vw 100vw 5vw 0;
	border-color: transparent #FFF7E6 #FFF7E6 transparent;
}

section.feature-sec.bg-yellow:after {
	border-width: 5vw 0 5vw 100vw;
	border-color: transparent transparent #fff #fff;
}

section.feature-sec.bg-red:before {
	border-width: 5vw 0 5vw 100vw;
	border-color: transparent transparent #FFEEEC #FFEEEC;
}

section.feature-sec.bg-red:after {
	bottom: -5vw;
	border-width: 5vw 0 5vw 100vw;
	border-color: transparent transparent #fff #fff;
}

section.feature-sec .content {
	position: relative;
	padding-top: 0;
	padding-left: 62px;
}

section.feature-sec .content .ic-feature {
	position: absolute;
	top: 2px;
	left: 0;
	width: 42px;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.img-fearure {
	position: absolute;
	top: -140px;
	z-index: 9;
}

section.feature-sec.bg-blue .img-fearure,
section.feature-sec.bg-red .img-fearure {
	padding-right: 30px;
}

section.feature-sec.bg-yellow .img-fearure {
	padding-left: 30px;
}

.feedback-sec {
	margin-top: 100px;
}

.card-feedback {
	position: relative;
	border-radius: 10px;
	padding: 40px;
	margin-bottom: 30px;
	color: #fff;
	font-size: 1.8rem;
	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
	background-position: calc(100% - 10px) calc(100% - 10px);
	background-repeat: no-repeat;
	background-size: 40px;
}

.card-feedback:before {
	content: "\f10d";
	font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
	position: absolute;
	top: 10px;
	left: 10px;
	color: #fff;
	opacity: 0.25;
	font-size: 3rem;
}

.card-feedback.ios {
	background-color: #54A7EC;
	background-image: url(../img/ic-appstore.png);
}

.card-feedback.android {
	background-color: #65CA92;
	background-image: url(../img/ic-googleplay.png);
}

.download-sec {
	background-image: url(../img/bg-pattern.jpg);
	background-size: 500px;
}

.download-sec .download-links > img {
	width: 150px;
	margin-bottom: 20px;
	border-radius: 4px;
}

.download-sec .download-links .store img {
	width: 200px;
	margin: 5px;
}

.holder {
	background: url(../img/kkday-propaganda-bg.png) no-repeat;
	background-size: 100% 100%;
	background-position: center center;
	min-width: 1440px;
	height: 100%;
	min-height: calc(100vh - 42px);
}

.holder .content {
	position: absolute;
	transform: translate(-50%, 0%);
	left: 50%;
	top: 32%;
	color: #fff;
	text-align: center;
}

.holder .content .title {
	font-size: 4.125rem;
	line-height: 1;
}

.holder .content .desc {
	font-size: 1.5rem;
	line-height: 2rem;
	margin-top: 2rem;
}

@media (max-width: 991px) {
	section {
		padding: 40px 0;
	}

	.holder {
		min-width: 0;
		background-size: cover;
		background-position: center;
	}

	.holder .content .title {
		font-size: 2rem;
		line-height: 1;
	}
	
	.holder .content .desc {
		font-size: 0.7rem;
		line-height: 1rem;
		margin-top: 1rem;
	}

	.footer-text {
		/* min-width: 991px; */
		width: 100%;
	}

	header:not(.fix) .header-nav-m a {
		color: #fff;
	}

	.banner {
		padding: 80px 0 0;
		overflow: hidden;
	}
	
	.banner-bg {
		max-width: 120%;
	}

	.banner .banner-phone {
		max-width: 80%;
		margin: 0 auto;
	}

	.banner .content h1,
	.banner .content h2 {
		color: #fff;
	}
	
	.banner .download-links {
		text-align: center;
	}

	.banner .download-links > img {
		height: 115px;
	}

	.banner .download-links .store {
		padding: 0;
	}

	section:not(.banner) .content {
		padding-top: 0;
	}

	section.feature-sec {
		padding: 70px 0 60px 0;
		background-image: none !important;
	}

	.feature-sec.bg-blue {
		padding-top: 40px;
		margin-top: 30px;
	}

	section.feature-sec .content {
		padding-left: 55px;
	}
	
	section.feature-sec .content .ic-feature {
		width: 35px;
	}
	
	section.feature-sec .img-fearure {
		position: relative;
		bottom: auto;
    	top: auto;
		width: 100%;
		margin-bottom: -100px;
		padding: 0 0 0 50px !important;
	}

	section.feature-sec:after {
		bottom: -2vw;
	}

	.feedback-sec {
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	p {
		font-size: 1.6rem;
	}

	.banner-bg {
		max-width: 150%;
	}

	.banner .content h1 {
		text-shadow: 0 2px 15px rgba(0,0,0,0.15);
		font-size: 3rem;
	}

	.banner .content h2 {
		opacity: 0.8;
		font-size: 1.8rem;
	}

	.content h3 {
		margin-bottom: 10px;
		font-size: 2.2rem;
	}
	
	.banner .download-links > img {
		height: 100px;
	}

	.banner .store {
		margin-left: 20px;
	}

	.banner .store a > img {
		height: 45px;
	}

	.card-feedback {
		margin-bottom: 20px;
		font-size: 1.6rem;
	}

	.holder {
		width: 100vw;
	}

	.footer-text {
		display: block;
	}

}
