@charset "UTF-8";
/* CSS Defined by F3 Designs (May 2019) f3designs.ca */


/* CUSTOM COLOUR PALETTE ================================================================================================ */
/* blue-dark: #143659 */
/* blue-medium: #133c6d */
/* blue-light: #1e5f9c */
/* grey-medium: #a7a8aa */
/* grey-light: #eceded */



/* CUSTOM FONTS: CSS =========================================================================================== */
/* font-family: "Arial Narrow", Arial, sans-serif; */
/* font-family: 'Helvetica', 'Arial', sans-serif; */


/* VIEWPORTS ============================================================================================================ */
/* __: mobile (i.e. col-12)
/* sm: mobile (i.e. col-sm-12)
/* md: tabletPortrait (i.e. col-md-12)
/* lg: tabletLandscape / desktopSmall (i.e. col-lg-12)
/* xl: desktopLarge (i.e. col-xl-12)


/* MEDIA QUERIES ======================================================================================================== */
/* Smartphones (portrait and landscape)
@media (min-width: 320px) and (max-width: 568px) {
 ...
}
/* Tablets (portrait and landscape)
@media (min-width: 768px) and (max-width: 1024px) {
 ...
}
/* Tablets (portrait)
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
 ...
}
/* Tablets (landscape)
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
 ...
}


/* POP UP (ADDED SEP 30'24) ============================================================================================== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    background: white;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}


/* TYPE SELECTORS ======================================================================================================== */
html, body {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 400;
	color: #143659;
	-webkit-font-smoothing: antialiased; /* resolves issue with font displaying much bolder than it should in Mac Chrome and Safari */
	-moz-osx-font-smoothing: grayscale; /* resolves issue with font displaying much bolder than it should in Mac Firefox */
	overflow-y: scroll; /* scrolls horizontal scroll bar */
	overflow-x: hidden; /* hides vertical scroll bar */
	scroll-behavior: smooth;
}
p {
	line-height: 24px;
	margin: 30px 0px 30px 0px;
}
h1 {
	font-family: "Arial Narrow", Arial, sans-serif;
}
h2 {
	font-family: "Arial Narrow", Arial, sans-serif;
	text-transform: uppercase;
	font-weight: bold;
}
h3 {
	font-family: "Arial Narrow", Arial, sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	color: #ffffff;
	background-color: rgba(20, 54, 89, 0.7);
	font-size: 18px;
	position: absolute;
	top: 30%;
	padding: 15px;
	width: 100%;
}
.sold {
	background-color: red;
	position: relative;
	top: auto;
}
h4 {

}
	

/* MISCELLANEOUS CLASSES ================================================================================================= */
/* note (for use during development and client review) */
.note {
	font-size: 16px;
	border-left: solid 3px #d9534f;
	border-right: solid 3px #d9534f;
	padding: 15px;
	background-color: #fdf7f7;
	color: #143659 !important;
}
/* nowrap */
.nowrap {
	white-space: nowrap;
}
/* fontawesome */
.fontawesome {
	font-size: 28px;
	margin-right: 30px;

}
/* pipe */
.pipe {

}
.border {
	border: solid 1px #ffffff;
}


