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

.welcomeImage {
    position: relative;
    margin-bottom: 4em;
    line-height: 0;
}

.welcomeImage:before {
    background: rgba(0,0,0,0.3);
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.welcomeImage p {
    position: absolute;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    font-size: 4.8em;
    width: 12em;
    text-align: center;
    line-height: 1.2;
    left: 50%;
    margin-left: -6em;
    padding-top: 13%;
    padding-bottom: 0.7em;
}

.welcomeImage p:before {
    display: block;
    content: "";
    height: 69px;
    width: 69px;
    position: absolute;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    top: 33%;
}

.welcomeImage p:after {
    display: block;
    content: "";
    height: 69px;
    width: 69px;
    position: absolute;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    bottom: 0;
    right: 0;
}


/* ----------------------------
    PRODUCT PANELS
---------------------------- */

.productPanels a {
    color: #fff;
    line-height: 0;
}
.productPanels .panel {
	width: 22.9166666667%;
	overflow: hidden;
}

.productPanels .textWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.productPanels .panel:before {
    background: rgba(0,0,0,0.4);
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    transition: background 0.35s ease;
    -webkit-transition: background 0.35s ease;
    -moz-transition: background 0.35s ease;
    -o-transition: background 0.35s ease;
}

.productPanels .panel:hover:before {
    background: rgba(2, 133, 161, 0.9);
}

.productPanels h3 {
    text-transform: uppercase;
    font-size: 2em;
}

.productPanels p {
    font-size: 1.6em;
    margin-top: 0.8em;
}


/* ----------------------------
    CUSTOMER QUOTE
---------------------------- */

.quoteWrap {
    border-top: #979797 1px solid;
    border-bottom: #979797 1px solid;
    padding: 4em 0;
    text-align: center;
    margin-top: 3em;
    margin-bottom: 3em;
}

.quoteText {
    width: 58em;
    margin: 0 auto;
    padding: 2em 0 0 5em;
    background: url('../i/home/quoteLeft.png') no-repeat left 2.6em;
}

.quoteText p {
    font-size: 2em;
    color: #909090;
    padding-right: 2.5em;
}

.quoteText p:first-child {
    background: url('../i/home/quoteRight.png') no-repeat right bottom;
}

.quoteText .name {
    font-size: 1.8em;
    color: #0386a2;
    margin-top: 1em;
}


/* ----------------------------
    RESONSIVE MEDIA QUERIES
---------------------------- */

@media only screen and (max-width: 960px) {
    .welcomeImage img {
        width: 100%;
        height: auto;
    }
	
    .productPanels .panel {
        width: 47.9166666667%;
		height: 220px;
	}
	
	.productPanels .textPanel {
		padding-top: 23%;
	}
    
    .panel img {
        width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 780px) {
	
    .welcomeImage {
        margin-bottom: 2em;
    }
	
    .welcomeImage p {
        font-size: 3em;
    }
	
    .welcomeImage p:before,
    .welcomeImage p:after {
        height: 49px;
        width: 49px;
    }
	
}

@media only screen and (max-width: 730px) {  
	
    aside .quoteText {
        width: 100%;
    }
	
    .productPanels .panel {
        width: 100%;
        height: 20em;
        overflow: hidden;
        margin-right: 0;
        margin-bottom: 1em;
    }
	
    .productPanels .textWrap h3 {
        font-size: 3em;
    }
}


@media only screen and (max-width: 490px) {
	
    section .welcomeImage p {
        font-size: 2em;
    }
	
    section .welcomeImage p:before,
    section .welcomeImage p:after {
        height: 29px;
        width: 29px;
    }
	
}

@media only screen and (max-width: 380px) {
	
    .welcomeImage {
        overflow: hidden;
    }
	
    section .welcomeImage p {
        padding-top: 19%;
    }
	
    .welcomeImage img {
        width: 140%;
        margin-left: -20%;
    }
	
    .quoteText p,
    .quoteText .name {
        font-size: 1.7em;
    }
}</pre></body></html>