body {
	margin: 0;
	font-family: "Quicksand", sans-serif;
}
.first-section {
	background-color: #f8f8f8;
	padding: 64px 0;
}
.apps-wrappper {
	width: 70%;
	max-width: 1290px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}
.apps-wrappper > h1 {
	margin: 0 0 24px 0;
}
.app-stack-wrapper {
	display: flex;
	flex-direction: column;
}
.text-center {
	text-align: center;
}
.row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.app-card {
	background-color: #ffffff;
	padding: 20px 20px;
	flex: 1;
	filter: drop-shadow(0px 0px 22px rgba(0, 0, 0, 0.1));
	flex-basis: 27%;
}
.img-and-title {
	display: flex;
	align-items: center;
}
.img-and-title > img {
	width: 64px;
	aspect-ratio: 1;
	margin-right: 16px;
	border-radius: 8px;
}
.rating {
	display: flex;
	align-items: center;
	color: #a0a0a0;
}
.app-name {
	margin: 0 0 8px 0;
	color: #0d4b49;
	font-weight: bold;
}
.star {
	width: 16px;
	aspect-ratio: 1;
	margin-right: 8px;
}
.app-card > p {
	margin: 16px 0 0 0;
	line-height: 27px;
}
.swiper-section {
	padding: 64px 0;
}
.banner {
	width: 70%;
	max-width: 1290px;
	margin: auto;
	border-radius: 16px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 44px;
	background-color: #e3eeea;
	padding: 0px 48px;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: space-between;
	overflow: hidden;
}
.heading {
	margin: 0 0 8px 0;
}
.heading.green {
	color: #417061;
}
.title {
	width: 50%;
}
.title > p {
	margin: 32px 0 0 0;
}
.swiper {
	width: 40%;
	height: 450px;
}
.swiper-slide {
	background-color: #ffffff;
	border: 1px solid #dae2e0;
	border-radius: 20px;
	width: 100%;
}
.slide-content {
	height: calc(100% - 32px);
	padding: 20px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.slide-content > p {
	text-align: center;
}
.primary-button {
	padding: 16px 32px;
	color: #ffffff;
	background-color: #366957;
	border: none;
	border-radius: 25px;
	text-decoration: none;
}
.circle {
	position: absolute;
}
.green {
	left: 0%;
	bottom: 10%;
}
.light-green {
	left: 0%;
	bottom: -9%;
}
.yellow {
	right: 0%;
	bottom: 25%;
}
.red {
	right: 0%;
	bottom: -6%;
}
@media screen and (max-width: 1240px) {
	.app-card {
		flex-basis: 40%;
	}
}

@media screen and (max-width: 989px) {
	.banner {
		flex-direction: column;
		align-items: center;
		padding: 48px 0;
	}
	.banner > .title {
		text-align: center;
		margin-bottom: 32px;
	}
	.swiper {
		height: auto;
		width: 100%;
		overflow: visible !important;
	}
	.swiper-wrapper {
		align-items: center;
	}
	.slide-content {
		height: auto;
		min-height: 300px;
	}
}

@media screen and (max-width: 800px) {
	.app-card {
		flex-basis: 100%;
	}
}

