#intro_container {
    height: 400px;
    position: relative;
    margin: 0;
    padding: 0;
    background-size: cover;
	background-position: center;
    color: #fff;
    text-align: center;
}

#intro_overlay {
	height: 100%;
	width: 100%;
	position: absolute;
	background-color: rgb(43 31 82 / 40%);
}

#intro_overlay h1 {
	margin-top: 200px;
	font-size: 3.5rem;
	display: inline-block;
	border-bottom: 5px solid #fff;
	text-shadow: 0px 3px 0px #b2b2b2;
	padding-bottom: 1rem;
}

hr {border-top: 1px solid #000; width:50%;}

a {color: #000;}

a:link{text-decoration:none;}

#data {
    font-size: 1.5rem;
}

.header-underline {
    visibility: visible !important;
    color: var(--theme-sec-color);
	position: relative;
  font-weight: 600;
  text-transform: uppercase;
}

.header-underline:after {
	content: '';
	position: absolute;
	background-color: var(--theme-color);
	width: 40%;
	height: 4px;
	bottom: -20px;
	margin: 0 auto;
    right: 0;
    left: 0;
    transition: all .2s linear;
}

.header-underline:hover:after , .header-underline.active:after{
	width: 80%;
}

.service-box .image-box {
    width:150px;
    height:150px;
    background-position:center;
    background-size:cover;
    margin:0.5rem auto 1.5rem auto;
}

.service-box {
    color: var(--theme-sec-color);
    transition: 0.3s all;
    padding: 1rem 0;
}



.service-box:hover {
    color: var(--theme-color);
}

@media only screen and (max-width: 768px) {
	#intro_overlay h1 {
		font-size: 2.5rem;
	}
	#intro_container {
		background-position: center top;
	}
}