<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Reset*/

html{
  box-sizing: border-box;
}

*,
*:before,
*:after{
  box-sizing: inherit;
}

*{
	margin: 0px; 
	padding: 0px;
}

/*Base Styles*/

body{
    font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #363636;
}

img{
     border:none;
     max-width:100%;
     height:auto;
}

article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary{
	display: block;
}

input, select, option, textarea{
	font-family:inherit;
}

iframe{
	max-width:100%!important;
}

p{
	margin:20px 0;
}


/*Links*/

a{
	color:#690011;
	text-decoration: underline;
}

a:hover,
a:focus{
	color: #0076a3;
	text-decoration: none;
}

.btn,
.btn-solid {
	display:inline-block;
	transition:background-color 0.2s ease, color 0.2s ease;
	text-transform:  uppercase;
	letter-spacing: 0.05em;
	padding: 8px 25px;
	text-decoration: none;
	font-weight: bold;
}


.btn{
	border: 3px solid #690011;
}

.btn:hover {
	background: #690011;
	color: #fff;
}

.btn-solid {
	background: #690011;
	color: #fff;
}

.btn-solid:hover {
	background: #0076a3;
	color: #fff;
}

/*Headings*/
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: normal;
}

h1, 
h2 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
}

h1{
    font-size: 3.334em; /*60px*/
    font-weight: normal;
    margin: 0 0 20px 0;
}

h2{
    font-size: 2.667em; /*48px*/
    font-weight:normal;
	margin: 20px 0;
	color: #000000;
}

h3{
    font-size: 1.667em; /*30px*/
    font-weight:bold;
	margin: 20px 0;
	color: #363636;
	text-transform: uppercase;
}

h4{
    font-weight:bold;
    font-size: 1.334em; /*24px*/
    margin: 20px 0;
}

h5{
    font-weight:bold;
    font-size: 1.112em; /*20px*/
    margin: 15px 0;
}

h6{
    font-weight:bold;
    font-size: 1em;
    margin: 15px 0;
}

/*****************************
Lists
*****************************/

ul{
	text-align: left;
	list-style-type: disc;
	list-style-position: outside;
	margin: 10px 0 10px 45px;
}

ol{
	text-align: left;
	list-style-type: decimal;
	list-style-position: outside;
	margin: 10px 0 10px 45px;
}

li{
	margin-bottom: 5px;
}

/* Nested Lists*/
ul ul,
ul ul ul,
ol ol,
ol ol ol{
	text-align: left;
	list-style-type: square;
	list-style-position: outside;
	margin: 5px 5px 5px 20px;
}

ul ul li,
ul ul ul li,
ul ol li,
ul ol ol li{
	margin-bottom: 3px;
}

/*Tables*/

table{
	border-collapse:collapse;
}

.table{
	display:table;
}

.table .cell{
	display:table-cell;
}

/*Columns*/
.columns,
.padded-columns{
    overflow: auto;
    width: 100%;
}

.columns .half,
.columns .third,
.columns .two-thirds,
.columns .quarter,
.columns .three-quarters,
.padded-columns .half,
.padded-columns .third,
.padded-columns .two-thirds,
.padded-columns .quarter,
.padded-columns .three-quarters{
	float:left;
}

.columns .half {
    width: 50%;
}

.columns .third{
    width: 33.33%;
}

.columns .two-thirds{
    width: 66.66%;
}

.columns .quarter{
    width: 25%;
}

.columns .three-quarters{
    width: 75%;
}

/*Padded Columns*/
.padded-columns .half,
.padded-columns .third,
.padded-columns .two-thirds,
.padded-columns .quarter,
.padded-columns .three-quarters{
    margin-right:5%;
}

.padded-columns .half:last-child,
.padded-columns .third:last-child,
.padded-columns .two-thirds:last-child,
.padded-columns .quarter:last-child,
.padded-columns .three-quarters:last-child{
    margin-right:0;
}


.padded-columns .half {
    width: 47.5%;
}

.padded-columns .third{
    width: 30%;
}

.padded-columns .two-thirds{
    width: 65%;
}

.padded-columns .quarter{
    width: 21.25%;
}

.padded-columns .three-quarters{
    width: 70%;
}


/******************************
Styles
******************************/

