.main-heading {
	font-weight: bold;
}

.default-heading {
	font-family: 'Tahoma', sans-serif;
	color: #1c2f5b;
}

a.top-link {
	color: #1c2f5b;
}

a.top-link:hover {
	color: #373C41;
}

.main-layer {
	background-color: rgba(0, 0, 0, 0.25);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.logo-dark img {
	width: 250px;
}

.contact-form {
	box-shadow: 2px 2px 7px 0px #00000077;
	background-color: white;
	margin: 40px;
	padding: 20px;
	border-radius: 5px;
}

.contact-form-input {
	background: transparent;
	width: 100%;
	padding: 10px;
	border: 0px;
	border-bottom: 2px solid #1c2f5b;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	margin: 10px 0px;
}

#top-bar .blurb {
	font-size: 1rem;
}

.dot-point {
	list-style-type: disc;
}

.service-card {
	cursor: pointer;
	border-bottom: 4px solid #f0a11f;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 32px;
}

.service-card .service-image {
	height: 160px;
	overflow: hidden;
}

.service-card .service-image img {
	transform: scale(1.25);
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(100%);
	transition: transform .5s, filter .5s;
}

.service-card:hover .service-image img {
	transform: scale(1);
	filter: brightness(50%);
}

.service-card .service-body {
	padding: 1rem;
	background-color: #5D5D66;
	color: #fff;
}

.service-card .service-body .title {
	margin-bottom: 12px;
	font-weight: bold;
}

.service-card .service-body .content {
	font-size: 1rem;
}

ul.styled-list {
	list-style-type: none;
}

ul.styled-list li::before {
	content: "\2022";
	color: #f0a11f;
	width: 1em;
	margin-right: 8px;
}

#billboard {
	width: 100%;
	height: 80vh;
	overflow: hidden;
}

#billboard img {
	height: 80vh;
	width: 100%;
	object-fit: cover;
	filter: brightness(80%);
}

#billboard .billboard-content {
	position: relative;
	text-align: center;
	color: #fff;
}

#billboard .billboard-content .billboard-text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#billboard .billboard-content .billboard-text .btn{
	font-size: 1.5rem;
}

/* Live Chat Popup */
.chat-popup-transition {
	transition:all 0.5s ease;
}
  
#chat-popup {
	background: white;
	border: 1px solid #d0d3d6;
	border-top-left-radius: 0.5em;
	border-top-right-radius: 0.5em;
	bottom: -480px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	float: left;
	/* height: 223px; */
	margin: 0 auto;
	right: 60px;
	position: fixed;
	text-align: center;
	width: 300px;
	z-index: 100;
}
  
#chat-popup.open-chat {
  bottom: -1px;
}
  
#chat-label {
	background: #1c2f5b;
	border-top-left-radius: 0.5em;
	border-top-right-radius: 0.5em;
	height: 40px;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
  
#chat-label.open-chat-label {
  background: #1c2f5b;
  height: 65px;
}

#top-bar .blurb-title,
#top-bar .blurb-text {
	color: #1c2f5b;
}

#top-bar .blurb-icon {
	color: #f0a11f;
}

.check-marked::before {
	content: "\2713";
	color: #f0a11f;
	margin-right: 1ch;
}

.trademark {
	font-size: 1rem;
}

/* Responsive Mode */
@media (min-width: 425px){
	#padding-left-medium {
		padding: 0 0 0 0;
	}
}

@media (min-width: 576px) {
	#padding-left-medium {
		padding: 0 0 0 0;
	}
}

@media (min-width: 768px) {
	#chat-popup {
		bottom: -512px;
	}

	#padding-left-medium {
		padding: 0 0 0 7rem;
	}
}

@media (min-width: 992px) {
	#padding-left-medium {
		padding: 0 0 0 7rem;
	}
}

@media (min-width: 1200px) {
	#chat-popup {
		bottom: -585px;
		width: 400px;
	}

	#padding-left-medium {
		padding: 0 0 0 7rem;
	}
}