@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
html, body{
	margin: 0;
	padding: 0;
	cursor: default;
	overflow-x: hidden;
	/* colors */
	--waya-phone-cover: #492f6c;
	--waya-fandango: #f60686;
	--fandango-orange-gradient-tb: linear-gradient(0deg, rgba(246,6,134,1) 0%, rgba(244,114,48,1) 100%);
	--fandango-orange-gradient-lr: linear-gradient(-90deg, rgba(246,6,134,1) 0%, rgba(244,114,48,1) 100%);
}

*{
	outline: none;
	scroll-behavior: smooth;
	-webkit-scroll-behavior: smooth;
}

a{
	text-decoration: none;
	color: inherit;
}

.centroid{
	max-width: 1200px;
	margin: auto;
}

.app-header{
	height: 88.5vh;
	padding: 15px;
	padding-top: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	font-family: 'Acme';
	font-size: 14px;
	position: relative;
}

.app-logo{
	height: 60px;
	object-fit: contain;
	position: absolute;
	top: 30px;
}

.spacerB{
	height: 60px;
}

.app-header h1{
        font-family: 'Acme' ;
	font-size: 3em;
	font-weight: 300;
}


.app-summary{
	margin-bottom: 25px;
	line-height: 1.7em;
	letter-spacing: 1px;
	/* font-size: 12px; */
	color: rgba(0, 0, 0, 0.7);
}

.app-stores{
	max-width: 350px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 25px;
	margin-bottom: 30px;
}

.app-stores img{
	width: 100%;
	object-fit: contain;
	transition: 0.2s all linear;
	-webkit-transition: 0.2s all linear;
}

.app-stores img:hover{
	box-shadow: 0px 5px 22px -4px rgba(0, 0, 0, 1);
}

.app-OR{
	max-width: 350px;
	text-align: center;
	margin: 20px;
	font-weight: 500;
	opacity: 0.5;
	margin-bottom: 30px;
}

.app-web-sign-up{
	padding: 17px 35px;
	text-align: center;
	color: #fff;
	background: var(--waya-fandango);
	font-size: 14px;
	letter-spacing: 1px;
	border-radius: none !important;
	border: 1px solid var(--waya-fandango);
	position: relative;
	display: table;
	border-radius: 3px;
	transition: 0.2s all linear;
	-webkit-transition: 0.2s all linear;
}

.app-web-sign-up:hover{
	padding: 17px 45px;
}

.app-web-sign-up:before{
	content: '';
	position: absolute;
	bottom: 10%;
	right: 10%;
	width: 90%;
	height: 30px;
	background: rgba(0, 0, 0, 0.7);
	transform-origin: right;
	transform: skewY(-5deg);
	z-index: -1;
	filter: blur(5px);
}

.app-view-box{
	display: grid;
	place-items: center;
}

.app-preview{
	border-radius: 10px;
	position: relative;
	z-index: 34;
	background:var(--waya-phone-cover);
	backdrop-filter: blur(400px);
	/* padding: 10px 5px; */
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
	margin-bottom: 20px;
	/* transition: 0.2s all linear;
	-webkit-transition: 0.2s all linear; */
	animation: 2s mildBounce infinite;
	-webkit-animation: 2s mildBounce infinite;
}

@keyframes mildBounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-15px);}
	60% {transform: translateY(-5px);}
}

.app-preview:hover{
	transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
}

.app-background{
	display: table;
	/* background: var(--waya-phone-cover); */
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 34; 
}

.app-preview img{
	height: 500px;
	object-fit: contain;
	border-radius: 10px;
	transition: 0.2s all linear;
	-webkit-transition: 0.2s all linear;
}

/* artwork */
.app-folded{
	width: 50vw;
	height: 50vw;
	background: var(--fandango-orange-gradient-lr);
	border-radius: 50px;
	border: 1px solid #ef5323;
	transform: rotate(64deg);
	position: absolute;
	z-index: -1;
	top: -45%;
	right: -5%;
	/* transition: 3s all linear; */
}

@media screen and (max-width: 999px){
	.app-header h1{
		font-size: 2.4em;
	}

	.app-preview img{
		height: 400px;
	}
}

@media screen and (max-width: 779px){
	.app-header{
		grid-template-columns: 1fr;
	}

	.app-column{
		max-width: 400px;
		margin: auto;
		margin-bottom: 30px;
	}

	.app-summary{
		font-size: 12px;
	}

	.app-preview img{
		height: 300px;
	}

	.app-folded{
		top: -55%;
		background: var(--fandango-orange-gradient-tb);
	}
}

@media screen and (max-width: 740px){
	.app-folded{
		top: -50%;
		right: -5%;
	}
}

@media screen and (max-width: 700px){
	.app-folded{
		top: -45%;
		right: -5%;
	}
}

@media screen and (max-width: 580px){
	.app-folded{
		top: -35%;
		right: -5%;
	}
}

