/***** 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 --------

*/

/***** 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 {
	background: linear-gradient(90deg, #080707 26.92%, #020F30 100%) !important
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}

hr.mute {
	border: #30353C 1px solid;
	margin: 15px 0px 20px;
}


:root {
  /* Colors */
  --clr-bg: #080707;
  --clr-primary: #4060A9;
  --clr-primary-dark: #30353C;
  --clr-white: #F5F5F5;
  --clr-text-muted: #b8b8b8;

  /* Typography */
  --font-main: "space-grotesk-variable", sans-serif;
  --font-body: "roboto", sans-serif;
  --font-height: 27px;

  /* Hero Heading */
  --hero-size: clamp(3rem, 6vw, 5rem);
  --hero-weight: 700;
  --hero-line: 1;

  /* Section Heading */
  --heading-size: clamp(2rem, 4vw, 3.5rem);
  --heading-weight: 600;
  --heading-line: 1.1;

  /* Secondary Heading */
  --subheading-size: 1.5rem;
  --subheading-weight: 500;
  --subheading-line: 1.3;


  /* Radius */
  --radius: 15px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-1:
    0 10px 30px rgba(0,0,0,.25);

  /* Container */
  --container: 1400px;

  --space-xs: 12px;
  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 80px;
  --space-xl: 120px;

  --transition: .3s ease;
	
}



.lg-heading {
  font-size: var(--heading-size);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line);
  font-family: var(--font-main);
  color: var(--clr-white);
}
.m-heading {
  font-size: 50px;
  font-weight: var(--heading-weight);
  line-height: var(--heading-line);
}
.subheading {
  font-size: var(--subheading-size);
  font-weight: var(--subheading-weight);
  line-height: var(--subheading-line);
}
.body {
  font-size: var(--body-size);
  font-family: var(--font-body);
  line-height: var(--font-height);
  letter-spacing: 2px;
  color: var(--clr-white);
}

.container {
  width: min(90%, var(--container));
  margin: auto;
}

.section {
  padding: var(--space-xl) 0;
}

.wid95 {
	width: 95%;
	margin: 0 auto;
}
.wid90 {
	width: 90%;
	margin: 0 auto;
}
.marg15 {
	margin: 15px;
}



/* From Uiverse.io by cssbuttons-io */ 
a.btn {
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: 16px;;
 font-family: var(--font-body);
 font-weight: 500;
 line-height: var(--body-line);
 letter-spacing: 2px;
}

a.hero-btn{
 width: 15rem;
 height: auto;
}

a.hero-btn .circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 3rem;
 height: 3rem;
 background: var(--clr-primary);
 border-radius: 1.625rem;
}

a.hero-btn .circle .icon {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #fff;
}

a.hero-btn .circle .icon.arrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.125rem;
 background: none;
}

a.hero-btn .circle .icon.arrow::before {
 position: absolute;
 content: "";
 top: -0.29rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #fff;
 border-right: 0.125rem solid #fff;
 transform: rotate(45deg);
}

a.hero-btn .button-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 1.85rem;
 color: var(--clr-white);
 line-height: 1.6;
 text-align: center;
 text-transform: capitalize;
}

a:hover .circle {
 width: 100%;
}

a:hover .circle .icon.arrow {
 background: #fff;
 transform: translate(1rem, 0);
}

a:hover .button-text {
 color: #fff;
}


.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition);
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: var(--body-line);
  letter-spacing: 2px;
}
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  flex: 1;
  min-width: 240px;
}
.btn-primary:hover {
  background: #4d70c4;
}
.btn-outline {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--clr-white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/*--- HEADER STYLES ---------------------*/

.header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(95%, 1800px);
  z-index: 20;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  gap: 15px;
}

.header-actions a {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: white;
  cursor: pointer;
  padding: 10px;
}


.header-actions i {
    color: var(--clr-white);
}



/* Header Search */
.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
/*  width: 30px;*/
/*  background-size: 1px 200px;*/
  position: relative;
  overflow: hidden;
/*  margin-left: 25px;*/
}

.header-icon:hover {
  cursor: pointer;
}

.header-icon:hover i {
  opacity: 0.6;
}

.header-icon a {
	position: relative;
	z-index: 1;
/*	height: 100%;*/
/*    width: 100%;*/
	align-content: center;
}

