* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #f1f1f1;
}

.wrapper {
	max-width: 750px;
	margin: 0 auto;
	position: relative;
}


.image-container {
	width: 100%;
	margin: 0 auto;
	max-width: 375px;
	text-align: center;
	padding-bottom: 60px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.download {
	display: flex;
	width: 350px;
	height: 90px;
	background-color: #fff;
	box-shadow: 0 15px 39px 0 rgb(0 0 0 / 10%);
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 15px;
	z-index: 999;
	padding: 10px;
}
.logo{
	width: 70px;
	margin-right: 5px;
}
.download,.logo img{
	border-radius: 0.68rem;
}
.app-info{
	margin: 0 5px;
	width: 42.5%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.app-info .title{
	width: 100%;
	font-size: 1.02rem;
	font-weight: 600;
}
.app-info .star-d{
	width: 100%;
}
.fas.fa-star {
  font-size: 12px;
}
.fas.fa-star {
  color: rgb(255, 126, 40);
}
.fas.fa-star.grey,.star-d,.app-info-text{
	color: darkgray;
}

.download-btn{
	width: 32.5%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.download-btn a {
	text-decoration: none;
	font-size: 0.95rem;
	color: #fff;
	width: 100%;
	height: 45px;
	border-radius: 22.5px;
	background-color: #e6322e;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.75s ease-in-out;
}

.download-btn a:hover {
  text-decoration: none;
}

.download-btn a {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.qrcode {
  position: fixed;
  bottom: 35%;
  right: 15%;
  width: 220px;
  height: 220px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 15px 39px 0 rgb(0 0 0 / 10%);
  padding: 10px;
  display: block;
}
@media (max-width: 1200px) {
	.qrcode {
		display: none;
	}
}
@media (max-width: 767px) {
	.image-container {
		max-width: 100%;
	}
	.download{
		width: 80%;
	}
}
@media (max-width: 375px) {
	.image-container {
		max-width: 100%;
	}
	.download{
		width: 90%;
	}
}
.blue{
	background: rgb(95,199,252);
}
.red{
	background: rgb(192,1,44);
}