/* Main CSS for Bite Online 19/2/2020 by Mel Colton */

<link rel="preconnect" href="https://fonts.googleapis.com"> 
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');


*{
 margin: 0px;
 padding: 0px;
 box-sizing: border-box;
 font-family: 'DM Serif Display', serif;
 }

body {
	padding: 0;
	margin: 0;
 	}
 	
.download-page {
	width: 100%;
	height: 100vh;
	position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
	}
	
 /* ------------------------------------------- NAVIGATION ---------------------------------------- */

.nav-position {
	position: absolute;
	top: 20px;
	right: 10px;
	z-index: 10;
	}

.menu-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-right: 0.5vw;
	transition: all .5s ease-in-out;
	cursor: pointer;
	
	}
.menu-btn_burger {
	width: 30px;
	height: 4px;
	background: #00AEEF;
	border-radius: 5px;
	transition: all .5s ease-in-out;

	}
	
.menu-btn_burger::before, .menu-btn_burger::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 4px;
	background: #00AEEF;
	border-radius: 5px;
	transition: all .5s ease-in-out;
	}
.menu-btn_burger::before {
	transform: translateY(-16px);
	}
.menu-btn_burger::after {
	transform: translateY(16px);
	}
	
.menu-btn.open .menu-btn_burger {
	transform: translateX(-50px);
	background: transparent;

	}
.menu-btn.open .menu-btn_burger::before {
	transform: rotate(45deg) translate(35px, -35px);
	background: white;
	}
	
.menu-btn.open .menu-btn_burger::after {
	transform: rotate(-45deg) translate(35px, 35px);
	background: white;
	}
	
.topnav {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	}
	
.topnav.open {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;	
	width: 100%;
	z-index: 1;
	animation: fadeInTopnavBackground 1s ease forwards;
	}
	
@keyframes fadeInTopnavBackground {
    0% {
        background-color: rgba(0, 174, 239, 0);
    }
    100% {
        background-color: rgba(0, 174, 239, 1);
    }
}

.topnav ul {
	list-style-type: none;
	margin: 36px 30px;
	padding 6px
	text-decoration: none;
	}

li {
	text-decoration: none;
	}

li a {
	text-decoration: none;
	font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.4rem;
	letter-spacing: 4px;
	font-size: 1em;
	font-weight: 200;
	color: #fff;
	
	}
	
.topnav .logo {
	width: 50px;	
	}


/* ------------------------------------------- CONTENT ---------------------------------------- */

.info {
	margin-left: 12%;
	margin-top: 20%;
	}
	
.info p {
	margin-bottom: 1%;
	font-size: 3.4rem;
	color: #00AEEF;
	letter-spacing: 1px;
	}
	
.info h2 {
	font-size: 1.4rem;
	font-weight: 100;
	color: #444;
	margin: 0 0 2rem 0;
	}

.info a {
	align-items:center;
	margin: 1% 10%;
	width: 20%;
  	cursor: pointer;
	}
.img-box {
	width: 40%;
	height: 80%;
	position: absolute;
	bottom: 0;
	right: 12%;
	z-index: -3;
	}
	
.img-box img {
	height: 90%;
	position: absolute;
	left: 38%;
	bottom: 10%;
	transform: translateX(-50%);
	}
	
.back-img {
	display: block;
	max-height: 100%;
	width: auto;
	height: auto;
	}	
	
.main-img {
	display: block;
	max-height: 70%;
	width: auto;
	height: auto;
	}

