/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*********************

	MAIN

*********************/
* {
	margin: 0;
}
html, body {
	height: 100%;
	font-size:16px;
	line-height: 2rem;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: var(--colorGray);
}
:root {
	--mainColor: hsl(28deg 87% 52%);
	--secondaryColor: hsl(208deg 59% 53%);
	--thirdColor: hsl(208deg 80% 10%);
	--thirdColorText: #e9e9e9;
  --color1: hsl(195, 89%, 28%);
  --color2: hsl(191, 93%, 40%);
  --color3: hsl(50, 94%, 49%);
  --color4: hsl(42, 100%, 91%);
  --color5: hsl(1, 79%, 48%);
  --colorGray: hsl(0, 0%, 58%);
  --text:  hsl(0, 0%, 31%);
}
.mainColor{
	color: var(--mainColor);
}
.secondaryColor{
	color: var(--secondaryColor);
}
.color5{
	color: var(--color5);
}
b{
	font-weight: bold;
}
section{
	padding:70px 0px;
}
h1{
	font-size:3rem;
	line-height: 3rem;
}
h2{
	font-size: 2rem;
	line-height: 2rem;
}
h3{
	font-size: 1.5rem;
	line-height: 1.5rem;
}
img{
	max-width: 100%;
}
.fw{
	width: 100%;
}
.center{
	text-align: center;
}
.m20{
	margin: 20px 0px;
}
.mt20{
	margin-top: 20px;
}
.hide{
	display: none!important;
}
.std{
	width: 1200px;
    padding: 0% 5%;
    max-width: 90%;
    margin: auto;
}
.head{
	padding: 5px 0px;
	background: #fff;

	color: #000000;
	text-transform: uppercase;
	font-size: 2em;
	font-weight: 100;
	box-shadow: 0 -0.4rem 0.9rem 0.2rem rgb(0 0 0 / 50%);
}
.head span{
	vertical-align: middle;
}
.head img{
	height:50px;
	vertical-align: middle;
}
.splitter{
	display: flex;
	place-content: space-between;
}
input{
	padding:6px;
	border:none;
	border-bottom: 2px solid var(--color2);
}
.btn{
	display:inline-block;
	padding:3px 24px;
	font-size: 12px;
	/*background:var(--color5);*/
	background: var(--secondaryColor);
	color:var(--color4);
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.1s ease-in-out;
	box-shadow: 0px 1px 2px rgb(0 0 0 / 50%);
}
.btn:hover{
	filter: saturate(1.2);
}
.btn.full{
	width: 100%;
	padding: 3px 0px;
}
.btn.text{
	background: none;
	box-shadow: none;
	color: var(--colorGray);
}
@media (min-width: 640px) {
	
}