@media screen and (max-width: 480px){
	.app-folded{
		top: -25%;
		right: -5%;
	}

	.app-header h1{
		font-size: 2.2em;
	}

	.app-web-sign-up{
		width: 70%;
	}

	.app-web-sign-up::before {
		bottom: 24%;
	}
}

@media screen and (max-width: 300px){
	html, body{
		min-width: 300px;
		width: 300px !important;
	}
}

/*
 * Made by HeNy007
 * 06th of septembre 2021
 * MIT license
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */
/*
!!! This demo is being refactored !!!

-- add auto focus on the first item of the navigation when it is shown
-- replace .menu:not(.menu_activated) .menu__list{  display: none; } to hidden
-- use :is pseudo-class to simplify selectors 

*/
/*
=====
DEPENDENCES
=====
*/

/* The component will reset button browser styles */

.r-button{
  --uirButtonBackgroundColor: var(--rButtonBackgroundColor, transparent);
  --uirButtonPadding: var(--rButtonPadding, var(--rButtonPaddingTop, 0) var(--rButtonPaddingRight, 0) var(--rButtonPaddingBottom, 0) var(--rButtonPaddingLeft, 0));
  --uirButtonBorderWidth: var(--rButtonBorderWidth, 0);
  --uirButtonBorderStyle: var(--rButtonBorderStyle, solid);
  --uirButtonBorderColor: var(--rButtonBorderColor, currentColor);
  --uirButtonFontFamily: var(--rButtonFontFamily, inherit);
  --uirButtonFontSize: var(--rButtonFontSize,  inherit);
  --uirButtonColor: var(--rButtonColor);

  background-color: var(--uirButtonBackgroundColor);
  padding: var(--uirButtonPadding);

  border-width: var(--uirButtonBorderWidth);
  border-style: var(--uirButtonBorderStyle);
  border-color: var(--uirButtonBorderColor);

  cursor: pointer;

  font-family: var(--uirButtonFontFamily);
  font-size: var(--uirButtonFontSize);
}

.r-button::-moz-focus-inner,
.r-button[type="button"]::-moz-focus-inner,
.r-button[type="reset"]::-moz-focus-inner,
.r-button[type="submit"]::-moz-focus-inner {
  
  /* Remove the inner border and padding in Firefox. */
  
  border-style: none;
  padding: 0;
}

/* The component will reset browser's styles of link */

.r-link{
    --uirLinkDisplay: var(--rLinkDisplay, inline-flex);
    --uirLinkTextColor: var(--rLinkTextColor);
    --uirLinkTextDecoration: var(--rLinkTextDecoration, none);

    display: var(--uirLinkDisplay) !important;
    color: var(--uirLinkTextColor) !important;
    text-decoration: var(--uirLinkTextDecoration) !important;
}

/* The component will reset browser's styles of list */

.r-list{
    --uirListPaddingLeft: var(--rListPaddingLeft, 0);
    --uirListMarginTop: var(--rListMarginTop, 0);
    --uirListMarginBottom: var(--rListMarginBottom, 0);
    --uirListListStyle: var(--rListListStyle, none);

    padding-left: var(--uirListPaddingLeft) !important;
    margin-top: var(--uirListMarginTop) !important;
    margin-bottom: var(--uirListMarginBottom) !important;
    list-style: var(--uirListListStyle) !important;
}

/* Basic styles of the hamburger component */

.m-hamburger{  
  --uiHamburgerThickness: var(--hamburgerThickness, 4px);

  display: var(--hamburgerDisplay, inline-flex);
  width: var(--hamburgerWidth, 28px);
  height: var(--hamburgerHeight, 20px);

  position: relative;
}

.m-hamburger::before, 
.m-hamburger::after, 
.m-hamburger__label{
  width: 100%;
  height: var(--uiHamburgerThickness);
  border-radius: var(--hamburgerBorderRadius, 5px);
  background-color: var(--hamburgerBackgroundColor, currentColor);

  position: absolute;
  left: 0;
}

.m-hamburger::before, 
.m-hamburger::after{
  content:"";
}

.m-hamburger::before{
  top: 0;
}

.m-hamburger::after{
  bottom: 0;
}

.m-hamburger__label{
  /* The calculation of middle hamburger button line position */
  
  top: calc(50% - calc(var(--uiHamburgerThickness) / 2));
}

/* helper to hide elements that are available only for screen readers. */

.screen-reader{
  width: var(--screenReaderWidth, 1px) !important;
  height: var(--screenReaderHeight, 1px) !important;
  padding: var(--screenReaderPadding, 0) !important;
  border: var(--screenReaderBorder, none) !important;

  position: var(--screenReaderPosition, absolute) !important;
  clip: var(--screenReaderClip, rect(1px, 1px, 1px, 1px)) !important;
  overflow: var(--screenReaderOverflow, hidden) !important;
}

/*
=====
MENU STYLES
=====
*/

