﻿/***** 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 {
}

a:link,
a:visited,
a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

hr {
  border: #000 1px solid;
}

.wid95 {
  width: 95%;
  margin: 0 auto;
}
.wid90 {
  width: 90%;
  margin: 0 auto;
}
.wid80 {
  width: 80%;
  margin: 0 auto;
}
.wid85 {
  width: 85%;
  margin: 0 auto;
}

.white {
  color: #fff;
}
.black {
  color: #000;
}
.black-bg {
  background-color: #000;
}
.yellow {
  color: #fecf01;
}
.yellow-bg {
  background-color: #fecf01;
}
.yell-darker {
  color: #dfa500;
}

.capitalize {
  text-transform: capitalize;
}
.uppercase {
  text-transform: uppercase;
}

.inter {
  font-family: "inter-variable", sans-serif;
}

p {
  font-family: "inter-variable";
  font-size: 15px;
  line-height: 28px;
}

/*--- HEADER STYLES ---------------------*/
header {
  box-shadow:
    rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}
.head-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  padding: 15px 0;
  margin: 0 auto;
}
.head-logo img {
  display: flex;
  max-width: 100%;
  width: 100%;
}
.head-phone {
  background: linear-gradient(
    90deg,
    rgba(254, 228, 2, 1) 0%,
    rgba(255, 199, 1, 1) 80%,
    rgba(255, 189, 0, 1) 100%
  );
  padding: 10px 20px;
  border-radius: 25px;
  transition: 0.2s ease-in-out !important;
}
.head-phone:hover {
  transition: 0.2s ease-in-out !important;
  letter-spacing: 0.25px;
  margin-left: -5px;
  box-shadow:
    #ffbd00 0px 20px 50px -5px inset,
    rgba(0, 0, 0, 0.3) 0px 10px 30px -10px inset;
}
.head-phone a {
  font-family: inter-variable, sans-serif;
  font-variation-settings:
    "wght" 600,
    "slnt" 0;
  color: #000;
}
.head-phone i {
  margin-right: 15px;
}

/*---BODY--------------------------------*/

.hero {
  background: url("../siteart/hero.jpg") no-repeat;
  background-size: cover;
  height: 510px;
  display: flex;
  box-sizing: border-box;
  position: relative;
  background-position: bottom;
  background-color: #000;
}
.hero-bott h3 {
  font-variation-settings:
    "wght" 700,
    "slnt" -10;
  font-size: 16px;
  background: #ffbd00;
  background: linear-gradient(
    90deg,
    rgba(254, 228, 2, 1) 0%,
    rgba(255, 199, 1, 1) 80%,
    rgba(255, 189, 0, 1) 100%
  );
  padding: 15px;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 30px;
}

