.main-image {
	width: 100%;
	height: auto;
	margin: auto;
	object-fit: cover;
	margin-top: 2rem;
	margin-bottom: 2rem;
	border-radius: 10px;
}

.title {
	text-align: center;
	font-size: 4rem;
	font-weight: 600;
	margin-bottom: 50px;
}

.title-sm {
	font-size: 2rem;
	font-weight: 600;
	margin: 2rem 0;
	border-bottom: 5px solid #f34627;
	border-bottom-right-radius: 10px;
	width: fit-content;
	padding-bottom: 0.5rem;
	padding-right: 10px;
}

.paragraph-xl {
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 5rem;
	margin-bottom: 5rem;
	text-align: justify;
}

.paragraph-xl-link {
	font-size: 1.5rem;
	text-decoration: none;
	font-weight: 600;
	color: rgb(3, 109, 163);
}

.link {
	color: rgb(3, 109, 163);
}

.paragraph {
	margin-bottom: 1rem;
	text-align: start;
	width: 100%;
}

.list-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 20px 0;
}

.sizes-container {
	margin: 50px 0;
	padding: 50px;
	border-radius: 10px;
	background: #efefef;
}

.sizes-container h3 {
	text-align: center;
	margin-bottom: 20px;
}

.sizes-container p {
	text-align: center;
}

.sizes-items-wrapper {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sizes-item {
	padding: 10px 20px;
	margin: 10px;
	color: black;
	text-decoration: none;
	background-color: rgb(247, 247, 247);
	border-radius: 5px;
	transition: all 0.3s;
	flex: 0 0 23.3333%;
	text-align: center;
}

.sizes-item:hover {
	text-decoration: none;
	color: black;
	background-color: white;
}

.ml {
	margin-left: 20px;
}

@media screen and (max-width: 991px) {
	.paragraph-xl {
		font-size: 1.3rem;
		margin-bottom: 1rem;
	}
	.sizes-item {
		flex: 0 0 33.3333%;
	}
}