.menu{
  --uiMenuCircleSize: var(--menuCircleSize, 5.25rem);
  --uiMenuCircleOffset: var(--menuCircleOffset, 1rem);
  --uiMenuCircleHeight: calc(var(--uiMenuCircleSize) / 2);  
  --uiMenuCircleBackgroundColor: var(--menuCircleBackgroundColor, currentColor);

  --uiMenuHamburgerWidth: var(--menuHamburgerWidth, 1.75rem);
  --uiMenuHamburgerHeight: var(--menuHamburgerHeight, 1.25rem);
  
  --rButtonPaddingTop: calc(var(--uiMenuCircleHeight) - var(--uiMenuHamburgerHeight) - var(--uiMenuCircleOffset));
  
  --hamburgerWidth: var(--uiMenuHamburgerWidth);
  --hamburgerHeight: var(--uiMenuHamburgerHeight);
  --hamburgerBackgroundColor: var(--menuHamburgerBackgroundColor, #fff);

  width: 100%;
  
  display: flex;
  flex-direction: column;
  align-items: center;  

  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--menuZindex, 9998);
}

.menu__nav{
  box-sizing: border-box;
  width: 100%;
  height: 0;

  transition: opacity .2s ease-out;
  opacity: 0;

  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.menu__list{
  width: 100%;
  max-height: 100%;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.menu__toggle{
  box-sizing: border-box;
  width: var(--uiMenuCircleSize);
  height: var(--uiMenuCircleHeight);
  flex: none;

  position: relative;
}

.menu__toggle::before{
  /*
  1. The font-size property is used to simplify calculations of the element's sizes and position
  2. The negative value for the bottom property need for hiding half of circle. 
  */

  content: "";
  width: 1em;
  height: 1em;
  font-size: var(--uiMenuCircleSize); /* 1 */

  background-color: var(--uiMenuCircleBackgroundColor);
  border-radius: 50%;

  position: absolute;
  bottom: -.5em; /* 2 */
  left: calc(50% - .5em);
  z-index: -1;

  will-change: width, height;
  transition: transform .25s cubic-bezier(0.04, -0.1, 0.29, 0.98),
              width .25s cubic-bezier(0.04, -0.1, 0.29, 0.98),
              height .25s cubic-bezier(0.04, -0.1, 0.29, 0.98);
}

/* styles of hamburger's animation */

.m-hamburger::before, 
.m-hamburger::after, 
.m-hamburger__label{
  transition-timing-function: ease;
  transition-duration: .15s;  
}

.m-hamburger::before, 
.m-hamburger::after{
  transition-property: transform;
}

.m-hamburger__label{
  transition-property: transform, opacity;
}

/*
=====
MENU STATES
=====
*/

.menu__toggle:focus{
  outline: var(--menuHaburgerOutlineOWidth, 2px) solid var(--menuHaburgerOutlineColor);
  outline-offset: var(--menuHaburgerOutlineOffset, 5px);
}

.menu_activated{
  height: 100%;
}

.menu_activated .menu__nav{
  flex-grow: 1;
  opacity: 1;

  will-change: opacity;
  transition-duration: .2s;
  transition-delay: .3s;
}

.menu_activated .menu__toggle::before{
  width: 100vmax;
  height: 100vmax;
  transform: translate3d(-50vh, -50vh, 0) scale(5);
  transition-duration: 1s;
}

.menu:not(.menu_activated) .menu__list{
  display: none;
}

.menu_activated .m-hamburger::before{
  top: 50%;
  transform: translate3d(0, -50%, 0) rotate(45deg);
}

.menu_activated .m-hamburger::after{
  transform: translate3d(0, -50%, 0) rotate(135deg);
  top: 50%;
}

.menu_activated .m-hamburger__label{
  transform: rotate(-45deg) translate3d(-.285em,-.3em, 0);
  opacity: 0;
}

/*
=====
SETTINGS
=====
*/

:root{
  --colorWhite: #fff;
  --colorMain: #4557bb;
  --menuCircleBackgroundColor: var(--colorMain);
  --menuHamburgerBackgroundColor: var(--colorWhite);
  --menuHaburgerOutlineColor: var(--colorMain);
}

.menu_activated{
  --menuHaburgerOutlineColor: var(--colorWhite);
}

/*
=====
DEMO
=====
*/

body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;  
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Open Sans, Ubuntu, Fira Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
}

.page{
  max-width: 380px;
  padding: 1rem;
  margin: auto;  
  text-align: center;
}

.page__name{
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.page__hint{
  display: block;
  line-height: 1.45;
  margin-top: 1rem;
}

.menu__group{
  --rLinkTextColor: var(--colorWhite);

  padding: .5rem 2rem; 
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.substack{
  border:1px solid #EEE; 
  background-color: #fff;
  order: -1;
  height: 280px;
}

@media (min-width: 1024px){
  
  .substack{
    position: absolute; 
    right: 1rem; 
    bottom: 1rem;
  }
}