.cta-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0;
}
.cta-top {
  height: 360px;
  background-size: cover;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  background-position: center;
  width: 100%;
  max-width: 100%;
  background-color: #000;
  transition: all 0.3s ease-in-out;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top1 {
  background-image: url("../siteart/cta-equipment.png");
}
.top2 {
  background-image: url("../siteart/cta-rentals.png");
}
.top3 {
  background-image: url("../siteart/cta-clearance.png");
}
.top4 {
  background-image: url("../siteart/cta-specials.png");
}
.cta-top .plus {
  text-align: right;
}
.cta-top i {
  background-color: #fecf01;
  padding: 14px 15px;
  border-radius: 25px;
  transition: all 0.2s ease-in-out !important;
}
.cta-top h2 {
  font-weight: 700;
  font-family: "inter-variable";
  text-transform: uppercase;
  color: #fff;
  font-size: 38px;
  text-align: center;
  line-height: 45px;
  margin-bottom: 20px;
}
.cta-bottom {
  background-color: #fecf01;
  transition: all 0.2s ease-in-out !important;
}
.cta-bottom p {
  display: flex;
  padding: 25px 10px;
  font-family: "inter-variable";
  font-weight: 600;
  justify-content: center;
  gap: 15px;
  align-items: center;
  color: #000;
  transition: all 0.2s ease-in-out !important;
}
.cta {
  transition: all 0.2s ease-in-out !important;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.cta:hover .cta-top i {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #ffbd00;
  transition: all 0.2s ease-in-out !important;
}
.cta:hover p {
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out !important;
  box-shadow:
    #ffbd00 0px 20px 50px -5px inset,
    rgba(0, 0, 0, 0.3) 0px 10px 30px -10px inset;
}

.about-wrap {
  text-align: center;
  margin: 100px 0;
}
.about-wrap h2 {
  font-family: "inter-variable", sans-serif;
  font-variation-settings:
    "wght" 500,
    "slnt" -10;
  font-size: 20px;
}
.about-wrap h1 {
  font-family: "inter-variable", sans-serif;
  font-variation-settings:
    "wght" 700,
    "slnt" 0;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px;
  margin-top: 5px;
}
.about-wrap img {
  margin: 20px;
  max-width: 100%;
}

.contact-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
}
.contact-icons i {
  padding: 15px;
  border-radius: 25px;
  color: #fecf01;
  background-color: #000;
}
.contact-icons i.fa-solid.fa-location-dot {
  padding: 15px 17px;
}

.equip-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0 100px;
}
.equip {
  background-color: #fecf01;
  padding: 20px;
  text-align: center;
  font-family: "inter-variable";
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  transition: all 0.2s ease-in-out !important;
}
.equip:hover {
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out !important;
  box-shadow:
    #ffbd00 0px 20px 50px -5px inset,
    rgba(0, 0, 0, 0.3) 0px 10px 30px -10px inset;
}

.sub-wrapper {
  display: flex;
  margin: 100px auto;
  gap: 4vw;
}
.subpage-col {
  flex: 1;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 50px;
  margin-top: 50px;
}
.contact-info p {
  color: #000;
}
.sub-right {
  background-color: #121212;
}
h3.inter.yell-darker {
  font-family: "inter-variable", sans-serif;
  font-variation-settings:
    "wght" 500,
    "slnt" -10;
  font-size: 20px;
}

.contact-info a {
  color: #000;
  text-underline-position: autol;
}
.subpage-hero {
  height: 400px;
  background-size: cover;
  background-color: #000;
  display: flex;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  align-items: center;
  background-position: center;
  width: 100%;
  max-width: 100%;
}
.contact-hero {
  background-image: url("../siteart/contact-hero.jpg");
}
.about-hero {
  background-image: url("../siteart/about-hero.jpg");
}
.subhero-txt {
  background-color: #000000;
  padding: 25px 50px 35px;
  width: max-content;
  border: 1px solid #403b30;
}
.subhero-txt h1 {
  font-family: "inter-variable";
  color: #fff;
  font-size: 50px;
}
.rf-breadcrumbs.white,
.rf-breadcrumbs.white a {
  color: #dfa500;
  font-family: "inter-variable";
  font-size: 18px;
  font-variation-settings:
    "wght" 500,
    "slnt" -10;
}
.rf-breadcrumbs.white a {
  text-decoration-line: underline;
}
.rf-breadcrumbs.white:hover a {
  color: #fecf01;
}
.custom-form h2 {
  font-size: 50px;
}
.about-sub-right {
  text-align: center;
  opacity: 0.4;
}
.about-sub-right img {
  max-width: 100%;
}
h3.inter.about-equip {
  text-align: center;
  font-size: 40px;
  padding-top: 50px;
  color: #00000000;
}
p.contact-btn {
  font-family: "inter-variable";
  font-weight: 600;
  align-items: center;
  color: #000;
  transition: all 0.2s ease-in-out !important;
}
p.contact-btn i {
  padding-left: 15px !important;
}
p.contact-btn:hover {
  color: #dfa500;
  transition: all 0.2s ease-in-out !important;
}

.menu-phone a {
  color: #fecf01;
  font-family: "inter-variable";
  font-size: 22px;
  font-variation-settings:
    "wght" 600,
    "slnt" 0;
  padding: 20px;
}

/*--------FORM STYLES--------------------*/

