/* ----- service page ----- */

.service-page-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    flex-direction: row;
}
@media (max-width: 767px) {
.service-page-wrapper {
    display: flex;
    /* justify-content: center; */
    /* margin-top: 50px; */
    flex-direction: column;
    align-items: center;
}
}
.service-page p{
	text-align: left;
	margin-top: 20px;
	/* font-weight: 600; */
	font-size: 16px;
}

.service-page-block {
    height: 500px;
    width: 275px;
    margin: 5px;
}
@media (max-width: 767px) {
	.service-page-block {
		height: 300px;
		width: 90vw;
		/* margin: 5px; */
		margin-bottom: 50px;
	}
}
.service-page-block-intro {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #eee;
    background-color: #dc3545;
    padding: 5px;
}

.service-page-paragraph-intro {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #dc3545;
    /* background-color: #dc3545; */
    padding: 5px;
}
.service-page-block-main {
    display: flex;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: flex-end;
    justify-content: space-between;
}

.service-page-block-inlay {
    display: flex;
    height: 50%;
    width: 100%;
    background: linear-gradient(0deg, rgb(221 221 221) 20%, rgba(255,255,255,0) 100%);
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
	.service-page-block-inlay {
		/* display: flex; */
		height: 65%;
		/* width: 100%; */
		background: linear-gradient(0deg, rgb(221 221 221) 50%, rgba(255,255,255,0) 100%);
		/* align-items: center; */
		/* justify-content: flex-end; */
		/* flex-direction: column; */
		/* padding-bottom: 20px; */
	}
}



.service-page-block-inlay p, .service-page-block-inlay a{
    text-align:center;
    color: #000;
    /* margin-bottom: 4px; */
    font-size: 16px;
}

.service-page-block-inlay strong{
    font-size: 16px;
    font-weight: 600;
}

.service-page-map {
    display: flex;
    margin: auto;
    width: 100%;
    justify-content: center;
    margin-top: 75px;
}