.header-icon i {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*  */
.header-search-slide {
  background: #dbdcdd;
  padding: 30px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box !important;
  border-top: 1px solid #fff;
}

.search-outer-container {
  width: 100%;
  max-height: 100%;
  height: 50px;
}

.header-search {
  display: flex;
  height: 100%;
}

.initiallyHidden {
  display: none;
}



.hero-search .search-form-round {
  width: 35%;
  max-width: 600px;
}

.search-form-round {
  background: #fff;
  border-radius: 50px;
  border: 3px solid #fff;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.search-form-round input[type="text"] {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  width: 70%;
  border: none;
  padding-left: 15px;
}

.search-form-round input[type="text"],
.search-form-round input[type="text"]::placeholder {
  font-weight: 300;
  font-size: 18px;
  color: #999999;
}

.search-form-round .bttn-base {
  width: 30%;
  padding: 0;
}



.bttn-base {
    font-size: 12.5px;
    transition: 0.3s !important;
    height: 50px;
    padding: 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    white-space: nowrap;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    cursor: pointer;
}



/*---BODY--------------------------------*/

.hero-text.mob {
    display: none;
}


.hero {
/*  height: 95vh;*/
  position: relative;
  overflow: hidden;
	border-radius: 15px;
    margin: 15px;
}
.hero-image {
    display: flex;
    justify-content: center;
    width: 100%;
}
.hero img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
/*  background: rgba(0,0,0,.45);*/
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 7%;
}

.hero h1 {
  font-size: clamp(2rem, 4.1vw, 6rem);
  line-height: 1;
  margin-bottom: 40px;
  color: var(--clr-white);
  font-family: var(--font-main);
  margin-right: 3vw;
}

.hero-text {
  max-width: 400px;
	font-size: 22px !important;
}
.hero-text p {
    font-size: 18px !important;
}






.loader {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
/*  font-size: 25px;*/
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 80px;
  padding: 10px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
}
.loader h2, .words {
    font-size: clamp(25px, 3vw, 5rem);
    font-weight: var(--heading-weight);
    color: var(--clr-white);
}
span.mute {
    color: var(--clr-text-muted);
    font-weight: 100;
}
.words {
  overflow: hidden;
  position: relative;
}
.words::after {
  content: "";
  position: absolute;
  inset: 0;
/*  background: linear-gradient(*/
/*    var(--bg-color) 10%,*/
/*    transparent 30%,*/
/*    transparent 70%,*/
/*    var(--bg-color) 90%*/
/*  );*/
  z-index: 20;
}

.word {
  display: block;
  height: 100%;
  padding-left: 20px;
  color: var(--clr-primary);
  animation: spin_4991 5s infinite;
}

@keyframes spin_4991 {
  10% {
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
  }

  25% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  35% {
    -webkit-transform: translateY(-202%);
    transform: translateY(-202%);
  }

  50% {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  60% {
    -webkit-transform: translateY(-302%);
    transform: translateY(-302%);
  }

  75% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
  }

  85% {
    -webkit-transform: translateY(-402%);
    transform: translateY(-402%);
  }

  100% {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}



.flex { display:flex; flex-direction:row;gap:15px;} .flex2 { width:50%; } 

.cardy {
    padding: 2vw;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15vw;
/*    min-width: 350px;*/
	justify-content: space-between;
}
.card-text h3 {
    color: var(--clr-white);
    font-family: var(--font-main);
    font-size: 40px;
	margin-bottom: 20px;
}

.sales-card {
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.35)
    ),
    url("/siteart/equipment-card.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.rental-card {
  background: #15347C !important;
  color: var(--white);
}


.get-in-touch h2 {
    margin-bottom: 20px;
}
.cardy {
    background-color: #30353C;
}
.get-in-touch .flex2.lf {
    align-content: center;
}
.get-in-touch .flex2.lf div {
    margin-bottom: 30px;
}


.thankyou.get-in-touch.cardy {
    padding: 100px 2vw;
    margin-top: 140px;
}
.thankyou .flex2.rt {
    color: var(--clr-white);
    font-family: 'space-grotesk-variable';
    justify-items: center;
    align-content: center;
}
.thankyou i.fa-solid.fa-circle-check {
    color: var(--clr-primary);
}




/*CONTACT FORM*/

