.main .inner {
	color: #42474c;
}
.shop {
	padding: 10px 0;
	display: flex;
	flex-direction: column;
}
.shop > * {
	margin-bottom: 30px;
}
.shop h2 {
	font-weight: normal;
	font-size: 24px;
	align-self: center;
}
.shop .cardsPacks {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.shop .cardsPacks .cardsPackItem {
	display: flex;
	flex-direction: column;
	width: 30%;
	height: 450px;
	border: 1px solid #C4C4C6;
	border-radius: 10px;
	padding: 10px;
	position: relative;
	box-shadow: 10px 10px 8px 0px rgba(198,198,198,1);
	-webkit-box-shadow: 10px 10px 8px 0px rgba(198,198,198,1);
	-moz-box-shadow: 10px 10px 8px 0px rgba(198,198,198,1);
	margin: 0 1.6% 30px 1.6%;
}
.shop .cardsPacks .cardsPackItem > * {
	margin-bottom: 10px;
}
.shop .cardsPacks .cardsPackItem .imgContainer {
	height: 350px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.shop .cardsPacks .cardsPackItem .imgContainer img {
	align-self: center;
	width: 95%;
    object-fit: cover;
    display: block;
}
.shop .cardsPacks .cardsPackItem p {
	font-size: 20px;
	text-align: center;
}
.shop .cardsPacks .cardsPackItem a {
	text-decoration: none;
	color: white;
	display: block;
	background-color: #56b0d2;
	padding: 5px;
	border-radius: 10px;
	text-align: center;
}
.shop .cardsPacks .cardsPackItem a:hover {
	background-color: #63d2af;
}


/*text starts here*/

.shop .shopText {
	font-size: 20px;
}
.shop .shopText p {
	padding: 5px 0;
}
.shop .shopText .bold {
	font-weight: bold;
}
.shop .shopText .indent {
	text-indent: 10px;
}
.shop .shopText .dot {
	padding-left: 15px;
	position: relative;
}
.shop .shopText .dot:before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 3px);
	height: 6px;
	width: 6px;
	background-color: #63d2af;
	border-radius: 100%;
}

@media (max-width: 1200px) {
	.shop .cardsPacks .cardsPackItem {
		width: 45%;
	}
	.shop .shopText {
		padding: 0 3%;
	}
}
@media (max-width: 768px) {
	.shop .cardsPacks {
		justify-content: center;
	}
	.shop .cardsPacks .cardsPackItem {
		width: 60%;
	}
	.shop h2 {
		padding: 0 3%;
	}
}