.container{
	width:94%;
    max-width: 1000px;
    margin: auto;
}

.wide {
	max-width: 1400px;
}

.screen-reader-text{
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

[class^="icon-"],
[class*=" icon-"]{
	width:1em;
	height:1em;
	fill:currentColor;
}

.overflow{
	overflow:auto;
}

.overflow .left{
	float:left;
}

.overflow .right{
	float:right;
	text-align:right;
}

.clearfix{
	clear:both;
}

/*******************************
Header
*******************************/
#header {
	position: fixed;
	z-index: 99995;
	top: 0;
	width: 100%;
	background: #fff;
}

.site-header .banner {
	background: #690011;
	color: #fff;
	padding: 4px 0;
}

.site-header .banner .container {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

.site-header .slogan {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
	font-style: italic;
}

.site-header .btn-solid.mobile {
	display: none;
}

.site-header .social {
	font-size: 1.556em;
	line-height: 1;
}

.site-header .social a {
	color: #fff;
}

.site-header .header-flex {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	font-size: 1.334em; /*24px*/
	height: 130px;
}

.site-header .header-flex .phone {
	font-weight: bold;
}

.site-header .header-flex .phone span {
	font-weight: normal;
}

.site-header .header-flex .phone-mobile {
	display: none;
}

.site-header .header-flex .phone svg {
	 display: inline-block;
	 vertical-align: middle;
}

.site-header .header-flex .logo {
	position: relative;
	z-index: 5;
	top: -17px;
}

.site-header .header-flex .btn-solid {
	background: #0076a3;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
}

.site-header .header-flex .btn-solid:hover {
	background: #690011;
}

/*Sticky Header*/
.sticky-header .site-header {
	box-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

.sticky-header .site-header .banner {
	font-size: 90%;
	padding: 2px 0;
}

.sticky-header .site-header .header-flex {
	height: 120px;
}

.sticky-header .site-header .header-flex .logo {
	height: 150px;
	width: auto;
}

/**************************
Navigation
**************************/

.site-navigation{
	background: #000000;
	padding: 15px 0;
}

.site-navigation ul{
    padding: 0;
	margin: 0;
	list-style-type: none;
	text-align: center;
}

.site-navigation li{
    display: inline-block;
    line-height:normal;
    position:relative;
	margin:0;
}

.site-navigation li a{
	padding: 10px 20px 5px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.889em; /*16px*/
	border-bottom: 5px solid transparent;
}

.site-navigation li a:hover {
	border-color: #690011;
}

/*Drop Down*/ 

.site-navigation ul ul{
	position:absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 30px;
	width:250px;
	display:none;
	z-index:27;
	background: #fff;
	padding: 10px;
	text-align: left;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
}

.site-navigation ul ul ul {
	left: 200px;
	top: 0;
	transform: translateX(0);
}

.site-navigation ul ul li{
	display:block;
	line-height:normal;
	margin:0px;
	padding:0px;
}

.site-navigation ul ul li a{
	display:block;
	color: #171717;
	font-weight: normal;
	text-transform: capitalize;
	font-size: 0.85em;
}

.site-navigation li:hover &gt; a{
	border-color: #690011;
}

.site-navigation ul li:hover &gt; ul{
    display: block;
}



/*******************************
Content
*******************************/

.site-content{
	line-height: 1.5;
	margin: 190px 0 0;
}

.banner-header {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2e0007+0,690011+25,2e0007+50,690011+75,2e0007+100 */
	background: rgb(46,0,7); /* Old browsers */
	background: -moz-linear-gradient(-70deg,  rgba(46,0,7,1) 0%, rgba(105,0,17,1) 25%, rgba(46,0,7,1) 50%, rgba(105,0,17,1) 75%, rgba(46,0,7,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-70deg,  rgba(46,0,7,1) 0%,rgba(105,0,17,1) 25%,rgba(46,0,7,1) 50%,rgba(105,0,17,1) 75%,rgba(46,0,7,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(120deg,  rgba(46,0,7,1) 0%,rgba(105,0,17,1) 25%,rgba(46,0,7,1) 50%,rgba(105,0,17,1) 75%,rgba(46,0,7,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e0007', endColorstr='#2e0007',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	padding: 55px 0 20px;
}

.banner-header h1 {
	color: #fff;
	margin: 0;
}

.body-copy {
	padding: 40px 0;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}

.body-copy .entry {
	width: 63%;
}

.body-copy .sidebar {
	width: 35%;
	max-width: 400px;
}

.body-copy .entry.full {
	width: 100%;
}

/*Sidebar*/
.sidebar .widget.strong-testimonials-view-widget {
	background: #171717;
	padding: 40px;
	text-align: center;
	color: #fff;
	margin-bottom: 1em;
}

.sidebar .widget.strong-testimonials-view-widget img {
	display: block;
	margin: 0 auto 10px;
	border-bottom: 3px solid #363636;
	padding: 0 30px 25px;
}

.sidebar .strong-view.small-widget .testimonial-name {
	font-weight: normal;
	color: #fff; !important
	font-style: italic;
	margin: 1em 0;
}

.sidebar .read-more {
	color: #fff;
}

.sidebar .service-flex {
	flex-flow: column;
}

.sidebar .service-item {
	margin: 0 0 1em;
}

/*******Fleet Pages*******/

.wp-block-columns.has-3-columns a img {
	border: 3px solid transparent;
	transition: border-color 200ms ease;
}

.wp-block-columns.has-3-columns a:hover img {
	border-color: #690011;
}

.vehicle-single {
	margin: 0 auto 20px;
	padding: 0 0 20px;
	border-bottom: 4px solid #f0f0f0;
	overflow: auto;
}
.vehicle-content .vehicle-main-image {
	max-width: 400px;
	width: 100%;
	height: auto;
	float: right;
	margin: 0 0 0 30px;
}

.vehicle-details {
	margin: 20px 0;
	font-size: 1.334em; /*24px*/
}

.vehicle-details svg {
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	color: #690011;
}

.vehicle-details span {
	margin-right: 30px;
	display: inline-block;
	vertical-align: middle;
}

/*******Front Page*******/

/*Slider*/
.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    transition: all 150ms ease;
}

.slider {
	background: #171717 url('../images/layout/slider-background.jpg') no-repeat center center;
	background-size: cover;
	padding: 50px 0 0;
}

.slider .wide {
	max-width: 1600px;
}

.slider .container {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
}

.slider .hero-caption {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
	color: #fff;
	width: 42%;
	z-index: 2;
}

.slider .hero-caption .title {
	font-size: 3.334em; /*60px*/
	font-style: italic;
	text-shadow: 0px 2px 5px #000;
}

.slider .hero-caption .content {
	font-size: 2.223em; /*40px*/
	line-height: 1.2;
	margin: 20px 0 40px;
	text-shadow: 0px 2px 5px #000;
}

.slider .hero-caption .btn-solid {
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	padding: 15px 40px;
}

/*Fleet Feed*/
.fleet {
	padding: 50px 0;
	text-align: center;
}

.fleet h2 {
	color: #690011;
	margin: 0;
}

.fleet h2.line {
	position: relative;
	z-index: 1;
}

.fleet h2.line::before {
	content: "";
	position: absolute;
	top: 55%;
	bottom: 0;
	left: 0;
	right: 0;
	border-top: 2px solid #690011;
	margin: 0 auto;
	z-index: -1;
}

.fleet h2.line span {
	background: #fff;
	padding: 0 10px;
}

.fleet .fleet-item {
	margin: 30px 0;
}

.fleet-carousel.soliloquy-container .soliloquy-prev {
	left: -50px;
}

.fleet-carousel.soliloquy-container .soliloquy-next {
	right: -50px;
}

.fleet-carousel .soliloquy-link {
	border: 3px solid transparent;
	transition: border 250ms ease;
}

.fleet-carousel .soliloquy-link:hover {
	border: 3px solid #690011;
}

.fleet-carousel.soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside {
	background: transparent;
	padding: 0.5em;
	text-shadow: none;
	color: #000;
	font-weight: bold;
	font-size: 0.889em; /*16px*/
}

/*Content*/
.content-home {
	background: #363636 url('../images/layout/bkgd-content.jpg') no-repeat center center;
	background-size: cover;
	padding: 100px 0;
	color: #fff;
	text-align: center;
	text-shadow: 0px 2px 4px #000;
}

.content-home .btn {
	border-color: #fff;
	color: #fff;
}

.content-home .btn:hover {
	background: #fff;
	color: #690011;
}

/*Service Buttons*/
.service-buttons {
	padding: 50px 0;
}

.service-flex {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
}

.service-item {
	margin: 1em;
	position: relative;
	color: #fff;
	text-align: center;
}

.service-item .caption {
	position: absolute;
	z-index: 5;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	font-size: 2em;
	padding: 0.5em;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1;
	text-shadow: 0px 2px 5px rgba(0,0,0,0.8);
}

.service-item .title-icon {
	display: block;
	margin-top: -100px;
	font-size: 2em;
	opacity: 0;
	transition: all 0.2s ease;
}

.service-item:hover {
	color: #fff;
}

.service-item:hover .title-icon {
	opacity: 1;
	margin-top: 0;
}

.service-item:hover::before {
	background: rgba(0,0,0,0.25);
	width: 100%;
	height: 97%;
	position: absolute;
	content: "";
	z-index: 1;
}

/*Reviews*/
.reviews {
	background: #171717 url('../images/layout/bkgd-reviews.jpg') no-repeat top center;
	background-size: cover;
	padding: 75px 0;
	color: #fff;
	text-shadow: 0px 2px 4px #000000
}

.reviews .strong-content .t-slide .testimonial-inner {
	padding-left: 90px;
	position: relative;
}

.reviews .strong-content .t-slide .testimonial-inner::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background: transparent url('../images/layout/icon-quote.png') no-repeat top left;
	height: 56px;
	width: 77px;
}

/*******************************
Footer
*******************************/
/*Awards*/
.awards {
	padding: 40px 0;
	text-align: center;
}

.awards img {
	width: 150px;
	display: inline-block;
	vertical-align: middle;
	margin: 0.5em 1em;
}

/*CTA*/
.footer-cta {
	background: #690011;
	color: #fff;
	text-align: center;
	padding: 45px 0;
}

.footer-cta span {
	margin-right: 30px;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
	font-style: italic;
	font-size: 2.223em;
}

.footer-cta .btn {
	font-size: 1.223em; /*22px*/;
	font-weight: bold;
}

.footer-cta .btn:hover {
	background: #fff;
	color: #690011;
}

.footer-cta span,
.footer-cta .btn {
	display: inline-block;
	vertical-align: middle;
}

.footer-cta .btn {
	color: #fff;
	border-color: #fff;
}

.site-footer .footer-top{
	background: #171717;
	padding: 45px 0;
}

.site-footer .footer-top a {
	color: #fff;
}

.site-footer .footer-top .footer-flex {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 0.889em; /*16px*/
	color: #fff;
	line-height: 1.5;
}

.footer-flex .contact,
.footer-flex .hours,
.footer-flex .services {
	margin: 0 1em;
}

.footer-flex  h4 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
	font-weight: normal;
}

.footer-flex .social {
	font-size: 2em;
}

.footer-site-navigation ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.footer-site-navigation ul li {
	margin-bottom: 5px;
}

.footer-site-navigation ul li a {
	text-decoration: none;
	font-size: 0.889em;
}

.footer-site-navigation ul li a:hover {
	text-decoration: underline;
}

.site-footer .copyright {
	background: #690011;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	font-size: 0.723em; /*13px*/
}

.site-footer .copyright a {
	color: #fff;
}


/*Admin Bar*/
.admin-bar .sticky-header,
.admin-bar #responsive-menu-container{
  top: 32px;
}


/* =WordPress Core
-------------------------------------------------------------- */
.alignnone{
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter{
    display: block;
    margin: 5px auto 5px auto;
    text-align:center;
}

.alignright{
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft{
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright{
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone{
    margin: 5px 20px 20px 0;
}

a img.alignleft{
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter{
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption{
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone{
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft{
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright{
    margin: 5px 0 20px 20px;
}

.wp-caption img{
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text{
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* = Print Styles
-------------------------------------------------------------- */


@media print{

	body{
    	background-color: transparent;
	}

	.noPrint,
	.no-print{
		display:none;
	}

}


/*Responsive CSS*/

@media screen and (max-width: 1380px) {

	.fleet-carousel.soliloquy-container .soliloquy-next {
		right: 0;
	}

	.fleet-carousel.soliloquy-container .soliloquy-prev {
		left: 0;
	}
}

@media screen and (max-width: 1300px) {

	.slider {
		min-height: 450px;
	}

	.slider .container {
		align-items: flex-end;
	}

	.slider .hero-slider {
		width: 58%;
	}
}

@media screen and (max-width: 1070px) {

	.site-header .header-flex {
		height: auto;
	}

	.sticky-header .site-header .header-flex .logo,
	.site-header .header-flex .logo {
		top: 0;
		height: auto;
		width: 250px;
	}

	.service-flex {
		flex-flow: column;
		max-width: 400px;
		margin: 0 auto;
	}

	.vehicle-content .vehicle-main-image {
		float: none;
		display: block;
		margin: auto;
	}
	
	.footer-cta span {
		display: block;
		margin: 0 0 0.5em;
	}
	
}

@media screen and (max-width: 985px) {
	.site-header .btn-solid.mobile {
		display: inline-block;
		background: #0076a3;
	}

	.site-header .header-flex .btn-solid, 
	.site-header .header-flex .phone {
		display: none;
	}

	.site-header .header-flex {
		flex-direction: row-reverse;
	}

	.site-header .header-flex .phone-mobile {
		display: inline-block;
		color: #fff;
		margin-right: 15%;
	}

	.site-header .header-flex .phone-mobile svg {
		padding: 10px;
		background: #690011;
		width: 2.5em;
		height: 2.5em;
		border-radius: 5px;
	}

	.site-content {
		margin-top: 170px;
	}

	.slider {
		padding: 20px 0;
	}

	.slider .container {
		display: block;
	}

	.slider .hero-caption, 
	.slider .hero-slider {
		width: 100%;
		text-align: center;
	}

	.slider .hero-slider .soliloquy-container {
		float: none !important;
	}

	.banner-header {
		font-size: 2.5vw;
		padding: 20px 0;
	}
}

@media screen and (max-width: 900px) {
	
	.body-copy {
		display: block;
	}

	.body-copy .entry,
	.body-copy .sidebar {
		width: 100%;
		margin: auto;
	}

	.site-footer .footer-top .footer-flex {
		display: block;
		text-align: center;
	}

	.footer-flex .services ul {
		text-align: center;
	}

	#popmake-12175 {
        top: 1% !important;
    	left: 50% !important;
    	transform: translateX(-50%);
		max-width: 100%;
	}
	#popmake-12175 iframe {
		height: 94vh !important;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .sticky-header,
	.admin-bar #responsive-menu-button,
	.admin-bar #responsive-menu-container{
		top: 46px;
	} 
}

@media screen and (max-width: 750px) {
	

	.site-header .banner .container {
		flex-direction: row-reverse;
	}

	.site-header .slogan {
		display: none;
	}

	.reviews .strong-content .t-slide .testimonial-inner {
		padding-left: 0;
		padding-top: 60px;
	}

	.reviews .strong-content .t-slide .testimonial-inner::before {
		left: 50%;
		transform: translateX(-50%);
	}

}

@media screen and (max-width: 600px) {
	
	#popmake-12175 {
        top: 1% !important;
        overflow-y: scroll !important;
		width: 80%
        height: 90%;
    }
	
	
	.columns .half,
	.columns .third,
	.columns .two-thirds,
	.columns .quarter,
	.columns .three-quarters,
	.padded-columns .half,
	.padded-columns .third,
	.padded-columns .two-thirds,
	.padded-columns .quarter,
	.padded-columns .three-quarters,
	.padded-columns .half:last-child,
	.padded-columns .third:last-child,
	.padded-columns .two-thirds:last-child,
	.padded-columns .quarter:last-child,
	.padded-columns .three-quarters:last-child{
	    margin: auto;
	    width: 98%;
	    float:none;
	}

	div.aligncenter,
	.alignnone,
	.aligncenter,
	.alignright,
	.alignleft,
	.aligncenter,
	a img.alignright,
	a img.alignnone,
	a img.alignleft,
	a img.aligncenter,
	.wp-caption.alignnone,
	.wp-caption.alignleft,
	.wp-caption.alignright {
	    display: block;
	    margin: 5px auto;
	    float:none;
	    text-align:center;
	}

}</pre></body></html>