﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------*/

.black {
	color: #000;
}

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

body {

}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}



.transducer-reg {
	font-family: "transducer", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.transducer-med {
	font-family: "transducer", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.poppins {
	font-family: "poppins", sans-serif;
}
.poppins-reg {
	font-family: "poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.poppins-med {
	font-family: "poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.poppins-semib {
	font-family: "poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
.italics {
	font-style: italic;
}
.wid90 {
	width: 90%;
	margin: 0 auto;
}
.wid85 {
	width: 85%;
	margin: 0 auto;
}
.wid80 {
	width: 80%;
	margin: 0 auto;
}


.orange {
	color: #DE6214;
}
.black {
	color: #262A2B;
}
.black-bg {
	background-color: #262A2B;
}
.white {
	color: #fff;
}
.lgrey {
	color: #cecece;
}


.orange-btn {
    background-color: #DE6214;
    display: inline-block;
    padding: 12px 25px;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all .3s ease-in-out;
}
a.orange-btn {
    font-family: "poppins", sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}
button.orange-btn {
    font-family: "poppins", sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
	border: none;
    transition: all .3s ease-in-out;
}
.orange-btn:hover {
    background-color: #cc5a12;
    transition: all .3s ease-in-out;
}
.contact-form button.orange-btn {
	display: flex;
    place-self: center;
}


.blk-btn {
    background-color: #262A2B;
    display: inline-block;
    padding: 12px 25px;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all .3s ease-in-out;
	color: #fff;
    font-family: "poppins", sans-serif;
    transition: all .3s ease-in-out;
}
a.blk-btn {
    font-family: "poppins", sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}
.blk-btn a {
    font-family: "poppins", sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}
.blk-btn:hover {
    background-color: #000;
    transition: all .3s ease-in-out;
}


/*--- HEADER STYLES ---------------------*/
.header {
    display: flex;
    flex: 15;
    flex-direction: column;
}
.head-wrap {
    display: flex;
	border-bottom: 1px solid #cecece !important;
}
.head-logo {
    border-left: 8px solid #DE6214;
	align-content: center;
}
.head-logo a {
    display: flex!important;
    padding: 0 25px!important;
}
.head-logo img {
	width: 100%!important;
	image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}
.top-bar {
    display: inline-flex;
    width: auto;
    border-bottom: 1px solid #cecece;
    border-left: 1px solid #cecece;
    padding: 10px 15px;
    justify-content: space-between;
}
.top-bar a {
    color: #000;
    font-family: "poppins", sans-serif;
    font-size: 13px;
}
.bar-left a {
    padding-right: 25px;
}
.bar-left a i {
    padding-right: 10px;
}
.bar-right a {
    padding: 0 10px;
}

#top-search{
	flex: 1;
	& a {
		color: #fff;
		font-size: 14px; 
		transition:.3s ease;	
		background:#DE6214;	
		width:100%;
		height:100%;
		display:flex; 
		justify-content: center;
		& i{
			display:flex; 
			color:#fff; 
			flex-wrap:wrap; 
			align-content:center; 
			justify-content: center;
		}
		&:hover{
			background:#000;}
		}
}
#searchbar {  
	position: absolute;  
	display: none; 
	float: left;  
	width: 100%;  
	z-index: 350; 
	box-sizing: border-box;  
	height: 80px;  
	border-bottom: 1px #e5e5e5 solid;  
	background: #DE6214;

 #searchform {
	 .keywords {  
		 width: 100% !important;  
		 text-align: center !important; 
		 border:none!important;  outline: none !important; 
		 padding: 34px 25px !important;  
		 font-size: 20px !important; 
		 line-height: 28px !important;  
		 color: #fff !important;  
		 background: #DE6214 !important;  
		 font-family: "transducer", sans-serif !important;
		 font-weight: 900!important; }
	.keywords::placeholder{color:#fff;}
	}
}

/*---BODY--------------------------------*/


.hero-wrap {
    background-image: url("../siteart/hero2.jpg");
    height: 714px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% 25%;
    background-color: #000;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.hero-txt h1 {
    font-size: 70px;
	position: relative;
    z-index: 5;
	line-height: 80px;
    margin-bottom: 25px;
	text-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.hero-txt h2 {
    font-size: 22px;
	position: relative;
    z-index: 5;
	margin-bottom: 25px;
	text-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.hero-txt p {
    position: absolute;
    font-size: 150px;
    -webkit-text-stroke: 1px #BEBEBE;
    color: transparent;
    z-index: 1;
    top: 94px;
    margin-left: 60px;
}
.hero-btns {
    display: flex;
}
.hero-btns .orange-btn {
    margin-right: 10px;
}



.cta-wrap {
    margin-top: -130px;
    z-index: 10;
    position: relative;
}
.stripes {
    background-image: url("../siteart/hero-stripes.png");
    height: 120px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
    position: absolute;
    z-index: 1;
    width: 50%;
    top: 65px;
}
.cta-row {
    display: flex;
    justify-content: flex-end;
	flex-wrap: wrap;
	z-index: 10;
    position: relative;
	width: max-content;
    margin: 0 0 auto auto;
}
.home-cta {
    position: relative;
	padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	flex: 1;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	min-width: 250px;
}
.cta-bg {
    position: absolute;
	align-self: anchor-center;
}
.cta1 {
    background-color: #262A2B;
}
.cta2 {
    background-color: #DE6214;
}
.cta3 {
    background-color: #fff;
}
.cta-bg img {
    width: 100%;
}
.cta-icon {
    margin-bottom: 50px;
}
.home-cta h3 {
    font-size: 32px;
	margin-top: 50px;
}
.cta-btn {
    display: flex;
    justify-content: space-between;
	align-items: center;
}
.cta-btn p {
    font-size: 15px;
}
span.material-symbols-outlined {
    border: 1px solid;
    border-radius: 3px;
    padding: 8px;
	align-content: center;
	transition: all .3s ease-in-out;
}
a .cta-btn:hover span.material-symbols-outlined.white {
	transition: all .3s ease-in-out;
	background-color: #fff;
	color: #DE6214;
	border: 1px solid #fff;
}
a .cta-btn:hover span.material-symbols-outlined.black {
	transition: all .3s ease-in-out;
	background-color: #DE6214;
	color: #fff;
	border: 1px solid #fff;
}
.transport-aside1 a:hover span.material-symbols-outlined.white{
	transition: all .3s ease-in-out;
	background-color: #fff;
	color: #DE6214;
}
.home-about {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 100px auto;
}
.home-about h3 {
    font-size: 45px;
	line-height: 50px;
	margin-bottom: 20px;
}
.home-about-aside {
    flex: 1;
}
.home-about-aside img {
    width: 100%;
}
.home-about-aside.about-rt {
    margin-right: 75px;
	margin-bottom: 30px;
}
.home-about p {
    line-height: 32px;
    margin-bottom: 30px;
}
.home-about-aside.about-rt div h3 {
    background-image: url(../siteart/hero-stripes.png);
    height: 120px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
} 
.about-btns {
    display: flex;
}
.about-btns .orange-btn {
    margin-right: 10px;
}
.home-stats {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	margin: 100px auto;
	gap: 50px;
}
.stat {
    display: inline-flex;
    align-items: flex-end;
	position: relative;
}
.stat-num p {
    font-size: 95px;
	-webkit-text-stroke: 0.5px #cecece;
    color: transparent;
	line-height: 50px;
}
.stat-deet p {
    text-transform: uppercase;
    font-size: 25px;
    margin-left: -45px;
    line-height: 28px;
    text-align: right;
    margin-bottom: 8px;
}
.stat span.material-symbols-outlined.orange {
    border: none;
    font-weight: 600;
    font-size: 17px;
	position: absolute;
    top: -18px;
    right: -25px;
}



/*---CAT SLIDE--*/
.cat-wrap {
	margin-left: 5% !important;
	padding-top: 30px;
	margin-right: -5% !important;
	overflow: hidden !important;
}
a.cat {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    box-sizing: border-box;
    color: #000;
}
a.cat img {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
	min-width: fit-content;
}
a.cat h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #4e4d4dbf;
	position: absolute;
	bottom: 0;
	width: inherit;
}
span.slide-btn {display: flex;gap: 10px;position: absolute;top: 5%;right: 0;}

.caty-wrap {
    padding-top: 50px;
    padding-bottom: 100px;
}
.caty-wrap p {
    font-size: 150px;
    -webkit-text-stroke: 0.5px #8d8d8d;
    color: transparent;
    margin-left: -40px;
}
.caty-wrap h3 {
    font-size: 45px;
    margin-top: -70px;
}
.category-slide {
	gap:20px;
}


.transport-wrap {
	background-image: url("../siteart/transport.jpg");
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% 25%;
    background-color: #000;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
	border-bottom: 1px solid #474A4B;
    border-top: 1px solid #474A4B;
}





.transport-wrap .wid80 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.transport-aside1 {
    background-color: #DE6214;
    padding: 35px;
	width: 380px;
}
.transport-aside1 a {
    display: flex;
    justify-content: space-between;
	transition: all .3s ease-in-out;
}
.transport-aside1 a:hover p {
	transition: all .3s ease-in-out;
	text-decoration: underline;
}
.transport-aside1 p {
    font-size: 16px;
}
.transport-aside1 h3 {
    font-size: 36px;
    line-height: 45px;
	margin-top: 40px;
}
.transport-aside2 {
    flex: 2;
    margin-left: 100px;
}
.transport-aside2 h4 {
    font-size: 22px;
    text-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	line-height: 36px;
}



.about-top.sub-hero {
	background-image: url("../siteart/about-hero.jpg");
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% 25%;
    background-color: #000;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.thankyou-top.sub-hero {
	background-image: url("../siteart/thankyou-hero.jpg");
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% 25%;
    background-color: #000;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.contact-top.sub-hero {
	background-image: url("../siteart/contact-hero.jpg");
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% 25%;
    background-color: #000;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.transport-top.sub-hero {
	background-image: url("../siteart/transport-hero.png");
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% 25%;
    background-color: #000;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.sub-hero p {
	font-size: 150px;
    -webkit-text-stroke: 0.5px #bebebe;
    color: transparent;
    margin-left: -40px;
	position: absolute;
	bottom: 0;
	top: 0;
	place-content: center;
	z-index: 1;
}
.sub-hero h1 {
    font-size: 45px;
	z-index: 10;
	position: relative;
}
.contact-wrap {
    margin: 100px auto;
}
.rf-breadcrumbs {
    font-family: 'poppins';
    padding-bottom: 50px;
}
.rf-breadcrumbs a {
	color: #262a2b;
	border: 1px solid;
    border-radius: 3px;
    padding: 8px;
    align-content: center;
    transition: all .3s ease-in-out;
}
.rf-breadcrumbs a:hover {
	color: #de6214;
    transition: all .3s ease-in-out;
}


.page-col h2 {
    font-size: 40px;
	margin-left: -115px;
}
.icon-bg img {
    width: 100%;
    filter: opacity(0.2);
    max-width: 200px;
	transform: scaleX(-1);
}
.page-col.about-col-1 {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}
.page-col p.poppins-reg.orange {
	display: inline-flex;
	align-items: baseline;
}
.page-col p.poppins-reg.orange:hover {
    text-decoration: underline;
}
.page-col.about-col-2 {
    display: flex;
    gap: 100px;
}
.page-col.about-col-2 div {
    flex: 1;
}

.contact-info {
    display: flex;
    align-items: center;
	gap: 5vw;
    flex-wrap: wrap;
}
.contact-info .reps {
    display: flex;
	flex-wrap: wrap;
    gap: 5vw;
}
.rep a {
    color: #262A2B;
}
.rep p.transducer-med {
    margin-bottom: 10px;
}



/*--------Category Slider----------------*/


.slidtest {
    margin: 10px;
    border-radius: 3px;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.slid-size {
    max-width: 100%;
    width: 480px;
    height: 100%;
}
.bottom-overlay {
    position: absolute;
    z-index: 999999;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #323232a6;
    padding: 15px 20px;
    color: #fff;
    transition: all .3s ease-in-out;
}
.bottom-overlay:hover span.material-symbols-outlined.white {
    transition: all .3s ease-in-out;
    background-color: #fff;
    color: #DE6214;
    border: 1px solid #fff;
}
.bottom-overlay h4 {
    text-transform: uppercase;
    font-size: 25px;
}



/* Slide Container */
.videoslider .slick-arrow{
	width: 48px !important;
    display: block !important;
    bottom: 0 !important;
	margin-top: 0 !important;
    height: 48px !important;
    background-color: unset !important;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease;
	border-radius: 3px !important;
	opacity: 1 !important;
}
.videoslider .slick-next i{
	color: #fff !important;
}
.videoslider .slick-prev i{
	color: #fff !important;
}
.videoslider .slick-arrow:before{
	color: #fff;
	font-size: 18px;
	opacity: 0.77;
}
.videoslider .slick-prev{
    background-color: #474A4B !important;
	left: unset !important;
    right: calc(8.33333% + 58px) !important;
    top: -10px;
}
.videoslider .slick-next{
    background-color: #DE6214 !important;
    right: 8.33333% !important;
    top: -10px;
}

.videoslider{
	padding: 60px 0;
}
.vidtest {
	margin: 10px; border-radius: 5px; overflow: hidden; padding: 0;
	position: relative;
}
.vidtest i{
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
	transition: ease all 0.2s;
	opacity: 0.75;
	color: #fff;
	text-align: center;
	font-size: 30px;
	width: 24px;
	height: 24px;
	background: #000;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 12px 0 rgba(0,0,0,0.33);
}
.vidtest:hover i{
	transform: translate(-50%, -50%) scale(1.05);
	opacity: 1;
}
.vidtest video{
	z-index: 30;
	position: relative;
    border-radius: 5px;
}
img.floater { width: 100%; top: 15px; position: relative;}

.video-size {
	max-width: 100%;
	width:480px;
	height:100%;
}




/*--------FORM STYLES--------------------*/

.custom-form input, .custom-form textarea {
    padding: 15px;
    width: 100%;
    border: 1px solid #000;
    font-family: 'poppins';
    box-sizing: border-box;
    border-radius: 3px;
}
.custom-form .flex {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
form.custom-form h2 {
    font-size: 45px;
}
.CaptchaMessagePanel {
    padding: 5px 5px 10px 5px;
    font-weight: 500;
    font-family: 'poppins';
    font-size: 15px;
}
.CaptchaWhatsThisPanel a {
    font-family: 'transducer';
    font-size: 15px;
    color: #cc5a12;
}

/*-------- FOOTER STYLES ----------------*/
footer{}

.foot-top {
    display: flex;
    justify-content: space-between;
	gap: 50px;
    padding: 75px 0;
	flex-wrap: wrap;
}
.foot-col p.transducer-med.white {
    margin-bottom: 30px;
}
.col-small {
    flex: 2;
}
.foot-about {
    flex: 3;
	min-width: 270px;
}
.foot-hours {
    display: flex;
    align-items: baseline;
    gap: 20px;
	margin-top: 20px;
}
.foot-col a {
    display: flex;
    align-items: baseline;
    gap: 20px;
	margin-bottom: 12px;
}
.foot-col a:hover p {
    color: #fff;
}
.foot-col i {
    font-size: 14px;
	width: 15px;
}
.foot-copy p {
    font-size: 12px;
}
.foot-bottom {
    border-top: 1px solid #757371;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.foot-logo a {
    display: flex;
    padding: 0 25px !important;
	background-color: #fff;
}
.foot-logo img {
    width: 100%;
}
.foot-socials i {
    color: #fff;
    font-size: 25px;
}
.foot-col.col-icon {
    text-align: right;
}
.foot-socials {
	height: 100%;
	display: flex;
}
.foot-socials a {
    border-left: 1px solid #757371;
    padding: 50px 45px;
	display: inline-flex;
}



/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/







/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (min-width: 768px) {
	
}

@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}


@media only screen and (max-width: 1430px) {
	.caty-wrap p, .sub-hero p {
		font-size: 100px;
		margin-left: 30px;
	}
	.caty-wrap h3 {
		font-size: 40px;
		margin-top: -60px;
	}
	.videoslider {
		padding: 35px 0;
	}
	.videoslider .slick-prev {
		top: -28px;
	}
	.videoslider .slick-next {
		top: -28px;
	}
	.bottom-overlay h4 {
		font-size: 18px;
	}
	.material-symbols-outlined {
		font-size: 20px;
	}
	.hero-wrap {
		height: 550PX;
	}
	.hero-txt p {
		top: 75px;
    	margin-left: 40px;
		font-size: 100px;
		-webkit-text-stroke: 0.5px #BEBEBE;
	}
	.hero-txt h1 {
		font-size: 50px;
		line-height: 55px;
		margin-bottom: 20px;
	}
	.hero-txt h2 {
		font-size: 20px;
	}
	.stat-num p {
		font-size: 60px;
		line-height: 38px;
	}
	.stat-deet p {
		font-size: 18px;
		line-height: 18px;
	}
	.home-about h3 {
		font-size: 40px;
		line-height: 45px;
		margin-bottom: 10px;
	}
	.home-about-aside.about-rt div h3 {
		height: 100px;
	}
	.transport-aside1 h3 {
		font-size: 30px;
		line-height: 35px;
		margin-top: 20px;
	}
	.transport-aside2 h4 {
		font-size: 16px;
		line-height: 25px;
	}
	.home-cta h3 {
		font-size: 24px;
		margin-top: 30px;
	}
	.home-cta {
		padding: 25px;
	}
	.cta-bg img {
		width: 16vw;
	}
	.transport-wrap {
		height: 400px;
	}
	.sub-hero {
		height: 300px;
	}
}
@media only screen and (max-width: 1272px) {
	.bar-left span.bar {
		display: none;
	}
}
@media only screen and (max-width: 1175px) {
	.home-about-aside.about-lt {
		display: none;
	}
	.home-about {
		width: 90%;
	}
	.home-about-aside.about-rt {
		margin: 0 auto;
	}
	.home-about-aside.about-rt div h3 {
		align-content: center;
	}
	.page-col h2 br, .icon-bg img {
		display: none;
	}
	.page-col h2 {
		margin: 0;
	}
	.page-col.about-col-1 {
		gap: 0;
	}
}
@media only screen and (max-width: 1050px) {
	.stripes {
		display: none;
	}
	.cta-row {
		width: 100%;
		margin: 0 auto;
	}
	.cta-wrap {
		margin-top: 0;
	}
	.hero-wrap {
        height: 450px;
    }
	.hero-txt p {
        top: 25px;
    }
	.transport-wrap .wid80 {flex-direction: column-reverse;}
	.transport-aside2 h4 {text-align: center; margin-bottom: 25px;}
	.transport-aside2 {margin: 0 auto;}
	.transport-aside1 {padding: 25px; width: inherit;}
	.col-icon img {max-width: 200px;}
	.foot-col.col-icon {text-align: center; align-content: center;}
	.page-col.about-col-2 {flex-direction: column; gap:25px;}
}
@media only screen and (max-width: 991px) {
	#top-search, #searchbar {
		display: none;
	}
}
@media only screen and (max-width: 900px) {
	.caty-wrap p, .sub-hero p {
		display: none;
	}
	.hero-txt p {
		display: none;
	}
	.cta-bg img {
        display: none;
    }
	.cta-icon {
		margin-bottom: 0;
	}
	.transport-wrap {
        height: 520px;
    }
	.caty-wrap {
        padding-top: 120px;
        padding-bottom: 120px;
    }
	.sub-hero {
		height: 250px!important;
	}
	form.custom-form h2 {
		font-size: 30px;
	}
}
@media only screen and (max-width: 730px) {
	.hero-txt h1 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 15px;
    }
	.hero-txt h2 {
        font-size: 16px;
        line-height: 20px;
    }
	.orange-btn {
		padding: 12px 15px;
	}
	a.blk-btn {
		padding: 12px 15px;
	}
	.home-about h3, .page-col h2 {
        font-size: 25px;
        line-height: 30px;
    }
	.transport-form h2 {
        font-size: 25px;
    }
	.caty-wrap h3 {
        font-size: 25px;
        line-height: 30px;
    }
	.transport-aside1 h3 {
        font-size: 22px;
        line-height: 30px;
    }
	.home-stats {justify-content: center;}
	.videoslider {
        padding: 20px 0 0 0;
    }
	.videoslider .slick-prev {
		right: calc(0% + 58px) !important;
		top: 20px;
    }
	.videoslider .slick-next {
        top: 20px;
		right: 3.33333% !important;
    }
	.videoslider .slick-arrow {
		width: 35px !important;
	}
	.foot-socials a {
		padding: 44px 20px;
	}
	.foot-socials {display: none;}
	.foot-bottom .wid90 {gap:30px;}
	.foot-copy p {font-size: 10px;}
}
@media only screen and (max-width: 600px) {
	.custom-form .flex {
		flex-direction: column;
	}
	.sub-hero h1 {
		font-size: 30px;
	}
	.sub-hero {
        height: 200px !important;
    }
	form.custom-form h2 {
        font-size: 25px;
    }
}
@media only screen and (max-width: 450px) {
	.videoslider .slick-prev {
        right: calc(0% + 55px) !important;
        top: 20px;
    }
	.videoslider {
        padding: 35px 0 0 0;
    }
	.videoslider .slick-prev {
        top: 35px;
    }
	.videoslider .slick-next {
        top: 35px;
    }
} 