.contact-form {
	display: flex; 
	flex-direction: column; 
	gap: 15px; 
	ont-size: var(--font-body);
	max-width: 100%; 
/*	padding: 10px;*/
}
.contact-form label {
	display: none;}
.contact-form input {
	padding: 20px; 
	width: stretch; 
	border: 1px solid var(--clr-text-muted);
	font-size: var(--body-size);
	font-family: var(--font-body);
	line-height: var(--font-height);
	letter-spacing: 2px;
	background-color: transparent;
	border-radius: 10px;
	color: #fff;
}
.contact-form .input-row {
	display: flex; flex-direction: row; gap: 10px;}
.contact-form .dualFields {
	width: 50%;}
.contact-form textarea {
	width: stretch; 
	height: 200px; 
	border: none; 
	padding: 20px; 
	font-size: var(--body-size);
	font-family: var(--font-body);
	line-height: var(--font-height);
	letter-spacing: 2px;
	border: 1px solid var(--clr-text-muted);
	background-color: transparent;
	color: #fff;}
.contact-form a.submit-button{
/*	padding: 20px; */
	width: 100%; 
	border: none; 
	font-size: var(--p);}
.contact-form a.submit-button:hover {cursor: pointer ;}

.grecaptcha-badge{z-index:10;}

.note {
    font-size: 15px;
    color: var(--clr-white);
    font-family: var(--font-body);
}



/*-------- FOOTER STYLES ----------------*/
.footer.wid90 {
    margin: 15px auto;
}
.ft-top {
    margin: 70px 0;
}
.tp-tp {
    display: flex;
    justify-content: space-between;
	gap: 7vw;
}
.tp-tp.top {
    align-items: center;
}
.foot-phone.lg-heading a {
    font-size: var(--heading-size) !important;
    font-weight: var(--heading-weight) !important;
    line-height: var(--heading-line) !important;
    font-family: var(--font-main) !important;
    color: var(--clr-white) !important;
}
.foot-desc {
    width: 40%;
}
.foot-desc p {
	font-size: 15px;
	line-height: 24px;}
.foot-menu ul {
    display: flex;
}
.foot-menu ul li a {
    color: #fff;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    letter-spacing: 1.6px;
    font-size: 15px;
    text-transform: capitalize;
    padding: 15px 12px;
}
.ft-bottom p {
    font-family: var(--font-body);
    line-height: var(--font-height);
    letter-spacing: 2px;
    color: #b8b8b8;
    justify-self: center;
    font-size: 14px;
}

/*----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: 1130px) {
	.hero-content {
		padding: 0 3%;
	}
}
/*SMALL DESKTOP*/
@media only screen and (max-width: 1024px) {
	.hero-content {
		position: absolute;
		inset: 0;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		padding: 0 7%;
		flex-direction: column;
	}
	.hero-text.mob {
		display: block;
		padding-bottom: 30px;
	}
	.hero-text.dsk {
		display: none;
	}
	.hero h1 {margin-bottom: 30px;}
	.hero {height: 768px;}
}
@media only screen and (max-width: 910px) {
	.foot-menu {display: none;}
	.foot-desc {
		width: 100%;
		text-align: center;
	}
	.header-actions {gap: 10px;}
	.head-logo {
		position: absolute!important;
		left: 0!important;
	}
	.header {justify-content: flex-end!important;}
	.flex {flex-direction: column;}
	.flex2 {width: stretch;}
	
	.get-in-touch .flex2.lf {
		text-align: center;
		margin-bottom: 25px;
	}
	.loader {
		flex-direction: column;
		height: 75px;
	}
	.word {padding-left: 0;}
	span.mute {display: none;}
}

/*TABLET*/
@media only screen and (max-width: 767px) {
	.cardy {padding: 6vw;}
	.contact-form .input-row {
		flex-direction: column;
	}
	.contact-form .dualFields {
		width: 100%;
	}
	.head-logo img { max-width: 140px;}
	.header {width: min(90%, 1800px);}
	.header-actions i {font-size: 14px;}
	.tp-tp {
		flex-direction: column;
		gap: 5vw;
		margin-bottom: 25px;
	}
}

/*MOBILE*/
@media only screen and (max-width: 540px) {
	.lg-heading {
		font-size: 33px!important;
	}
	.loader {height: 75px;}
}

