.serviceLayoutBox {
    height: 600px;
    display: flex;
    align-items: center;
    background-image: url("https://images.pexels.com/photos/106344/pexels-photo-106344.jpeg?w=940&h=650&auto=compress&cs=tinysrg");
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 5px 8px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.serviceLayout {
    padding: 20px 20px 20px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    width: 40%;
    height: 40%;
    margin-left: 30px;
    color: white;
}

.serviceLayout > .title {
    font-size: 35px;
    border-bottom: 5px solid orange;
    width: 100%;
}

.servicesList {
    padding: 15px 30px 15px 30px;
}

.servicesList a {
    color: black;
}

.servicesList a:visited {
    color: black;
}

.service {
    background-color: orange;
}

.service .title {
    color: #3b57cc;
    padding-bottom: 5px;
    border-bottom: 5px solid orange;
    font-size: 30px;
}

.subtitle {
    font-size: 60px;
    color: #3b57cc;
    width: 100%;
}

.all > .content {
    width: 60%;
    text-align: justify;
}

.all {
	display: flex;
	flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

@media only screen and (max-width: 750px) {
	.serviceLayout {
		width: 100%;
		margin: auto;
	}

	.all > div {
		width: 100%;
	}
}