/* BUTTONS =============================================================================================================== */
/* btn-default */
.btn-default {
	z-index: 1000 !important;
	position: relative !important;
	font-family: "Arial Narrow", Arial, sans-serif;
	font-weight: bold;
	color: #ffffff;
	text-transform: uppercase;
	background-color: #1e5f9c;
	border-color: #1e5f9c;
	font-size: 18px;
	border-radius: 0px;
	padding: 5px 15px 5px 15px;
	margin: 0px 0px 0px 0px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.btn-default:link {
	background-color: #1e5f9c !important;
	border-color: #1e5f9c !important;
	color: #ffffff !important;
	text-decoration: none !important;
}
.btn-default:visited {
	background-color: #1e5f9c !important;
	border-color: #1e5f9c !important;
	color: #ffffff !important;
	text-decoration: none !important;
}
.btn-default:hover {
	background-color: #a7a8aa !important;
	border-color: #a7a8aa !important;
	color: #ffffff !important;
	text-decoration: none !important;
}
.btn-default:active {
	background-color: #1e5f9c !important;
	border-color: #1e5f9c !important;
	color: #ffffff !important;
	text-decoration: none !important;
}
/* btn-primary */
.btn-primary {
	color: #ffffff !important;
	background-color: #1e5f9c;
	border-color: #1e5f9c;
	border-radius: 0px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	height: 45px;
	width: 45px;
	text-align: center;
	font-size: 48px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: -20px 0px 0px 15px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.btn-primary {
	display: inline !important;
}
}
.btn-primary:link {
	color: #ffffff !important;
}
.btn-primary:visited {
	color: #ffffff !important;
}
.btn-primary:hover {
	color: #ffffff !important;
	background-color: #a7a8aa !important;
	border-color: #a7a8aa !important;
}
.btn-primary:active {
	color: #ffffff !important;
}
/* btn-top */
.btn-top {
	float: right;
	color: #ffffff !important;
	background-color: #1e5f9c;
	border-color: #1e5f9c;
	border-radius: 0px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	height: 45px;
	width: 45px;
	text-align: center;
	font-size: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -20px 0px 0px 15px;
}
.btn-top:link {
	color: #ffffff !important;
}
.btn-top:visited {
	color: #ffffff !important;
}
.btn-top:hover {
	color: #ffffff !important;
	background-color: #a7a8aa !important;
	border-color: #a7a8aa !important;
}
.btn-top:active {
	color: #ffffff !important;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.btn-top {
	float: none;
	margin: 0px 0px 0px 0px;
}
}