.grid{
	display: grid;
}
.gridCenter{
	display: grid;
	place-items: center;
}
.grid.listItem, .grid.listHeader{
	padding: 8px 4px;
}
.grid-gap-10{
	grid-gap: 10px;
}
.grid-2{
	grid-template-columns: repeat(2,1fr);
}
.grid-3{
	grid-template-columns: repeat(3,1fr);
}
.grid-4{
	grid-template-columns: repeat(4,1fr);
}
.grid-5{
	grid-template-columns: repeat(5,1fr);
}
.grid-6{
	grid-template-columns: repeat(6,1fr);
}
.grid-7{
	grid-template-columns: repeat(7,1fr);
}
.grid-8{
	grid-template-columns: repeat(8,1fr);
}
.grid-9{
	grid-template-columns: repeat(9,1fr);
}
.grid-10{
	grid-template-columns: repeat(10,1fr);
}
.halfGrid{
	grid-template-columns: 1fr 1fr;
}
.grid.center{
	place-content:center;
}
.grid.rightAlign{
	justify-items: right;
	padding: 10px;
}
.grid.leftAlign{
	justify-items: left;
	padding: 10px;
}
.fh{
	height: 100%;
}
.phone {
	/*width: 70%;*/
	max-width: 100%;
	margin: auto;
	height: 200px;
	padding:50px 0px;
	transform-style: preserve-3d;
	transform: rotateX(291deg) rotateY( 195deg) rotateZ( 172deg);	
}
.phone .display{
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	margin: 5px;
	box-shadow: 0px 0px 3px 2px #cfcfcf inset;
	border: 1px solid #fff;
	border-radius: 4px;
	padding: 10px;
	height: calc(100% - 82px);
	background: #fff;
}
.phone .display .text{
	padding: 2px 8px;
    background: #428dce;
    border-radius: 4px;
}
.phone .display .sender{
	position: absolute;
	box-shadow: 1px 0px 5px #e1e1e1;
    color: var(--colorGray);
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    text-align: center;
}
.phone-bottom span {
      display: block;
    margin: 0 auto;
    width: 25px;
    height: 25px;
    background: #ccc;
    border-radius: 50%;
    background: linear-gradient(
135deg
, #303233 0%, #b5b7b9 50%, #f0f2f2 69%, #303233 100%);
    position: relative;
}
.phone-bottom span:after {
	    content: "";
    display: block;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 1px;
    top: 1px;
}
.phone-top {
  padding: 3px 30px 5px;
    position: relative;
}
.phone-top .speaker {
  display: block;
    width: 40px;
    height: 4px;
    margin: 0 auto;
    border-radius: 6px;
    background: #292728;
}
.phone-top .camera {
  display: block;
    margin: 0 auto;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    margin-bottom: 5px;
    background: #333;
}
.phone-top .sensor {
  display: block;
    width: 9px;
    height: 9px;
    float: left;
    background: #333;
    margin-top: -5px;
    border-radius: 50%;
}
.side {
  position: absolute;
  border-radius: 10px;
  background: #b1b1b1;
  box-shadow:0px 0px 10px 2px #c9c9c9ab inset;
  border: 1px solid #d1d1d1;
}
.side.left, .side.right, .side.bottom, .side.top{
	height: 20px;
}
.top {
	transform: translateZ(150px) translateY(70px) translateX(90px);
    width: 150px;
    height: 30px;
}
.bottom {
	transform: translateZ(-150px) translateY(70px) translateX(90px);
    width: 150px;
    height: 30px;
}
.back {
	transform: rotateX( 270deg ) translateX(90px) translateY(0px) translateZ(-80px);
    width: 150px;
    height: 300px;
    box-shadow: -3px 1px 16px #6c6c6c69, 0px 0px 3px #8e8e8e;
}
.front {
	transform: rotateX( 270deg) translateX(90px) translateY(0px) translateZ(-60px);
    width: 150px;
    height: 300px;
    background: #fff;
}
.left {
	width: 300px;
    transform: translateZ(-150px) translateX(-210px) translateY(70px) rotateY( 90deg);
    transform-origin: right;
}
.right {
	width: 300px;
    transform: translateZ(-150px) translateX(-60px) translateY(70px) rotateY( 90deg);
    transform-origin: right;
}
.fullScreen{
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	position: fixed;
	background: #fff;
}
.fullScreenContent{
	display: grid;
	place-items: center;
	height: calc(100% - 60px);
	background: #fff;
	overflow-y: scroll;
}
.fadeIn{
	animation: fadeIn 2s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeInFast{
	animation: fadeIn 0.3s;
}
@keyframes fadeInFast {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.svgWaves{
	margin-top: -10px;
	margin-bottom: -100px;
	aspect-ratio:1200/300;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../images/loyalty-waves.svg);
}
.footerWave{
	margin-bottom: -5px;
	aspect-ratio:1200/200;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../images/loyalty-footer-wave.svg);
}
.footer{
	background: var(--thirdColor);
	color: var(--thirdColorText);
	font-size: 0.8rem;
}
.footer .std{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 30px;
}
.footer h3{
	margin-bottom: 22px;
}
@media (max-width: 640px) {
	.footer .std{
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 30px;
	}
}
/*******

PHONE


*******/
.iphone *,
.iphone *:after,
.iphone *:before {
  box-sizing: border-box;
}

.iphoneWrapper{
	max-height: 370px;
	display: grid;
 	place-content: center;
}
.iphone {
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px #999, 0 0 30px 0px rgba(0, 0, 0, 0.7);
  border: 5px solid #d9dbdc;
  background: #f8f8f8;
  padding: 15px;
  border-radius: 50px;
  height: 877px;
  width: 423px;
  position: relative;
  margin: 30px auto;
  transform: scale(0.4);
}

.iphone-top {
  padding: 5px 110px 40px;
  position: relative;
}
.iphone-top .speaker {
  display: block;
  width: 70px;
  height: 6px;
  margin: 0 auto;
  border-radius: 6px;
  background: #292728;
}
.iphone-top .camera {
  display: block;
  margin: 0 auto;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin-bottom: 13px;
  background: #333;
}
.iphone-top .sensor {
  display: block;
  width: 15px;
  height: 15px;
  float: left;
  background: #333;
  margin-top: -5px;
  border-radius: 50%;
}

.top-bar,
.bottom-bar {
  display: block;
  width: 423px;
  height: 15px;
  border-left: 5px solid #bbb;
  border-right: 5px solid #bbb;
  position: absolute;
  left: -5px;
}

.top-bar {
  top: 65px;
}

.bottom-bar {
  bottom: 65px;
}

.iphone-screen {
  background: #eee;
  border: 1px solid #fff;
  height: 677px;
  width: 375px;
  margin: 0 auto;
  border: 2px solid rgba(0, 0, 0, 0.9);
  border-radius: 3px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}
.iphone-screen img {
  width: 100%;
}

.buttons .on-off,
.buttons .up,
.buttons .down,
.buttons .sleep {
  display: block;
  background: #ccc;
  position: absolute;
  border-radius: 2px 0px 0px 2px;
}
.buttons .on-off {
  height: 40px;
  width: 3px;
  top: 100px;
  left: -8px;
}
.buttons .up,
.buttons .down,
.buttons .sleep {
  height: 60px;
  width: 5px;
  left: -10px;
}
.buttons .up {
  top: 170px;
}
.buttons .down {
  top: 250px;
}
.buttons .sleep {
  left: auto;
  right: -10px;
  top: 170px;
  border-radius: 0px 2px 2px 0px;
}

.iphone-bottom {
  padding: 10px 0 0;
}
.iphone-bottom span {
  display: block;
  margin: 0 auto;
  width: 68px;
  height: 68px;
  background: #ccc;
  border-radius: 50%;
  background: linear-gradient(135deg, #303233 0%, #b5b7b9 50%, #f0f2f2 69%, #303233 100%);
  position: relative;
}
.iphone-bottom span:after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 4px;
}
.iphone .display{
	font-size: 3rem;
	line-height: 3rem;
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	box-shadow: 0px 0px 3px 2px #cfcfcf inset;
	border: 1px solid #fff;
	border-radius: 4px;
	padding: 10px;
	height: 100%;
	background: #fff;
}
.iphone .display .text{
	padding: 10px 8px;
	background: #428dce;
	border-radius: 4px;
}
.iphone .display .sender{
	position: absolute;
	box-shadow: 1px 0px 5px #e1e1e1;
	color: var(--colorGray);
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	text-align: center;
}
/***
   END Iphone
 ***/
.icon{
	display: inline-block;
	padding: 5px;
	border-radius: 5px;
	border: 1px dashed var(--mainColor);
	color: var(--mainColor);
	box-shadow: 0px 1px 2px 1px rgb(255 186 186 / 46%);
	margin-right: 15px;
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 5px;
	margin-top: 5px;
}
.hoverItem{
	cursor: pointer;
}
.listItem:nth-child(odd){
	background: #f7f7f7;
}
.hoverItem:hover{
	background: #aeaeae;
}