body, html {
	width: 100%;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
	background-color:#fff;
	transition: ease-in-out 0.8s;
}
* {
    -webkit-overflow-scrolling: touch;
}
body, h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
}
img {
	max-width: 100%;
}

.home_page {
    background:#ccc;
    position: fixed;
    width: 100%;
    height: 100%;
	transition: ease-in-out 3s;
}
.header {
    position: absolute;
    width: 100%;
    top: 50px;
	z-index:9;
}
.header h1 {
    color: #fff;
    margin: 0;
    text-shadow: 0px 3px 3px #000;
    font-size: 38px;
	font-weight: 600;
}
.header h1 a {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 100%;
    overflow: hidden;
    vertical-align: middle;
    border: 2px solid #fff;
}
.website_btns {
    vertical-align: middle;
    position: relative;
    height: 100%;
}
.website_btns .col-sm-6{
	position: relative;
    height: 100%;
    display: table;
	background: url(../img/shopping.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.website_btns .col-sm-6 > div {
	display: table-cell;
    vertical-align: middle;
}
.website_btns > div:last-child {
	background: url(../img/heart_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.website_btns a {
       display: inline-block;
    background: rgba(240, 129, 22, 0.58);
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 30px;
    border-radius: 2px;
    font-size: 14px;
    min-width: 230px;
    text-decoration: none !important;
    outline: 0px !important;
    transition: ease-in-out 0.4s;
    text-align: center;
    position: relative;
    -webkit-animation: myfirst 6s 1;
    -webkit-animation-direction: alternate;
    animation: myfirst 6s 1;
    animation-direction: alternate;
    z-index: 99;
}
.website_btns a:hover {
	background: rgba(0, 0, 0, 0.64);
}
.website_btns .dating_btn{
	-webkit-animation: mysecond 6s 1; /* Safari 4.0 - 8.0 */
	animation: mysecond 6s 1;
	margin:0;
	/* background: rgba(0, 0, 0, 0.48); */
	background: rgba(234, 62, 112, 0.58);
	border: 2px solid #fff;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes myfirst {
  0%   {background: rgba(0, 0, 0, 0.64); left: 320px; top: 0px;}
  25%  {background: rgba(0, 0, 0, 0.64); left: 0px; top: 0px;}
}


/* Safari 4.0 - 8.0 */
@-webkit-keyframes mysecond {
  0%   {background: rgba(0, 0, 0, 0.64); right: 320px; top: 0px;}
  25%  {background: rgba(0, 0, 0, 0.64); right: 0px; top: 0px;}
}

@media (max-width:767px) {
	.website_btns, .website_btns .col-sm-6, .website_btns .col-sm-6 > div{display:block;width: auto;height: auto;}
	.website_btns .col-sm-6 {
		padding: 30px 0 200px;
		text-align: center;
	}
	.website_btns .col-sm-6:first-child {
		padding: 110px 0 30px;
	}
	.header h1{font-size: 24px;}
	.header {
		position: static;
		background: #000;
		padding: 10px;
	}
	.header h1 a{
		width: 50px;
		height: 50px;
	}
	
}