/* NAVBAR =============================================================================================================== */
.navbar {
	text-transform: uppercase;
	background-image: linear-gradient(#1e5f9c, #143659);
	padding: 0px;
	font-family: "Arial Narrow", Arial, sans-serif;
}
.nav-item a:link {
	padding: 0px 20px 0px 20px !important;
	line-height: 45px;
}
.nav-link {
	color: #ffffff !important;
	font-weight: bold;
}
.dropdown-menu {
	border-radius: 0px;
}
.navbar-brand img {
	background-color: #143659;
	padding: 30px 15px 30px 15px;
	margin-top: -5px;
}
/* .navbar-toggler */
.navbar-toggler {
	background-color: #1e5f9c;
	margin-right: 15px;
}
.navbar-toggler-icon {
	color: #ffffff !important;
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar .active {
	background-color: #143659;
}


/* JUMBOTRON ============================================================================================================= */
.jumbotron {
	background-image: url(../img/bg-jumbotron.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
	text-transform: uppercase;
	min-height: 423px;
	position: relative;
}
.jumbotron-content {
	background-color: rgba(20, 54, 89, 0.7);
	padding: 60px 0px 30px 0px;
	position: absolute;
	bottom: 0;
}
.jumbotron h1 {
	font-size: 24px;
	font-weight: bold;
}
.jumbotron h2 {
	display: inline;
	font-weight: bold;
	font-style: italic;
	font-size: 40px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.jumbotron h2 {
	font-size: 22px !important;
}
}


/* BREADCRUMBS =========================================================================================================== */
.breadcrumbs {
	padding: 30px 15px 30px 15px;
	text-transform: uppercase;
	font-family: "Arial Narrow", Arial, sans-serif;
	font-size: 12px;
}
.breadcrumbs ul {
	list-style: none;
	padding: 0px;
}
.breadcrumbs li {
	display: inline;
}
.breadcrumbs a:link {
	color: #a7a8aa;
}
.breadcrumbs a:visited {
	color: #a7a8aa;
}
.breadcrumbs a:hover {
	color: #143659;
	text-decoration: none;
}
.breadcrumbs a:active {
	color: #a7a8aa;
}
.breadcrumbs .active {
	color: #1e5f9c;
	font-weight: bold;
}
.breadcrumbs .pipe {
	color: #1e5f9c;
	padding: 0px 10px 0px 10px;
}
.breadcrumbs .home {
	white-space: nowrap;
}
.breadcrumbs .active {
	white-space: nowrap;
}


/* CONTENT =========================================================================================================== */
.content {
	margin-bottom: 120px;
}
.content a:link {
	color: #1e5f9c;
	text-decoration: underline;
}
.content a:visited {
	color: #1e5f9c;
	text-decoration: underline;
}
.content a:hover {
	color: #a7a8aa;
	text-decoration: underline;
}
.content a:active {
	color: #1e5f9c;
	text-decoration: underline;
}
.content .phone {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-size: 24px;
	color: #1e5f9c;
}
.content .phone a:link {
	color: #1e5f9c;
	text-decoration: none !important;
}
.content .phone a:visited {
	color: #1e5f9c;
	text-decoration: none !important;
}
.content .phone a:hover {
	color: #1e5f9c;
	text-decoration: none !important;
}
.content .phone a:active {
	color: #1e5f9c;
	text-decoration: none !important;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.content .phone {
	font-size: 20px;
}
}
/* index */
.index {
	color: #ffffff;
}
.index .row {
	background-color: #143659;
}
.padding {
	padding: 30px 30px 0px 30px;
}
/* page */
.page {

}
.page .h1-container {
	text-align: center;
}
.page h1 {
	text-transform: uppercase;
	font-weight: bold;
	font-style: italic;
	border-top: solid 2px #eceded;
	border-bottom: solid 1px #eceded;
	display: inline-block;
	padding: 5px 120px 10px 120px;
	margin-bottom: 90px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.page h1 {
	padding: 5px 30px 10px 30px;
}
}
.page .equipment {
	background-color: rgba(20, 54, 89, 0.7);
	padding: 60px;
	min-height: 285px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.page .equipment {
	position: absolute;
	top: 0;
}
}
.page .equipment h2 {
	color: #ffffff;
}
.page .equipment-new {
	background-image: url(../img/equipment-new.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 285px;
	position: relative;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.page .equipment-new {
	background-size: auto;
	margin-bottom: 30px;
}
}
.page .equipment-used {
	background-image: url(../img/equipment-used.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 285px;
	position: relative;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.page .equipment-used {
	background-size: auto;
}
}




.page .about-1 {
	background-color: rgba(20, 54, 89, 0.7);
	padding: 60px;
	min-height: 285px;
}
.page .about-1 h2 {
	color: #ffffff;
}
.page .about-1 p {
	color: #ffffff;
}
.page .about-2 {
	background-color: rgba(20, 54, 89, 1);
	padding: 60px;
}
.page .about {
	background-image: url(../img/about.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 285px;
	position: relative;
}





.page .service {
	background-image: url(../img/service.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 285px;
	position: relative;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.page .service {
	background-size: auto;
}
}
.page .service-1 {
	background-color: rgba(20, 54, 89, 0.7);
	padding: 60px;
	min-height: 285px;
}
.page .service-1 h2 {
	color: #ffffff;
}
.page .service-1 p {
	color: #ffffff;
}




/* btn-default */
.page .btn-default {
	text-transform: uppercase;
	background-color: transparent;
	border-color: #ffffff;
	border: solid 2px;
}
.page .new {
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 153px;
	position: relative;
}
.page .new h3 a:link {
	color: #ffffff;
}
.page .new h3 a:visited {
	color: #ffffff;
}
.page .new h3 a:hover {
	color: #a7a8aa;
	text-decoration: none;
}
.page .new h3 a:active {
	color: #ffffff;
}
.page .more {
	background-color: #eceded;
	padding: 15px 10px 15px 10px;
	min-height: 80px;
	margin-bottom: 30px;
}
.page .more p {
	margin: 0px;
}
.page .more a:link {
	text-transform: uppercase;
	color: #1e5f9c;
	font-family: "Arial Narrow", Arial, sans-serif;
	font-weight: bold;
	text-decoration: none !important;
}
.page .more a:visited {
	color: #1e5f9c;
	text-decoration: none !important;
}
.page .more a:hover {
	text-decoration: none !important;
	color: #000000;
}
.page .more a:active {
	color: #1e5f9c;
	text-decoration: none !important;
}
.page .more a:after {
	font-family: 'Font Awesome 5 Pro';
    content: '\f105 ';
	padding-left: 5px;
	position: relative;
	text-decoration: none !important;
}


/* FOOTER ================================================================================================================ */
footer {
	background-image: linear-gradient(#1e5f9c, #143659);
	color: #a7a8aa;
	font-family: "Arial Narrow", Arial, sans-serif;
}
footer ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
footer li {
	display: inline;
	padding: 0px 40px 0px 0px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
footer li {
	padding: 0px 20px 0px 0px;
}
}
/* footer-row1 (call/email/top) */
.footer-row1 {
	padding: 15px;
	text-transform: uppercase;
	font-weight: bold;
}
.footer-row1 .btn-default {
	background-color: #143659;
	border-color: #143659;
	margin-left: 15px;
}
.footer-row1 .call {
	margin: 8px 5px 0px 0px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.footer-row1 .call {
	margin: 5px 5px 0px 0px;
}
}
.footer-row1 .phone {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-size: 24px;
	color: #ffffff;
}
.footer-row1 .phone a:link {
	color: #ffffff;
	text-decoration: none !important;
}
.footer-row1 .phone a:visited {
	color: #ffffff;
	text-decoration: none !important;
}
.footer-row1 .phone a:hover {
	color: #ffffff;
	text-decoration: none !important;
}
.footer-row1 .phone a:active {
	color: #ffffff;
	text-decoration: none !important;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.footer-row1 .phone {
	font-size: 20px;
}
}
/* footer-row2 (copyright/f3) */
.footer-row2 {
	padding: 15px;
	font-size: 10px;
	text-transform: uppercase;
}
.footer-row2 a:link {
	color: #ffffff;
}
.footer-row2 a:visited {
	color: #ffffff;
}
.footer-row2 a:hover {
	color: #ffffff;
}
.footer-row2 a:active {
	color: #ffffff;
}


/* FORM ============================================================================================================== */
.contact-form .form-group input.form-control {
	height: auto;	
}
.contact-form .form-group textarea.form-control {
	height: 210px;
}
.contact-form .btn-default {
	font-family: "Arial Narrow", Arial, sans-serif;
	font-weight: bold;
	color: #ffffff;
	text-transform: uppercase;
	background-color: #1e5f9c;
	border-color: #1e5f9c;
	font-size: 18px;
	border-radius: 0px;
	padding: 5px 15px 5px 15px;
	margin: 0px 0px 0px 0px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	
}
.contact-form .btn-default:link {
	color: #ffffff;
	background-color: #1e5f9c;
	border-color: #1e5f9c;
}
.contact-form .btn-default:visited {
	color: #ffffff;
	background-color: #1e5f9c;
	border-color: #1e5f9c;	
}
.contact-form .btn-default:hover {
	color: #ffffff;
	background-color: #1e5f9c;
	border-color: #1e5f9c;
}
.contact-form .btn-default:active {
	color: #ffffff;
	background-color: #1e5f9c;
	border-color: #1e5f9c;
}
.contact-form input {
	border-top: none;
	border-right: none;
	border-left: none;
	border-color: #dfdfe3;
	border-radius: 0px;
}
.contact-form textarea {
	border: none;
	background-color: #fafafa;
}
::-webkit-input-placeholder {
 font-size: 18px;
 color: #2e2824 !important;
}
.with-errors {
	color: red;
	text-transform: none;
}
.alert {
	background-color: #dfdfe3;
	color: #3d3d3d;
	border: solid 1px #dfdfe3;
	border-radius: 0px;
}
.alert-success strong {
	color: #3d3d3d !important;
	font-family: proxima-nova, sans-serif !important;
	font-weight: 400 !important;
}


/* 404 NOT FOUND ======================================================================================================== */
.notfound {
	height: 100%;
}
.notfound-message {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 360px;
	width: 100%;
	text-align: center;
	color: #000000;
}
.notfound-message img {
	margin: 0 auto !important;
	text-align: center !important;
}