img.logo {
	width: 100px!important;
	height: 100px!important;
}

#knowledge {
	min-height: 100vh;
	background-image: url(images/knowledge-bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: relative;
	color: #FFFFFF;
}

#home {
	min-height: 100vh;
	background-image: url(images/home-bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: relative;
}

#privacy #home, #terms #home {
	min-height: auto;
	background-image: none;
}

#privacy #story, #terms #story {
	background-image: url(images/home-bg.png);
	background-color: #5B01EC!important;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	color: #FFFFFF;
}

#privacy .ui.menu .item, #terms .ui.menu .item {
	color: #FFFFFF;
}

#knowledge, #home, .sidebar.menu {
	background-color: #5B01EC!important;
}

#home h3, #home p {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: #FFFFFF;
	font-weight: 500;
	margin-top: 20px;
	font-size: 16px;
}

#home .attention-text {
	font-size: 17px;
	background-color: #4D00CA;
}

div.stores {
	padding-top: 30px;
	padding-bottom: 10px;
}

img.social {
	width: 20px!important;
	height: 20px!important;
}

img.store {
	width: 150px!important;
	height: 44px!important;
	margin-bottom: 15px;
}

a.appstore {
	margin-right: 30px;
}
@media(max-width: 700px){
	a.appstore {
	margin-right: 0px !important;
}
}

#main-menu {
	border: none;	
    z-index: 2;
}

#main-menu.secondary.menu .toc.item {
  display: none;
}

#main-menu.ui.secondary.menu .item {
	margin: 0;
	padding: 10px;
	font-family: 'Montserrat', sans-serif;
}

#home h1 {
	font-family: 'Righteous', cursive;
	color: #FFFFFF;
	font-size: 48px;
	font-weight: 400;
}

#home .tagline {
	font-size: 28px;
}

#home h3 {
	font-size: 36px;
	font-weight: 300;
}

div#phone {
	/*display: block;
	position: absolute;
	top: 20%;
	left: 55%;
	right: 0;
	bottom: -20%;
	z-index: 1;*/
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

div#phone img {
	/*width: 100%;
	height: 100%;*/
	width: 70%;
}

#pricing .content, #knowledge .content, #story .content, #privacy-policy, #terms-conditions {
	padding-top: 100px;
	padding-bottom: 100px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

#pricing h1, #knowledge h1, #story h1, #privacy-policy h1, #terms-conditions h1 {
	font-weight: 400;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

#pricing .knowledge {
	padding-top: 60px;
}

#pricing .cost span {
	color: #5B01EC;
	font-size: 48px;
}

#pricing .figure {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#pricing .figure img {
	width: 30vw;
}

#knowledge .dress {
	min-height: 100vh;
	padding: 0;
}

#knowledge .dress img {
	width: 100%;
	height: 100%;
}

#story p, #privacy-policy p, #terms-conditions p {
	padding-bottom: 10px;
}

#story a {
	color: rgba(0,0,0,.87);
}

#privacy #story a, #terms #story a {
	color: #FFFFFF;
}

.beta {
	color: #FF9800;
	font-weight: 800;
}

.attention-text {
	font-size: 15px;
	font-weight: bold;
}

.footer img {
	width: 40px!important;
	height: 40px!important;
}

#mobile-phone {
	margin: auto;
	width: 80%;
}

#mobile-dress {
	padding-left: 0;
	padding-right: 0;
}

.mobile-only {
	display: none!important;
}

.desktop-only {
	display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

@media only screen and (max-width: 700px) {
  .ui.fixed.menu {
    display: none !important;
  }
  div#phone, #knowledge .dress {
	display: none;
  }
  #main-menu.secondary.menu .item,
  #main-menu.secondary.menu .menu {
    display: none;
  }
  #main-menu.secondary.menu .toc.item {
    display: block;
  }
  #main-menu.secondary.menu a.logo {
  	display: block;
  }
  #main-menu.secondary.menu a.logo img {
  	width: 70px!important;
	height: 70px!important;
  }
  #knowledge, #home {
  	background-image: none;
  }

  #pricing .figure:first-of-type {
  	margin-top: 20px;
  }

  #pricing .content {
  	padding-top: 0;
  }

  #home .tagline, #home .stores {
  	text-align: center;
  }

  .mobile-only {
  	display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
  }

  .desktop-only {
  	display: none!important;
  }
}

@keyframes bounceInUp{
	0%, 60%, 75%, 90%, 100% {
	    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
	    animation-timing-function: cubic-bezier(.215,.61,.355,1);
	}

	0% {
	    opacity: 0;
	    -webkit-transform: translate3d(0,3000px,0) scaleY(5);
	    transform: translate3d(0,3000px,0) scaleY(5);
	}

	60% {
	    opacity: 1;
	    -webkit-transform: translate3d(0,-20px,0) scaleY(.9);
	    transform: translate3d(0,-20px,0) scaleY(.9);
	}

	75% {
	    -webkit-transform: translate3d(0,10px,0) scaleY(.95);
	    transform: translate3d(0,10px,0) scaleY(.95);
	}

	90% {
	    -webkit-transform: translate3d(0,-5px,0) scaleY(.985);
	    transform: translate3d(0,-5px,0) scaleY(.985);
	}

	100% {
	    -webkit-transform: translateZ(0);
	    transform: translateZ(0);
	}
}

.bounceIn{
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-repeat: 1;
    animation-repeat: 1;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}