.custom-form input,
.custom-form textarea {
  padding: 10px;
  font-size: 14px;
  color: #fff !important;
  line-height: 40px;
  resize: none;
  outline: none;
  border: none;
  background: transparent;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  font-family: "inter-variable";
}
.custom-form input::placeholder,
.custom-form textarea::placeholder {
  color: #fff;
  /*    opacity: 0.7;*/
}
.custom-form .flex {
  display: flex;
  flex-direction: column;
}
a#continue {
  display: flex;
  padding: 25px;
  font-family: "inter-variable";
  font-weight: 600;
  justify-content: center;
  gap: 15px;
  align-items: center;
  color: #000;
  background-color: #fecf01;
  transition: all 0.2s ease-in-out !important;
}
a#continue:hover {
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out !important;
  box-shadow:
    #ffbd00 0px 20px 50px -5px inset,
    rgba(0, 0, 0, 0.3) 0px 10px 30px -10px inset;
}
.CaptchaMessagePanel {
  color: #fff !important;
}
.CaptchaWhatsThisPanel a {
  color: #fecf01;
  font-family: "inter-variable";
}
button.submit {
  display: flex;
  padding: 25px;
  font-family: "inter-variable";
  font-weight: 600;
  justify-content: center;
  gap: 15px;
  align-items: center;
  color: #000;
  background-color: #fecf01;
  transition: all 0.2s ease-in-out !important;
  border: none;
  font-size: 16px;
  width: 100%;
}

/*-------- FOOTER STYLES ----------------*/
footer {
}

.footer {
  background-color: #000;
  padding: 100px 0;
}
.footer .wid95.marg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}
.foot-menu ul {
  display: flex;
  gap: 5vw;
  flex-wrap: wrap;
}
.foot-menu ul li a {
  color: #fff;
  font-family: "inter-variable";
  font-size: 15px;
}
.foot-contact {
  text-align: right;
}
.foot-addy {
  margin-bottom: 12px;
}
.foot-addy a {
  color: #fff;
  font-family: "inter-variable";
  font-size: 15px;
}
.foot-phone a {
  color: #fecf01;
  font-family: "inter-variable";
  font-size: 25px;
  font-variation-settings:
    "wght" 600,
    "slnt" 0;
}

/*----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: 1450px) {
  .cta-top h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 1310px) {
  .about-wrap h1 {
    font-size: 27px;
    line-height: 40px;
  }
  .about-wrap h2 {
    font-size: 16px;
  }
  h1.inter br {
    display: none;
  }
}
@media only screen and (max-width: 1150px) {
  .cta-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1100px) {
  .sub-wrapper.wid80 {
    width: 95%;
  }
  .equip-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .foot-menu ul li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 900px) {
  .sub-wrapper {
    flex-direction: column;
  }
  .flex-container {
    display: flex;
    flex-direction: column-reverse;
  }
  .contact-info {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .subpage-hero .wid80 {
    width: 95%;
  }
  .hero {
    height: 400px;
  }
  .subhero-txt h1 {
    font-size: 35px;
  }
  .subhero-txt {
    place-self: center;
    padding: 20px 40px 25px;
  }
  .custom-form h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 780px) {
  .equip-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .equip {
    font-size: 14px;
    padding: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .cta-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero-bott h3.inter.uppercase.black {
    text-transform: capitalize !important;
    line-height: 25px;
  }
  .cta-top {
    height: 280px;
  }
  .hero {
    height: 300px;
  }
  .footer .wid95.marg {
    flex-wrap: wrap;
    text-align-last: center;
    justify-content: center !important;
    flex-direction: column;
  }
  .foot-menu ul {
    justify-content: center;
    flex-direction: column;
  }
  .wid80.marg {
    width: 95%;
  }
  .head-phone {
    display: none;
  }
  .subhero-txt h1 {
    font-size: 30px;
  }
  .custom-form h2 {
    font-size: 30px;
  }
  form#form {
    padding: 40px 20px !important;
  }
}
@media only screen and (max-width: 450px) {
  .equip-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