.element {
  -webkit-animation-name: pulse;
  -webkit-animation-duration: 3.5s;
  animation-name: pulse;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@-webkit-keyframes pulse {
  from {transform: scale(1.0);}
  to {transform: scale(1.06);}
}

@keyframes pulse {
  from {transform: scale(1.0);}
  to {transform: scale(1.06);}
}

/* ------------------------------------------- FOOTER ---------------------------------------- */	

footer {
	position: absolute;
	left: 0px;
	width: 100%;
	z-index: 10;
	}
footer p {
	font-size: 16px;
	color: #fff;
	line-height: 1.4em;
	letter-spacing: 1.1px;
	padding: 12px 0 0 0;
	}
footer a {
	padding: 0 1rem;
	text-decoration: none;
	}
	
footer h3 {
	display: block;
  	font-weight: 100;
  	font-size: 1.6rem;
  	margin: 1rem 0rem 1rem 0.4rem;
  	color: #fff;
	}
	
.btn-footer {
	font-family: 'Helvetica', san-serif;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
  	padding: 0.7rem 2rem 0.5rem 2rem;
  	border: 1px #00AEEF solid;
  	display: inline-block;
  	margin: 1.5rem 0 3rem;
  	border-radius: 50px;
  	text-decoration: none;
 	background-color: #fff;
  	color: #00AEEF;
  	transition: background 500ms ease;
	}

.btn-footer:hover {
  	border: 1px #424141 solid;
  	color: #424141;
	}
	
footer {
  text-align: center;
  padding: 2rem 1rem;
  margin: none;
  letter-spacing: 1px;
  background-color: #00AEEF;
}

.footer-white {
	color: #fff;
	}
	
.footer-white:hover {
	color: #424141;
	}


/* ------------------------------------------- MEDIA QUERIES ---------------------------------------- */

@media screen and (min-width: 905px) and  (max-width: 1470px) {
	.info {
	margin-left: 12%;
	margin-top: 18%;
	}
	
.info p {
	margin-bottom: 1%;
	font-size: 3rem;
	color: #00AEEF;
	letter-spacing: 1px;
	}
	
.info h2 {
	font-size: 1.3rem;
	font-weight: 100;
	color: #444;
	margin: 0 57% 2rem 0;
	}

.info a {
	margin: 0 -1rem;
	width: 10%;
  	cursor: pointer;
	}
	
a img {
	width: 30%;
	}	
	
.img-box {
	width: 36%;
	height: 70%;
	position: absolute;
	top: 18%;
	right: 12%;
	z-index: -3;
	}
	
.img-box img {
	height: 100%;
	position: absolute;
	left: 38%;
	bottom: 10%;
	transform: translateX(-50%);
	}	
.back-img {
	display: block;
	max-height: 80%;
	width: auto;
	height: auto;
	}	
		
.main-img {
	display: block;
	max-height: 70%;
	width: auto;
	height: auto;
	}
		
}

@media screen and (min-width: 770px) and  (max-width: 900px) {
	.info {
	margin-left: 12%;
	margin-top: 22%;
	}
	
.info p {
	margin-bottom: 1%;
	font-size: 3rem;
	color: #00AEEF;
	letter-spacing: 1px;
	}
	
.info h2 {
	font-size: 1.3rem;
	font-weight: 100;
	color: #444;
	margin: 0 0 2rem 0;
	}

.info a {
	margin: 0 -1rem;
	width: 10%;
  	cursor: pointer;
	}
a img {
	width: 40%;
	}	
	
.img-box {
	width: 36%;
	height: 70%;
	position: absolute;
	top: 18%;
	right: 8%;
	z-index: -3;
	}
	
.img-box img {
	height: 100%;
	position: absolute;
	left: 38%;
	bottom: 10%;
	transform: translateX(-50%);
	}	
.back-img {
	display: block;
	max-height: 76%;
	width: auto;
	height: auto;
	}	
		
.main-img {
	display: block;
	max-height: 70%;
	width: auto;
	height: auto;
	}
		
}

@media screen and (min-width: 490px) and (max-width: 768px) {

.info {
	margin-left: 12%;
	margin-top: 32%;
	}
	
.info p {
	margin-bottom: 1%;
	font-size: 2.4rem;
	color: #00AEEF;
	letter-spacing: 1px;
	}
	
.info h2 {
	font-size: 1.2rem;
	font-weight: 100;
	color: #444;
	margin: 0 1rem 2rem 0;
	}

.info a {
	margin: 0;
  	cursor: pointer;
	}
	
a img {
	width: 34%;
	}
	
.img-box {
	width: 36%;
	height: 70%;
	position: absolute;
	top: 20%;
	right: 18%;
	z-index: -3;
	}
	
.img-box img {
	height: 100%;
	position: absolute;
	left: 38%;
	bottom: 10%;
	transform: translateX(-50%);
	}	
.back-img {
	display: block;
	max-height: 76%;
	width: auto;
	height: auto;
	}	
		
.main-img {
	display: block;
	max-height: 70%;
	width: auto;
	height: auto;
	}
}	

@media screen and (max-width: 480px) {

.topnav ul {
	list-style-type: none;
	margin: 16px 0px;
	text-decoration: none;
	}


.info {
	margin-left: 6%;
	margin-top: 42%;
	}
	
.info p {
	margin-bottom: 1%;
	font-size: 2.4rem;
	color: #00AEEF;
	letter-spacing: 1px;
	}
	
.info h2 {
	font-size: 1.2rem;
	font-weight: 100;
	color: #444;
	margin: 0 1rem 2rem 0;
	text-align: left;
	}

.info a {
	margin: 0 0 17rem 18%;
	align-content: center;
	width: 10%;
  	cursor: pointer;
	}
	
a img {
	width: 60%;
	}
	
.img-box {
	width: 40%;
	height: 85%;
	position: absolute;
	top: 15%;
	right: 22%;
	z-index: -3;
	}
	
.img-box img {
	height: 80%;
	position: absolute;
	left: 38%;
	bottom: 10%;
	transform: translateX(-50%);
	}	
.back-img {
	display: block;
	max-height: 60%;
	width: auto;
	height: auto;
	}	
		
.main-img {
	display: block;
	max-height: 50%;
	width: auto;
	height: auto;
	}
}
