.section {
	padding: 80px 0;
}

.pageNotFound {
	display: flex;
	flex-direction: column;
}

.pageNotFound .banner {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.pageNotFound .banner h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
	color: #212121;
    text-align: center;
	margin: 0;
}

.pageNotFound .banner p {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
	color: #212121;
    text-align: center;
	margin: 0;
}

.pageNotFound .banner .btnPrimary {
	display: flex;
    align-items: center;
	background: #1976d2;
	border: unset;
    color: #fff;
	padding: 18px 40px;
	font-size: 18px;
	font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: .2s;
}

.pageNotFound .banner .btnPrimary:hover {
	background: #135aa0;
}

@media (max-width: 991px) {
	.section {
		padding: 60px 0;
	}
}

@media (max-width: 767px) {
	.section {
		padding: 40px 0;
	}
}