/**** ==========================================================================
 GOOGLE FONTS
========================================================================== ****/

/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&family=Oswald:wght@200..700&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/**** ==========================================================================
 IMPORTED CSS
========================================================================== ****/

@import url("variables.css");

@import url("components.css");

/* @import url("responsive.css"); */

/**** ==========================================================================
 CSS 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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
   margin: 0;
   padding: 0;
   border: 0;
   font: inherit;
   font-size: 100%;
   /* vertical-align: baseline; */
   font-optical-sizing: auto;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   border: none;
}

* {
   outline: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
   display: block;
}

body {
   font-size: 16px;
   font-family: var(--display-font2);
   position: relative;
   min-height: 100vh;
   overflow-x: hidden;
   background-color: #0d0d0d; /* Delete when we go live */
}

.deness {
   width: 100%;
   box-sizing: border-box;
   overflow-x: hidden;
}

/**** ==========================================================================
 NAV
========================================================================== ****/

.deness-nav-wrapper {
   z-index: 1000;
   width: 100%;
}

/* tns = Transparent Nav Style */
.tns {
   position: absolute;
   top: 0px;
}

.deness-nav {
   /* padding: 10px 0px; */
   background-color: rgba(21, 22, 23, 0);
   width: 100%;
   border-bottom: 1px solid rgba(111, 114, 113, 0.7);
   transition: background 0.15s linear, opacity 0.15s linear;
   height: 100px;
   box-sizing: border-box;
}

.deness .main-nav.uk-navbar {
   align-items: center;
   height: 100px;
}

.uk-navbar-container.deness-nav:not(.uk-navbar-transparent) {
   background: rgba(13, 13, 13, 0.95);
   /* border-bottom: 0px; */
}

.uk-navbar-item.uk-logo.dl-logo {
   height: 70px;
   min-height: 70px;
}

.uk-logo.dl-logo img {
   width: auto;
   height: 70px;
}

.deness-nav .uk-navbar-nav > li > a {
   font-size: 1.063rem;
   font-family: var(--display-font);
   text-decoration: none;
   letter-spacing: 0.05rem;
   font-weight: 450;
   color: var(--nl-color);
   height: 100px;
   border-bottom: 4px solid rgba(0, 0, 0, 0);
}

.deness-nav .uk-navbar-nav > li > a:after {
   content: "";
   position: absolute;
   bottom: -8px;
   border-top: 8px solid transparent;
   border-left: 8px solid transparent;
   border-right: 8px solid transparent;
}

.deness-nav .uk-navbar-nav > li:hover > a {
   color: var(--nl-hover-color);
   border-bottom: 4px solid var(--deness-orange);
}

.deness-nav .uk-navbar-nav > li.uk-active > a {
   color: #ffffff;
   border-bottom: 4px solid var(--deness-orange);
}

.deness-nav .uk-navbar-nav > li.uk-active > a:after {
   border-top: 8px solid var(--deness-orange);
}

.deness[data-page-type="home"] .deness-nav .uk-navbar-nav > li.nav-link--home > a,
.deness[data-page-type="purchase"] .deness-nav .uk-navbar-nav > li.nav-link--purchase > a,
.deness[data-page-type="rent"] .deness-nav .uk-navbar-nav > li.nav-link--rent > a,

.deness[data-page-type="machine"][data-mode="rental"] .deness-nav .uk-navbar-nav > li.nav-link--rent > a,
.deness[data-page-type="machine"][data-mode="purchase"] .deness-nav .uk-navbar-nav > li.nav-link--purchase > a,

.deness[data-page-type="about"] .deness-nav .uk-navbar-nav > li.nav-link--about > a,
.deness[data-page-type="contact"] .deness-nav .uk-navbar-nav > li.nav-link--contact > a,
.deness[data-page-type="rate-cards"] .deness-nav .uk-navbar-nav > li.nav-link--rates > a {
   color: #ffffff;
   border-bottom: 4px solid var(--deness-orange);
}

.deness[data-page-type="home"] .deness-nav .uk-navbar-nav > li.nav-link--home > a:after,
.deness[data-page-type="purchase"] .deness-nav .uk-navbar-nav > li.nav-link--purchase > a:after,
.deness[data-page-type="rent"] .deness-nav .uk-navbar-nav > li.nav-link--rent > a:after,

.deness[data-page-type="machine"][data-mode="purchase"] .deness-nav .uk-navbar-nav > li.nav-link--purchase > a:after,
.deness[data-page-type="machine"][data-mode="rental"] .deness-nav .uk-navbar-nav > li.nav-link--rent > a:after,

.deness[data-page-type="about"] .deness-nav .uk-navbar-nav > li.nav-link--about > a:after,
.deness[data-page-type="contact"] .deness-nav .uk-navbar-nav > li.nav-link--contact > a:after,
.deness[data-page-type="rate-cards"] .deness-nav .uk-navbar-nav > li.nav-link--rates > a:after {
   border-top: 8px solid var(--deness-orange);
}

/**** ==========================================================================
 NAV (Mobile) [Burger Menu Icon & Modal] 
========================================================================== ****/

.mobile-nav {
   background: transparent;
   margin: 0;
   z-index: 1011;
}

/* Burger Menu Icon */

.mobile-nav .burger {
   display: flex;
   align-items: center;
   flex-direction: row;
   font-size: 1.75rem;
   cursor: pointer;
   background: transparent;
   outline: 0px;
   transition: background 0.2s, font-size 0s;
}

.mobile-nav .burger > .burger-icon {
   width: 1.75rem;
   height: 0.188rem;
   border-radius: 0rem;
   background: var(--nl-color);
   transition: background 0.2s, font-size 0s;
}

.mobile-nav .burger > .burger-icon::before,
.mobile-nav .burger > .burger-icon::after {
   transition: background 0.2s, font-size 0s;
   content: "";
   display: block;
   position: absolute;
   width: 1.75rem;
   height: 0.188rem;
   background: var(--nl-color);
   border-radius: 0rem;
   transform-origin: center center;
}

.mobile-nav .burger > .burger-txt {
   font-family: var(--display-font);
   color: var(--nl-color);
   font-size: 1rem;
   margin-left: 10px;
   text-transform: uppercase;
   letter-spacing: 0.01rem;
   transition: all 0.2s 0s linear;
}

.mobile-nav .burger:hover {
   text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}

.mobile-nav .burger:hover > .burger-txt {
   color: var(--nl-hover-color);
   background: transparent;
}

.mobile-nav .burger:hover > .burger-icon {
   background: var(--nl-hover-color);
   -webkit-filter: drop-shadow(1px 1px 1px rgba(21, 22, 23, 0.25));
   filter: drop-shadow(1px 1px 1px rgba(21, 22, 23, 0.25));
}

.mobile-nav .burger:hover > .burger-icon::before,
.mobile-nav .burger:hover > .burger-icon::after {
   background: var(--nl-hover-color);
}

@media (hover: none) {
   .mobile-nav .burger:hover > .burger-txt {
      color: var(--nl-color);
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
   }

   .mobile-nav .burger:hover > .burger-icon {
      background: var(--nl-color);
      -webkit-filter: drop-shadow(0px 0px 0px rgba(21, 22, 23, 0));
      filter: drop-shadow(0px 0px 0px rgba(21, 22, 23, 0));
   }

   .mobile-nav .burger:hover > .burger-icon::before,
   .mobile-nav .burger:hover > .burger-icon::after {
      background: var(--nl-color);
   }
}

.mobile-nav .burger.unToggled > .burger-icon::before {
   margin-top: -0.6rem;
   animation: burg2topReset 0.4s linear forwards;
}

.mobile-nav .burger.unToggled > .burger-icon::after {
   margin-top: 0.6rem;
   animation: burg2bottomReset 0.4s linear forwards;
}

.mobile-nav .burger.unToggled > .burger-txt::before {
   content: "Menu";
   margin-right: 3.14px;
}

.mobile-nav .burger.toggled > .burger-txt::before {
   content: "Close";
   margin-right: 0em;
   color: var(--nl-active-color);
}

.mobile-nav .burger.toggled > .burger-icon {
   background: transparent;
}

.mobile-nav .burger.toggled > .burger-icon::before {
   animation: burg2top 0.4s linear forwards;
}

.mobile-nav .burger.toggled > .burger-icon::after {
   animation: burg2bottom 0.4s linear forwards;
}

.mobile-nav .burger.toggled > .burger-icon::before,
.mobile-nav .burger.toggled > .burger-icon::after {
   background: var(--nl-active-color);
}

.mobile-nav .burger.toggled:hover > .burger-icon {
   background: transparent;
}

.mobile-nav .burger.toggled:hover > .burger-icon::before,
.mobile-nav .burger.toggled:hover > .burger-icon::after {
   background: var(--nl-hover-color);
}

.mobile-nav .burger.toggled:hover > .burger-txt::before {
   color: var(--nl-hover-color);
}

@keyframes burg2top {
   0% {
      box-sizing: border-box;
   }

   20% {
      margin-top: 0em;
      transform: rotate(0deg);
   }

   60% {
      margin-top: 0em;
      transform: rotate(55deg);
   }

   100% {
      margin-top: 0em;
      transform: rotate(45deg);
   }
}

@keyframes burg2bottom {
   0% {
      box-sizing: border-box;
   }

   20% {
      margin-top: 0em;
      transform: rotate(0deg);
   }

   60% {
      margin-top: 0em;
      transform: rotate(-55deg);
   }

   100% {
      margin-top: 0em;
      transform: rotate(-45deg);
   }
}

@keyframes burg2topReset {
   0% {
      margin-top: 0em;
      transform: rotate(45deg);
   }

   20% {
      transform: rotate(0deg);
   }

   60% {
      margin-top: 0.8rem;
      transform: rotate(0deg);
   }

   100% {
      margin-top: 0.6rem;
      transform: rotate(0deg);
   }
}

@keyframes burg2bottomReset {
   0% {
      margin-top: 0em;
      transform: rotate(-45deg);
   }

   20% {
      transform: rotate(0deg);
   }

   60% {
      margin-top: -0.8rem;
      transform: rotate(0deg);
   }

   100% {
      margin-top: -0.6rem;
      transform: rotate(0deg);
   }
}

/* Mobile Nav Modal */

.uk-modal-page[data-page-mod="home"] .deness-nav-modal {
   top: 0em;
   background: rgba(0, 0, 0, 0.5);
   padding-top: 6.25em;
   z-index: 0;
}

.uk-modal-page .deness-nav-modal {
   top: 6.875em;
   outline: 0px;
   transition: opacity 0.5s linear;
   height: auto;
}

.uk-modal-page .deness-nav-modal.uk-open .deness-modal-dialog {
   box-shadow: 2px 5px 10px rgba(21, 22, 23, 0.25);
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog {
   background: rgba(2, 2, 2, 0.95);
   padding: 15px;
   transition: all 0.4s 0s linear;
   height: auto;
   background-blend-mode: multiply;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content {
   height: auto;
   margin: 0;
   padding: 0;
   display: flex;
   flex-wrap: wrap;
   list-style: none;
}

.nav-modal-link-wrapper {
   border: 1px solid rgba(255, 255, 255, 0.35);
   text-decoration: none;
   color: #ffffff;
}

a.nav-modal-link-wrapper:hover {
   color: var(--deness-orange);
   text-decoration: none;
}

.nav-modal-link {
   display: flex;
   justify-content: center;
   align-items: center;
}

.nav-modal-link-icon {
   margin-right: 5px;
}

.nav-modal-link-icon i {
   font-size: 30px;
}

.nav-modal-link-txt {
   font-size: 18px;
   font-family: var(--display-font);
   font-weight: 400;
   text-transform: uppercase;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content.deness-modal-nav-grid {
   margin-left: -3.125em;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content.deness-modal-nav-grid > * {
   padding-left: 3.125em;
   margin: 0;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .modal-nav-col {
   width: 50%;
   box-sizing: border-box;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .modal-nav-col:last-of-type {
   padding-top: 0;
}

@media (max-width: 729px) {
   .uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .modal-nav-col {
      width: 100%;
   }

   .uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .modal-nav-col:last-of-type {
      padding-top: 2.5em;
   }
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .deness-nav-header {
   font-family: "Blocklyn Grunge", "Oswald", Khand, "Arial Narrow", sans-serif;
   color: #35373b;
   font-size: 1.125rem;
   margin-bottom: 0.625em;
   font-style: italic;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .deness-heading-bullet {
   position: relative;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .deness-heading-bullet::before {
   content: "";
   display: inline-block;
   position: relative;
   top: calc(-0.1 * 1rem);
   vertical-align: middle;
   height: calc(0.275rem + 0.7rem);
   margin-right: calc(0.375em + 0.2em);
   border-left: calc(1rem + 0.1rem) solid #3d7cc9;
   transform: skew(-10deg);
   margin-left: 0.125em;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .deness-heading-line {
   overflow: hidden;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .deness-heading-line > * {
   display: inline-block;
   position: relative;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .deness-heading-line > ::after {
   content: "";
   position: absolute;
   top: calc(50% - (calc(0.013em + 0.05em) / 2));
   width: 2000px;
   border-bottom: calc(0.013rem + 0.05rem) solid #e5e5e5;
   left: 100%;
   margin-left: calc(0.375em + 0.3em);
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .uk-dropdown-nav > li > a:hover .mm-item-title,
.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .uk-dropdown-nav > li > a:hover .nav-icon svg path.fa-primary {
   color: #3d7cc9;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .uk-dropdown-nav > li > a:hover .nav-icon svg path.fa-secondary {
   color: #6f7271;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn {
   background-color: #e9e8e5;
   margin: 0.625em 0em;
   width: 100%;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn:hover {
   background-color: #3d7cc9;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn:hover .mm-item-title {
   color: #fcfafa;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn:hover .nav-icon svg path.fa-primary {
   color: #ffc629;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn:hover .mm-item-descr {
   color: #e9e8e5;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn:hover .nav-icon svg path.fa-secondary {
   color: #35373b;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn .mm-nav-item.s-link.mult-line {
   min-height: 64px;
   padding: 0em 1.25em;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn .mm-nav-item.s-link.mult-line .mm-item-txt-container.has-icon .nav-icon {
   margin-right: 0.75em;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn .mm-nav-item.s-link.mult-line .mm-item-txt-container.has-icon .nav-icon svg {
   height: 32px;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content li a.deness-link-btn .mm-nav-item.s-link.mult-line .mm-item-txt-container .mm-item-title {
   margin-bottom: 0.188em;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .mm-nav-item.s-link {
   min-height: 50px;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .mm-nav-item.s-link .mm-item-txt-container {
   padding: 0em 0em 0em 0em;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .mm-nav-item.s-link .mm-item-txt-container.has-icon {
   display: flex;
   align-items: center;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .mm-nav-item.s-link .mm-item-txt-container.has-icon .nav-icon {
   margin-right: 0.5em;
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .mm-nav-item.s-link .mm-item-txt-container.has-icon .nav-icon svg {
   height: 22px;
   width: auto;
   padding-bottom: 0em;
   -webkit-filter: drop-shadow(0px 0px 0px rgba(21, 22, 23, 0));
   filter: drop-shadow(0px 0px 0px rgba(21, 22, 23, 0));
}

.uk-modal-page .deness-nav-modal .deness-modal-dialog .deness-modal-content .mm-nav-item.s-link .mm-item-txt-container .mm-item-title {
   margin-bottom: 0em;
}

/**** ==========================================================================
 <MAIN> Section  
========================================================================== ****/

main {
   /* min-height: 400px; */
}

.deness[data-page-type="purchase"] main,
.deness[data-page-type="rent"] main {
   min-height: auto;
}

/**** ==========================================================================
 HERO SECTION 
========================================================================== ****/

.dl-hero-section {
   display: inline-block;
   position: relative;
   width: 100%;
   max-width: 100%;
   vertical-align: middle;
   -webkit-backface-visibility: hidden;
   background: #ffffff;
}

.dl-hero-section .dl-hero {
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   box-sizing: border-box;
   background-size: cover;
   padding: 180px 40px 80px;
}

.deness[data-page-type="purchase"] .dl-hero {
   background-image: url("/assets/images/hero/purchase-hero-bg.jpg");
   background-position: right 50%;
}

.deness.dpl[data-page-type="purchase"] .dl-hero {
   padding: 60px 40px 80px;
}

.deness[data-page-type="machine"] .dl-hero {
   background-image: url("/assets/images/hero/purchase-hero-bg.jpg");
   background-position: right 50%;
}

.deness[data-page-type="rent"] .dl-hero {
   background-image: url("/assets/images/hero/purchase-hero-bg.jpg");
   background-position: right 50%;
}

.deness[data-page-type="contact"] .dl-hero {
   background-image: url("/assets/images/hero/purchase-hero-bg.jpg");
   background-position: right 50%;
}

.deness[data-page-type="about"] .dl-hero {
   background-image: url("/assets/images/hero/purchase-hero-bg.jpg");
   background-position: right 50%;
   /* background-blend-mode: overlay; */
   /* background-color: rgba(0, 0, 0, 0.7); */
}

.deness[data-page-type="rate-cards"] .dl-hero {
   background-image: url("/assets/images/hero/purchase-hero-bg.jpg");
   background-position: right 50%;
   background-blend-mode: overlay;
   background-color: rgba(0, 0, 0, 0.4);
   padding: 160px 40px 60px;
}

.deness[data-page-type="privacy"] .dl-hero {
   background-image: url("/assets/images/hero/purchase-hero-bg.jpg");
   background-position: right 50%;
   background-blend-mode: overlay;
   background-color: rgba(0, 0, 0, 0.7);
}

.home-hero {
   max-height: 500px;
   min-height: 500px;
}

.home-hero-video {
   position: absolute;
   left: 0px;
   top: 0px;
   right: 0px;
   bottom: 0px;
   display: flex;
   justify-content: center;
   align-items: center;
   background: teal;
   height: 500px;
   min-height: 500px;
   max-height: 500px;
}

.home-hero-video video {
   width: 100%;
   height: 100%;
   box-sizing: border-box;
   object-fit: cover;
   object-position: center;
}

.home-hero-video {
   position: absolute;
   left: 0px;
   top: 0px;
   right: 0px;
   bottom: 0px;
   display: flex;
   justify-content: center;
   align-items: center;
   background: teal;
   height: 500px;
   min-height: 500px;
   max-height: 500px;
}

.home-hero-video video {
   width: 100%;
   height: 100%;
   box-sizing: border-box;
   object-fit: cover;
   object-position: center;
}

.home-hero-video > .grad-top {
   position: absolute;
   left: 0px;
   right: 0px;
   top: 0px;
   height: 160px;
   background: linear-gradient(to top, transparent, black);
}

.home-hero-video > .overlay {
   position: absolute;
   left: 0px;
   right: 0px;
   top: 0px;
   bottom: 0px;
   background-color: rgba(0, 0, 0, 0.5);
}

.hero-txt-wrapper {
   z-index: 999;
   display: flex;
   align-items: center;
   flex-direction: column;
}

.deness[data-page-type="home"] .hero-txt-wrapper {
   /* padding: 1.875em 1.5em 0em; */
}

.dl-hero-subheader,
.dl-hero-subheader-alt {
   color: #ffffff;
   font-family: var(--display-font2);
   font-size: 2.5rem;
   font-style: italic;
   line-height: 1.2;
   font-weight: 900;
   text-transform: uppercase;
   text-shadow: 1px 3px 0 rgba(0, 0, 0, 0.9);
   text-align: center;
}

.dl-hero-header,
.dl-hero-header-alt {
   color: #ffffff;
   font-family: var(--display-font2);
   font-size: 3.5rem;
   font-style: italic;
   font-weight: 900;
   line-height: 1.2;
   text-transform: uppercase;
   text-align: center;
   text-shadow: 1px 3px 0 rgba(0, 0, 0, 0.9);
}

.deness[data-page-type="home"] .dl-hero-header,
.deness[data-page-type="home"] .dl-hero-header-alt {
   /* margin-bottom: 30px; */
}

.deness[data-page-type="home"] .dl-button-wrapper {
   margin-top: 30px;
   flex-wrap: wrap;
   row-gap: 15px;
}

.dl-button-wrapper {
   margin: 0;
   text-align: center;
   display: flex;
   column-gap: 30px;
   align-items: center;
   justify-content: center;
}

@media (max-width: 812px) {
   .dl-hero-header,
   .dl-hero-header-alt {
      font-size: 6vw;
   }

   .dl-hero-subheader,
   .dl-hero-subheader-alt {
      font-size: 5vw;
   }
}

@media (max-width: 767px) {
   .home-hero {
      /* max-height: 400px; */
      /* min-height: 400px; */
   }

   .home-hero-video > .grad-top {
      display: none;
   }
}

/**** ==========================================================================
 FEATURED EQUIPMENT (for purchase) [HOME]  
========================================================================== ****/

.featured-equipment-section {
   background-color: #0d0d0d;
   width: 100%;
}

.featured-equipment-section-header {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 60px 0px 0px;
}

.dl-circle {
   display: block;
   width: 32px;
   height: auto;
   margin-bottom: 5px;
}

.feat-section-header-txt {
   position: relative;
   font-size: 36px;
   color: #ffffff;
   font-family: var(--display-font2);
   line-height: 1.1;
   font-weight: 300;
   text-transform: uppercase;
   letter-spacing: 0.35rem;
   text-shadow: 1px 3px 0 rgba(0, 0, 0, 0.9);
   text-align: center;
}

.header-rule {
   margin: 20px 0px 10px 0px;
   height: 4px;
   width: 80px;
   background-color: rgba(255, 255, 255, 0.25);
}

.featured-equipment-section-footer {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 0px 0px 60px;
}

.feat-equip-txt,
.rent-equip-txt {
   position: relative;
   font-size: 1.125rem;
   font-family: var(--display-font2);
   line-height: 1.3;
   font-weight: 400;
   text-transform: uppercase;
   letter-spacing: 0.15rem;
   text-align: center;
}

.feat-equip-txt {
   color: rgba(255, 255, 255, 0.5);
}

.featured-equipment-content-wrapper {
   width: 100%;
   padding: 40px 0px;
}

.featured-equipment-content {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   margin: 0;
   padding: 0;
   width: 100%;
}

.featured-equipment-item-wrapper {
   position: relative;
   max-width: 100%;
   width: calc(100% / 3);
   aspect-ratio: 4 / 3;
   display: block;
}

.feat-equip-item {
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   max-width: 100%;
   width: 100%;
   border: 2px solid transparent;
   transition: cubic-bezier(0.5, 0.2, 0.2, 0.75) 0.5s;
}

.equip-item-overlay {
   background: linear-gradient(180deg, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.65) 50%, rgba(13, 13, 13, 0) 100%);
   position: absolute;
   top: 2px;
   left: 2px;
   width: calc(100% - 4px);
   height: 50%;
   z-index: 2;
}

a.feat-equip-item {
   text-decoration: none;
   cursor: pointer;
}

a.feat-equip-item:hover {
   border-color: #fcfcfc;
   text-decoration: none;
}

.feat-equip-img {
   display: block;
   width: 100%;
   z-index: 1;
}

.feat-equip-item-content {
   position: absolute;
   top: 0;
   left: 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   height: 100%;
   z-index: 3;
}

.feat-equip-header-wrapper {
   display: block;
   width: 100%;
}

.feat-equip-header {
   padding: 20px 20px 0px;
}

.feat-equip-footer-wrapper {
   display: block;
   align-self: flex-end;
   background: rgba(242, 111, 33, 0.75);
   background: linear-gradient(0deg, rgba(242, 111, 33, 1) 0%, rgba(242, 111, 33, 0.7) 50%, rgba(13, 13, 13, 0) 100%);
   width: 100%;
}

.feat-equip-footer {
   padding: 50px 20px 20px;
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
}

.feat-equip-item-year {
   position: relative;
   font-size: 16px;
   color: var(--deness-orange);
   font-family: var(--display-font2);
   font-style: italic;
   line-height: 1.1;
   font-weight: 500;
   text-transform: uppercase;
   text-shadow: 1px 3px 0 rgba(0, 0, 0, 0.9);
   text-align: center;
}

.feat-equip-item-brand {
   position: relative;
   font-size: 16px;
   color: var(--deness-orange);
   font-family: var(--display-font2);
   font-style: italic;
   line-height: 1.1;
   font-weight: 900;
   text-transform: uppercase;
   text-shadow: 1px 1.5px 1px rgba(0, 0, 0, 0.9);
   text-align: center;
   letter-spacing: 0.1rem;
}

.feat-equip-item-model {
   position: relative;
   font-size: 36px;
   color: #ffffff;
   font-family: var(--display-font2);
   line-height: 1.1;
   font-weight: 300;
   text-transform: uppercase;
   letter-spacing: 0.35rem;
   text-shadow: 1px 3px 0 rgba(0, 0, 0, 0.9);
   text-align: center;
}

.feat-equip-item-price {
   position: relative;
   font-size: 36px;
   color: #ffffff;
   font-family: var(--display-font);
   line-height: 1;
   font-weight: 700;
   text-transform: uppercase;
   text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
   text-align: right;
}

.feat-equip-item-details {
   font-family: var(--copy-font);
   font-optical-sizing: auto;
   position: relative;
   font-size: 16px;
   color: #ffffff;
   line-height: 1.3;
   font-weight: 550;
   text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.9);
   text-align: right;
}

.feat-equip-details {
   display: flex;
   flex-direction: column;
}

.feat-equip-details p,
.fei-hours {
   font-family: var(--copy-font);
   font-optical-sizing: auto;
   position: relative;
   color: rgba(0, 0, 0, 0.75);
   text-align: right;
   text-transform: uppercase;
   font-style: italic;
   letter-spacing: 0.02rem;
}

.feat-equip-details p {
   font-size: 15px;
   line-height: 1;
   font-weight: 700;
   margin: 0px 0px 1px;
   font-variation-settings: "wdth" 75;
}

.fei-hours {
   font-size: 22px;
   line-height: 1.1;
   font-weight: 800;
   font-variation-settings: "wdth" 75;
}

@media (max-width: 1300px) {
   .feat-equip-footer {
      padding: 30px 20px 20px;
   }
}

@media (max-width: 449px) {
   .featured-equipment-content {
      padding: 0px 30px;
   }
}

@media (max-width: 530px) {
   .featured-equipment-content {
      padding: 0px 30px !important;
   }
}

@media (max-width: 759px) {
   .feat-equip-img {
      box-sizing: border-box;
   }

   .featured-equipment-content {
      flex-direction: column;
      padding: 0px 80px;
   }
   .featured-equipment-item-wrapper {
      width: 100%;
      margin-bottom: 30px;
   }

   .feat-equip-item {
      border: 2px solid rgba(252, 252, 252, 0.35);
   }

   .feat-equip-item-content {
      box-sizing: border-box;
   }

   .feat-equip-footer {
      box-sizing: border-box;
   }
}

@media (min-width: 760px) and (max-width: 870px) {
   .feat-equip-footer {
      padding: 20px 20px 20px;
   }

   .feat-equip-item-model {
      font-size: 4vw;
   }

   .feat-equip-item-price {
      font-size: 28px;
   }

   .feat-equip-details p {
      font-size: 14px;
   }

   .fei-hours {
      font-size: 18px;
   }
}

/**** ==========================================================================
 STREAMLINED CLIENT EXPERIENCE 
========================================================================== ****/

.streamlined-section {
   background-color: #333333;
   background-image: url("/assets/images/streamlined-ex-bg.jpg");
   width: 100%;
   min-height: 400px;
   display: flex;
   align-items: center;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   overflow-x: hidden;
}

.streamlined-container {
   display: flex;
   flex-direction: column;
   justify-content: start;
   align-items: center;
   padding: 80px 80px;
   width: 100%;
}

.streamlined-section-header {
   box-sizing: border-box;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 0px;
   margin-bottom: 40px;
   width: auto;
   max-width: 100%;
}

.streamlined-section-header .dl-circle {
   display: block;
   width: 32px;
   height: auto;
   margin-bottom: 5px;
}

.streamlined-section-header-txt-top,
.streamlined-section-header-txt-bot {
   position: relative;
   font-family: var(--display-font);
   text-transform: uppercase;
   text-shadow: 1px 3px 0 rgba(0, 0, 0, 0.9);
   text-align: center;
}

.streamlined-section-header-txt-top {
   font-size: 32px;
   color: #c6c6c6;
   line-height: 1.2;
   font-weight: 300;
   letter-spacing: 0.75rem;
}

.streamlined-section-header-txt-bot {
   font-size: 48px;
   color: #ffffff;
   line-height: 1.2;
   font-weight: 700;
}

.streamlined-section-header .header-rule {
   margin: 20px 0px 0px 0px;
   height: 4px;
   width: 80px;
   background-color: rgba(255, 255, 255, 0.4);
}

.streamlined-content {
   display: flex;
   padding: 0px;
   flex: 1;
   min-width: 1px;
   box-sizing: border-box;
   width: 100%;
   max-width: 100%;
   justify-content: start;
   flex-wrap: wrap;
}

.streamlined-bullet {
   width: calc(100% / 3);
   display: flex;
   align-items: center;
   flex-direction: row;
   justify-content: center;
   padding: 20px 0px;
}

.streamlined-bullet .icon {
   font-size: 36px;
   color: rgba(242, 111, 33, 1);
   margin: 0px 15px 0px 0px;
   text-shadow: 0.5px 1.5px 0 rgba(0, 0, 0, 0.9);
}

.streamlined-bullet-txt {
   font-family: var(--display-font);
   font-size: 1.25rem;
   font-weight: 400;
   color: #ffffff;
   text-transform: uppercase;
   padding: 0px;
   margin: 0px;
   text-shadow: 0.5px 1.5px 0 rgba(0, 0, 0, 0.9);
}

@media (min-width: 768px) and (max-width: 1199px) {
   .streamlined-container {
      padding: 80px 40px;
   }

   .streamlined-bullet {
      width: 50%;
      flex-direction: column;
   }

   .streamlined-bullet .icon {
      font-size: 40px;
      margin: 0px 0px 6px 0px;
   }

   .streamlined-section-header {
      margin-bottom: 50px;
   }
}

@media (max-width: 767px) {
   .streamlined-content {
      display: block;
      width: auto;
   }

   .streamlined-container {
      padding: 80px 40px;
   }

   .streamlined-bullet {
      width: auto;
      flex-direction: row;
      justify-content: flex-start;
   }

   .streamlined-bullet .icon {
      font-size: 32px;
      margin: 0px 15px 0px 0px;
   }

   .streamlined-section-header {
      margin-bottom: 50px;
   }
}

@media (max-width: 450px) {
   .streamlined-container {
      padding: 80px 50px;
   }

   .streamlined-bullet {
      width: auto;
      flex-direction: column;
      justify-content: center;
   }

   .streamlined-bullet .icon {
      font-size: 40px;
      margin: 0px 0px 15px 0px;
   }

   .streamlined-bullet-txt {
      text-align: center;
      line-height: 1.5;
   }

   .streamlined-section-header-txt-top {
      font-size: 10vw;
      letter-spacing: 0.625rem;
   }

   .streamlined-section-header-txt-bot {
      font-size: 16vw;
   }
}

/**** ==========================================================================
 FEATURED RENTALS
========================================================================== ****/

.rent-equipment-section {
   background-color: #ffffff;
   width: 100%;
   padding: 0px 0px;
}

.rent-equipment-section-header {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 60px 0px 0px;
}

.dl-circle {
   display: block;
   width: 32px;
   height: auto;
   margin-bottom: 5px;
}

.rent-section-header-txt {
   position: relative;
   font-size: 36px;
   color: #0d0d0d;
   font-family: var(--display-font2);
   line-height: 1.1;
   font-weight: 300;
   text-transform: uppercase;
   letter-spacing: 0.35rem;
   text-align: center;
}

.rent-header-rule {
   margin: 20px 0px 10px 0px;
   height: 4px;
   width: 80px;
   background-color: rgba(13, 13, 13, 0.25);
}

.rent-equipment-section-footer {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 0px 15px 60px;
}

.rent-equip-txt {
   color: rgba(13, 13, 13, 0.65);
}

.rent-equipment-content-wrapper {
   width: 100%;
   padding: 40px 0px 40px;
}

.rent-equipment-content {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   margin: 0;
   padding: 0;
   width: 100%;
}

.rent-equipment-item-wrapper {
   position: relative;
   max-width: 100%;
   width: calc(100% / 3);
   aspect-ratio: 4 / 3;
   display: block;
}

.rent-equip-item {
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   max-width: 100%;
   width: 100%;
   border: 2px solid transparent;
   transition: cubic-bezier(0.5, 0.2, 0.2, 0.75) 0.5s;
}

.equip-item-overlay {
   background: linear-gradient(180deg, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.65) 50%, rgba(13, 13, 13, 0) 100%);
   position: absolute;
   top: 2px;
   left: 2px;
   width: calc(100% - 4px);
   height: 50%;
   z-index: 2;
}

a.rent-equip-item {
   text-decoration: none;
   cursor: pointer;
}

a.rent-equip-item:hover {
   border-color: var(--deness-orange);
   text-decoration: none;
}

.rent-equip-img {
   display: block;
   width: 100%;
   z-index: 1;
}

.rent-equip-item-content {
   position: absolute;
   top: 0;
   left: 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   height: 100%;
   z-index: 3;
}

.rent-equip-header-wrapper {
   display: block;
   width: 100%;
}

.rent-equip-header {
   padding: 20px 20px 0px;
}

.rent-equip-footer-wrapper {
   display: block;
   align-self: flex-end;
   background: rgba(13, 13, 13, 0.75);
   background: linear-gradient(0deg, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.7) 50%, rgba(13, 13, 13, 0) 100%);
   width: 100%;
}

.rent-equip-footer {
   padding: 50px 20px 20px;
   display: flex;
   justify-content: center;
   align-items: flex-end;
}

.rent-equip-item-year {
   position: relative;
   font-size: 16px;
   color: var(--deness-orange);
   font-family: var(--display-font2);
   font-style: italic;
   line-height: 1.1;
   font-weight: 500;
   text-transform: uppercase;
   text-shadow: 1px 3px 0 rgba(0, 0, 0, 0.9);
   text-align: center;
}

.rent-equip-item-brand {
   position: relative;
   font-size: 16px;
   color: var(--deness-orange);
   font-family: var(--display-font2);
   font-style: italic;
   line-height: 1.1;
   font-weight: 900;
   text-transform: uppercase;
   text-shadow: 1px 1.5px 1px rgba(0, 0, 0, 0.9);
   text-align: center;
   letter-spacing: 0.1rem;
}

.rent-equip-item-model {
   position: relative;
   font-size: 36px;
   color: #ffffff;
   font-family: var(--display-font2);
   line-height: 1.1;
   font-weight: 300;
   text-transform: uppercase;
   letter-spacing: 0.35rem;
   text-shadow: 1px 3px 0 rgba(0, 0, 0, 0.9);
   text-align: center;
}

.rent-equip-item-price {
   position: relative;
   font-size: 36px;
   color: #ffffff;
   font-family: var(--display-font);
   line-height: 1;
   font-weight: 700;
   text-transform: uppercase;
   text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
   text-align: right;
}

.rent-equip-item-details {
   font-family: var(--copy-font);
   font-optical-sizing: auto;
   position: relative;
   font-size: 16px;
   color: #ffffff;
   line-height: 1.3;
   font-weight: 550;
   text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.9);
   text-align: right;
}

.rent-equip-details {
   display: flex;
   flex-direction: column;
}

.rent-equip-details:first-of-type {
   margin-right: 25px;
   padding-right: 25px;
   border-right: 1px solid rgba(252, 252, 252, 0.5);
}

.rent-equip-duration,
.rent-equip-price {
   position: relative;
   color: rgba(0, 0, 0, 0.75);
   text-align: center;
   text-transform: uppercase;
   letter-spacing: 0.02rem;
}

.rent-equip-duration.rt,
.rent-equip-price.rt {
   text-align: right;
}

.rent-equip-duration {
   font-size: 15px;
   font-family: var(--copy-font);
   font-optical-sizing: auto;
   color: #ffffff;
   line-height: 1;
   font-weight: 700;
   margin: 0px 0px 1px;
   font-variation-settings: "wdth" 75;
   font-style: italic;
   text-shadow: 0.5px 1px 1px rgba(0, 0, 0, 0.85);
}

.rent-equip-price {
   font-size: 26px;
   color: #ffffff;
   font-family: var(--display-font);
   line-height: 1;
   font-weight: 700;
   text-transform: uppercase;
   text-shadow: 1px 1.5px 1px rgba(0, 0, 0, 0.85);
   text-align: right;
}

.rental-card-cta {
   background-color: #0d0d0d;
   width: 100%;
   padding: 0px 0px;
   background-image: url("/assets/images/rental-line-card-cta-bg.jpg");
   background-size: cover;
   background-repeat: no-repeat;
   background-position: top right;
   overflow: hidden;
}

@media (max-width: 1300px) {
   .rent-equip-footer {
      padding: 30px 20px 20px;
   }
}

@media (max-width: 449px) {
   .rent-equipment-content {
      padding: 0px 30px;
   }
}

@media (max-width: 530px) {
   .rent-equipment-content {
      padding: 0px 30px !important;
   }
}

@media (max-width: 759px) {
   .rent-equip-img {
      box-sizing: border-box;
   }

   .rent-equipment-content {
      flex-direction: column;
      padding: 0px 80px;
   }

   .rent-equipment-item-wrapper {
      width: 100%;
      margin-bottom: 30px;
   }

   .rent-equip-item {
      border: 2px solid rgba(13, 13, 13, 0.25);
   }

   .rent-equip-item-content {
      box-sizing: border-box;
   }

   .rent-equip-footer {
      box-sizing: border-box;
   }
}

@media (min-width: 760px) and (max-width: 870px) {
   .rent-equip-footer {
      padding: 20px 20px 20px;
   }

   .rent-equip-item-model {
      font-size: 4vw;
   }

   .rent-equip-duration {
      font-size: 14px;
   }

   .rent-equip-price {
      font-size: 22px;
   }
}

/**** ==========================================================================
 LINE CARDS SECTION 
========================================================================== ****/

.cta-section {
   background-color: #1d1d1d;
   width: 100%;
   padding: 0px 0px;
   background-image: url("/assewt/image/rental-line-card-cta-bg.jpg");
   background-size: cover;
   background-repeat: no-repeat;
   background-position: top right;
   overflow: hidden;
}

.cta-wrapper {
   padding: 0px 80px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

@media (min-width: 1781px) {
   .cta-wrapper {
      padding: 0px 400px;
   }
}

@media (min-width: 1381px) and (max-width: 1780px) {
   .cta-wrapper {
      padding: 0px 250px;
   }
}

@media (min-width: 1180px) and (max-width: 1380px) {
   .cta-wrapper {
      padding: 0px 160px;
   }
}

@media (max-width: 767px) {
   .cta-wrapper {
      padding: 0px 30px;
   }
}

@media (min-width: 585px) and (max-width: 767px) {
   .cta-wrapper {
      padding: 0px 30px;
   }
}

@media (min-width: 470px) and (max-width: 584px) {
   .cta-wrapper {
      padding: 20px 0px 20px 15px;
   }

   .cta-img {
      margin-right: -70px;
   }
}

@media (max-width: 469px) {
   .cta-wrapper {
      padding: 20px 0px 20px 10px;
   }

   .cta-img {
      margin-right: -130px;
   }
}

.dl-cta {
   margin-right: 35px;
   z-index: 10;
}

.cta-txt-wrapper {
   display: block;
   margin-bottom: 15px;
}

.cta-txt-main {
   font-size: 1.875rem;
   line-height: 1.1;
   color: #ffffff;
   font-family: var(--display-font2);
   font-weight: 600;
   margin-bottom: 4px;
   text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.35);
}

.cta-txt-sm {
   font-size: 0.875rem;
   line-height: 1.1;
   color: #ffffff;
   font-family: var(--copy-font);
   font-optical-sizing: auto;
   font-weight: 500;
   font-style: italic;
   text-transform: uppercase;
   text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.35);
}

.dl-cta-button-wrapper {
   display: block;
   width: 100%;
   max-width: 230px;
   height: fit-content;
   position: relative;
}

.cta-img {
   box-sizing: border-box;
}

.cta-img img {
   width: 250px;
   height: auto;
   box-shadow: -50px 50px 50px 0px rgba(0, 0, 0, 0.5);
   transform: rotate(15deg) translate(0px, 0px);
}

/**** ==========================================================================
 FINANCING CTA SECTION 
========================================================================== ****/

.financing-banner-wrap {
   background-image: url(/assets/images/financing-banner-bg.jpg);
   background-color: var(--deness-orange);
   background-blend-mode: multiply;
   background-size: cover;
   position: relative;
   z-index: 1;
   padding: 65px 0 75px;
   display: block;
}

.dl-hero-header-finance {
   color: #ffffff;
   font-family: var(--display-font);
   font-size: 1.875rem;
   font-weight: 500;
   line-height: 1.2;
   text-transform: uppercase;
   text-align: center;
   text-shadow: 0px 1px 0 rgba(0, 0, 0, 0.35);
   margin-bottom: 10px;
}

.dl-hero-txt-finance {
   color: #ffffff;
   font-family: var(--copy-font);
   font-optical-sizing: auto;
   font-size: 1.25rem;
   font-weight: 500;
   line-height: 1.2;
   text-align: center;
   text-shadow: 0px 1px 0 rgba(0, 0, 0, 0.35);
   margin-bottom: 20px;
}

/**** ==========================================================================
 ABOUT PAGE
========================================================================== ****/

.dl-subnav {
   width: 100%;
}

.dl-subnav-bar {
   padding: 10px 40px;
   background-color: var(--deness-orange);
}

.dl-subnav-container {
   width: 100%;
}

.dl-subnav-container.uk-navbar-container:not(.uk-navbar-transparent) {
   background: none;
}

.dl-subnav.uk-subnav li,
.dl-subnav.uk-subnav li a {
   font-family: var(--display-font);
   font-size: 1rem;
   font-weight: 500;
   letter-spacing: 0.02rem;
}

.dl-subnav.uk-subnav,
.dl-subnav.uk-subnav > * > :first-child {
   padding: 6px 12px;
   color: rgba(0, 0, 0, 0.5);
}

.dl-subnav.uk-subnav.uk-subnav-pill {
   justify-content: center;
}

.dl-subnav.uk-subnav > * > a:hover {
   background-color: rgba(255, 255, 255, 0.25);
   color: rgba(0, 0, 0, 1);
}

.dl-subnav.uk-subnav.uk-subnav-pill > .uk-active > a {
   background-color: var(--dark-gray);
   color: #fff;
}

.about-sections {
   margin: 0px auto;
   /* overflow-x: hidden; */
}

#our-machines.about-sections.dk {
   background-color: #f5f5f5;
   /* overflow-y: hidden; */
}

.dl-section-copy {
   padding: 50px 40px;
}

.dl-section-copy.txt-rt {
   padding: 50px 70px;
}

.dl-section-copy,
.dl-section-img {
   width: 50%;
}

.dl-section-img {
   /* overflow: hidden; */
   height: 100%;
}

.dl-section-img img {
   width: 100%;
   height: 840px;
   object-fit: cover;
   max-inline-size: 100%;
   /* block-size: auto; */
}

.dl-section-video {
   /* overflow: hidden; */
   width: 50%;
}

.dl-section-video video {
   width: 100%;
   height: auto;
   max-height: 840px;
   object-fit: cover;
   position: relative;
}

.about-sections.dk .dl-section-header {
   color: var(--deness-orange);
}

.dl-section-header {
   font-size: 2.375rem;
   font-family: var(--display-font2);
   color: rgba(13, 13, 13, 1);
   font-weight: 800;
   text-transform: uppercase;
   margin-bottom: 20px;
}

.dl-section-copy p {
   font-size: 1.063rem;
   line-height: 1.6;
   font-family: var(--copy-font);
   color: rgba(13, 13, 13, 1);
   font-weight: 500;
   margin-bottom: 1.5rem;
}

.about-sections.dk .dl-section-copy p {
   color: #ffffff;
}

#our-machines.about-sections.dk .dl-section-copy p {
   color: #131313;
}

.dl-section-copy p:last-of-type {
   margin-bottom: 0px;
}

#our-machines .dl-section-content {
   /* max-height: 776px; */
   overflow-y: hidden;
}

/**** ==========================================================================
 CONTACT PAGE
========================================================================== ****/

.contact-info {
   background-color: #f5f5f5;
}

@media (min-width: 1360px) {
   #contact-info .dl-section-copy {
      padding: 50px 80px;
   }
}

.dl-contact-card {
   display: flex;
   align-items: center;
   max-height: 200px;
   overflow-y: hidden;
   background-color: #ffffff;
   /* border-right: 4px solid var(--deness-orange); */
}

.dl-contact-card:first-of-type {
   margin-bottom: 30px;
}

.dl-contact-card-photo {
   /* height: auto;
   width: 160px; */
   height: 192px;
   width: 160px;
}

.card-photo {
   width: 100%;
   height: 100%;
   object-fit: cover;
   padding: 2px;
}

.dl-contact-card-info {
   padding: 20px 20px;
   width: 100%;
}

.cc-name {
   display: block;
   font-family: var(--display-font2);
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--dark-gray);
   line-height: 1;
   margin-bottom: 4px;
}

.cc-job-title-wrapper {
   display: flex;
   background-color: var(--deness-orange);
   justify-content: flex-start;
   align-items: center;
}

.cc-job-title,
.dl-section-copy .cc-job-title {
   display: block;
   font-family: var(--copy-font);
   font-size: 0.875rem;
   font-weight: 600;
   color: #ffffff;
   text-transform: uppercase;
   background-color: var(--deness-orange);
   line-height: 1;
   padding: 4px 10px 4px;
}

.cc-detail {
   margin-top: 12px;
   display: block;
}

.cc-phone {
}

.cc-detail-wrapper {
   display: flex;
   column-gap: 5px;
}

.cc-detail-icon i {
   font-size: 1.125rem;
   line-height: 1;
   color: var(--dark-gray);
}

.cc-phone-number {
}

.cc-email {
   width: fit-content;
}

.cc-email-address {
}

.cc-info {
   display: block;
   font-family: var(--display-font);
   font-size: 1.063rem;
   font-weight: 500;
   /* color: var(--deness-orange); */
   color: var(--dark-gray);
   line-height: 1;
}

a.contact-me:hover {
   text-decoration: none;
}

.contact-me {
   color: var(--dark-gray);
}

a.contact-me:hover,
.contact-me:hover .cc-detail-icon i,
.contact-me:hover .cc-email-address {
   color: var(--deness-orange);
}

#map {
   margin-top: 30px;
   height: 200px;
   width: 100%;
}

.contact-map {
   margin-top: 32px;
   min-height: 56px !important;
   background-color: white;
   display: flex;
   flex-direction: row;
   /* border-right: 4px solid var(--deness-orange); */
}

.contact-map-icon {
   width: 80px;
   max-width: 80px;
   min-width: 80px;
   background-color: var(--deness-orange);
   font-size: 32px;
   color: white;
   display: flex;
   justify-content: center;
   align-items: center;
}

.contact-map-address {
   background: white;
   flex-grow: 1;
   margin: 0px 32px;
   box-sizing: border-box;
   color: black;
   line-height: 24px;
   word-spacing: 4px;
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   padding: 12px 0px;
}

.contact-map-address a {
   color: black;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
}

.contact-map-address div {
   font-family: var(--display-font2);
   font-size: 1.063rem;
   font-weight: 550;
}

.dl-section-copy p.contact-intro {
   font-family: var(--display-font2);
   font-size: 1.063rem;
   font-weight: 500;
   margin-bottom: 40px;
   border-bottom: 1px solid rgba(0, 0, 0, 0.35);
   padding-bottom: 30px;
}

/**** ==========================================================================
 RENTALS
========================================================================== ****/

.listings-grid.for-rent .mc-wrapper {
   flex-direction: column;
   row-gap: 10px;
}

/*.listings-grid.for-rent .machine-rent-price-wrapper { */
.machine-rent-price-wrapper { 
   background-color: var(--deness-orange);
   display: flex;
   height: 40px;
   justify-content: space-evenly;
   align-items: center;
}

.machine-rent-price-wrapper .mc-price {
   height: 100%;
   display: flex;
   width: 50%;
   align-items: center;
   justify-content: center;
}

.machine-rent-price-wrapper .mc-price:first-of-type {
   border-right: 1px solid rgba(0, 0, 0, 0.5);
}

/**** ==========================================================================
 RATE CARDS / LINE CARDS 
========================================================================== ****/

.line-cards {
   background-color: #f5f5f5;
   /* background-image: url(/assets/images/line-card-bg.jpg); */
   width: 100%;
   align-items: center;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   overflow-x: hidden;
}

.line-cards-container {
   display: flex;
   flex-direction: column;
   justify-content: start;
   align-items: center;
   padding: 80px 80px;
   width: 100%;
   height: 100%;
}

.line-cards-content {
   display: flex;
   flex-direction: column;
   justify-content: start;
   align-items: center;
   margin: 0;
   padding: 0;
   width: auto;
   row-gap: 20px;
}

.line-card-wrapper {
   position: relative;
   max-width: 100%;
   width: 100%;
   display: flex;
   height: auto;
}

.line-card {
   display: block;
   /* position: absolute; */
   position: relative;
   top: 0;
   left: 0;
   max-width: 100%;
   width: 100%;
   /* border: 2px solid transparent; */
   border: 2px solid rgba(252, 252, 252, 0.35);
   transition: cubic-bezier(0.5, 0.2, 0.2, 0.75) 0.5s;
}

a.line-card {
   text-decoration: none;
   cursor: pointer;
}

a.line-card:hover {
   border-color: var(--deness-orange);
   text-decoration: none;
}

a.line-card:hover .line-card-overlay {
   background-color: rgba(13, 13, 13, 0);
}

a.line-card:hover .line-card-year,
a.line-card:hover .line-card-title-2 {
   background-color: var(--deness-orange);
}

.line-card-overlay {
   background-color: rgba(13, 13, 13, 0.7);
   position: absolute;
   top: 0px;
   left: 0px;
   width: 100%;
   height: 100%;
   z-index: 2;
   transition: background-color 0.5s ease-in-out;
}

.line-card-img {
   display: block;
   width: 100%;
   height: auto;
   z-index: 1;
   max-width: 1200px;
}

@media (min-width: 561px) {
   .line-card-img {
      display: block;
   }
}

@media (min-width: 561px) {
   .line-card-img-mo {
      display: none;
   }
}

.line-card-content {
   position: absolute;
   top: 0;
   left: 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100%;
   z-index: 3;
}

.line-card-header-wrapper {
   display: block;
   width: 100%;
}

.line-card-header {
   padding: 0px 40px;
   display: flex;
   flex-direction: column;
   align-items: start;
}

.line-card-year {
   position: relative;
   font-size: 24px;
   padding: 5px 15px;
   margin-bottom: 4px;
   border-radius: 4px;
   /* background-color: #f26f21; */
   background-color: rgba(200, 200, 200, 0.2);
   color: #ffffff;
   font-family: var(--display-font2);
   font-style: italic;
   line-height: 1;
   font-weight: 900;
   text-transform: uppercase;
   text-shadow: 1px 1.5px 1px rgba(0, 0, 0, 0.9);
   letter-spacing: 0.1rem;
   transition: background-color 0.5s ease-in-out;
}

.line-card-title {
   position: relative;
   font-size: 40px;
   color: #ffffff;
   font-family: var(--display-font);
   line-height: 1.1;
   font-weight: 500;
   text-transform: uppercase;
   text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.9);
}

.line-card-title-2 {
   position: relative;
   font-size: 18px;
   color: #ffffff;
   font-family: var(--copy-font);
   line-height: 1;
   font-weight: 500;
   letter-spacing: 0.25rem;
   text-shadow: 1px 1.5px 0 rgba(0, 0, 0, 0.9);
   background-color: rgba(200, 200, 200, 0.2);
   display: inline-block;
   margin-top: 10px;
   padding: 8px 20px;
   border-radius: 4px;
   transition: background-color 0.5s ease-in-out;
}

/**** ==========================================================================
 FOOTER 
========================================================================== ****/

footer {
   width: 100%;
}

.footer {
   background: #1d1d1d;
   padding: 40px;
}

.footer > .inner {
   display: flex;
   flex-direction: row;
   align-items: flex-start;
   max-width: 1280px;
   margin: 0px auto;
   justify-content: space-between;
}

.footer > .inner > .logo-wrapper {
   width: 272px;
   max-width: 272px;
   width: 272px;
}

.footer > .inner > .logo-wrapper > .logo {
   height: 72px;
   display: flex;
   justify-content: flex-start;
   align-items: center;
}

.footer > .inner > .logo-wrapper > .logo > a > img {
   height: 72px;
}

.footer > .inner > .logo-wrapper > .since {
   font-weight: 500;
   color: white;
   font-size: 18px;
   color: rgb(235, 235, 235);
   color: rgba(255, 255, 255, 0.8);
   margin-top: 16px;
   line-height: 22px;
}

.footer > .inner > .logo-wrapper > .social {
   display: flex;
   justify-content: center;
   align-items: center;
   display: none;
   margin-top: 16px;
}

.footer > .inner > .logo-wrapper > .social > .items {
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
}

.footer > .inner > .logo-wrapper > .social > .items > .item {
   margin-right: 16px;
}

.footer > .inner > .logo-wrapper > .social > .items > .item:nth-child(2) {
   margin-right: 24px;
}

.footer > .inner > .logo-wrapper > .social > .items > .item a {
   color: rgba(255, 255, 255, 0.8);
   fill: currentcolor;
}

.footer > .inner > .info {
   margin-top: 0px;
}

.footer > .inner > .info > .links {
   padding: 0px 24px;
}

.footer > .inner > .info > .links > .row {
   margin: 0px;
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   align-items: center;
}

.footer > .inner > .info > .links > .row div {
   width: 50%;
   padding: 4px 0px;
}

.footer > .inner > .info > .links > .row div a {
   font-family: var(--copy-font);
   font-variation-settings: "wght" 650;
   font-size: 18px;
   word-spacing: 1px;
   letter-spacing: -0.24px;
   color: white;
   color: rgb(235, 235, 235);
   color: rgba(255, 255, 255, 0.8);
}

.footer > .inner > .info > .links > .row div a:hover {
   color: white;
}

.footer > .inner > .info > .contact {
   margin-bottom: 16px;
   padding: 0px 24px;
   padding-bottom: 16px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.33);
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   align-items: center;
}

.footer > .inner > .info > .contact .link {
   margin-bottom: 8px;
}

.footer > .inner > .info > .contact .link a {
   font-family: var(--copy-font);
   font-variation-settings: "wght" 650;
   font-size: 16px;
   word-spacing: 1px;
   letter-spacing: -0.24px;
   color: #ffffff;
   color: rgb(235, 235, 235) !important;
}

.footer > .inner > .info > .contact .link a:hover {
   color: #ffffff;
}

.footer > .inner > .info > .contact > .address {
   font-family: var(--copy-font);
   font-size: 14px;
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   align-items: center;
}

.footer > .inner > .info > .contact > .address > .icon {
   width: 40px;
   max-width: 40px;
   min-width: 40px;
   height: 48px;
   max-height: 48px;
   min-height: 48px;
   margin-right: 8px;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 36px;
   color: #f26f21;
}

.footer > .inner > .info > .contact > .address div {
   font-size: 16px;
   color: white;
   color: rgb(215, 215, 215);
   color: rgba(255, 255, 255, 0.8);
}

.footer > .inner > .info > .contact > .address div a:hover {
   color: white;
}

.footer > .inner > .info > .contact > .address > .items {
   flex-grow: 1;
}

.footer > .inner > .info > .contact > .address > .inner div:nth-child(1) {
   padding-bottom: 4px;
   font-size: 16px;
   color: rgb(235, 235, 235);
   color: rgba(255, 255, 255, 0.8);
}

.footer > .inner > .info > .contact > .address > .inner div:nth-child(2) {
   display: none;
}

.footer > .inner > .info > .contact > .phone {
   display: flex;
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   align-items: center;
   margin-right: 32px;
}

.footer > .inner > .info > .contact > .phone > .icon {
   width: 40px;
   max-width: 40px;
   min-width: 40px;
   height: 48px;
   max-height: 48px;
   min-height: 48px;
   margin-right: 8px;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 36px;
   color: #f26f21;
}

.footer > .inner > .info > .contact > .phone > .items {
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   align-items: flex-start;
   max-width: fit-content;
}

.footer > .inner > .info > .contact > .phone .item:nth-child(1) {
   margin-right: 32px;
}

.footer > .inner > .info > .contact > .phone .item div:nth-child(1) {
   font-weight: 800;
   font-style: italic;
   text-transform: uppercase;
   padding-bottom: 2px;
   font-size: 20px;
   color: white;
}

.footer > .inner > .info > .contact > .phone .item div:nth-child(2) {
   font-family: var(--copy-font);
}

.footer > .inner > .info > .contact > .phone .item div:nth-child(2) a {
   color: rgb(215, 215, 215);
   font-size: 16px;
   white-space: nowrap;
}

.footer > .inner > .info > .contact > .phone .item div:nth-child(2) a:hover {
   text-shadow: none;
   color: rgb(235, 235, 235);
}

.footer > .inner > .social {
   width: 256px;
   max-width: 256px;
   width: 256px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.footer > .inner > .social > .items {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
}

.footer > .inner > .social > .items > .item {
   margin-right: 16px;
}

.footer > .inner > .social > .items > .item:nth-child(2) {
   margin-right: 24px;
}

.footer > .inner > .social > .items > .item a {
   color: rgba(255, 255, 255, 0.8);
   fill: currentcolor;
}

.footer > .legal {
   text-transform: uppercase;
   color: #999;
   font-family: "Montserrat", sans-serif;
   font-size: 12px !important;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   margin-top: 48px;
}

.footer > .legal > .copyright {
   padding-bottom: 4px;
   font-size: 12px;
}

.footer > .legal > .links div:nth-child(1) {
   margin-right: 8px;
}

.footer > .legal a {
   font-size: 12px;
   color: #d75e2a;
   margin-right: 8px;
}

@media (max-width: 1279px) {
   .footer > .inner {
      justify-content: space-around;
   }

   .footer > .inner > .logo-wrapper {
      margin-right: 64px;
   }

   .footer > .inner > .logo-wrapper > .social {
      display: block;
   }

   .footer > .inner > .social {
      display: none;
   }

   .footer > .inner > .logo-wrapper > .since {
      font-size: 14px;
      line-height: 18px;
   }

   .footer > .inner > .logo-wrapper > .logo {
      height: 56px;
   }

   .footer > .inner > .logo-wrapper > .logo > a > img {
      height: 56px;
   }

   .footer > .legal {
      flex-direction: row;
   }

   .footer > .legal > .copyright {
      padding-bottom: 0px;
      margin-right: 8px;
   }

   .footer > .inner > .info > .links > .row div a {
   }
}
@media (max-width: 1023px) {
   .footer > .inner > .info > .links > .row div a {
      font-size: 14px;
   }

   .footer > .inner > .logo-wrapper {
      width: 224px;
      max-width: 224px;
      width: 224px;
   }
}
@media (max-width: 959px) {
   .footer > .inner {
      justify-content: flex-start;
   }

   .footer > .inner > .logo-wrapper {
      margin-right: 64px;
   }

   .footer > .inner > .info {
      flex-grow: 1;
   }

   .footer > .inner > .info > .contact {
      flex-direction: column;
      align-items: flex-start;
   }

   .footer > .inner > .info > .contact > .address > .inner a {
      display: flex;
      flex-direction: row;
   }

   .footer > .inner > .info > .contact > .address > .inner a div:nth-child(2) {
      display: block;
   }

   .footer > .legal {
      flex-direction: column;
   }

   .footer > .inner > .info > .contact {
      padding: 0px;
   }

   .footer > .inner > .info > .links {
      padding: 0px;
   }
}

.footer > .small {
   display: none;
}

.footer > .small div {
   font-size: 16px;
}

.footer > .small > .logo {
   margin-bottom: 16px;
}

.footer > .small > .logo > a img {
   height: 64px;
   width: auto;
}

.footer > .small > .since {
   font-family: var(--copy-font);
   font-weight: 600;
   font-size: 16px;
   line-height: 20px;
   color: white;
}

.footer > .small > .contact {
   margin: 24px -8px;
   border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
   border-top: 1px dashed rgba(255, 255, 255, 0.5);
   padding: 16px 0px;
}

.footer > .small > .contact > .item {
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   align-items: center;
   margin: 0px 8px;
   margin-bottom: 16px;
}

.footer > .small > .contact > .item:last-child {
   margin-bottom: 0px;
}

.footer > .small > .contact > .item.phone div:nth-child(1) {
   color: rgba(255, 255, 255, 1);
}

.footer > .small > .contact > .item.phone div:nth-child(2) {
   color: rgba(255, 255, 255, 8);
}

.footer > .small > .contact > .item a {
   font-size: 16px;
   text-shadow: none;
}

.footer > .small > .contact > .item > .icon {
   width: 40px;
   max-width: 40px;
   min-width: 40px;
   height: 48px;
   max-height: 48px;
   min-height: 48px;
   margin-right: 16px;
   display: flex;
   justify-content: center;
   align-items: center;
   color: #d75e2a !important;
   font-size: 28px;
}

.footer > .small > .contact > .item > .icon i {
   font-size: 32px !important;
}

.footer > .small > .contact > .item .number div:nth-child(1) {
   font-weight: 800;
   font-style: italic;
   text-transform: uppercase;
   padding-bottom: 2px;
}

.footer > .small > .contact > .item .address div:nth-child(1) {
   padding-bottom: 4px;
}

.footer > .small > .contact > .item .address a {
   color: rgba(255, 255, 255, 8);
}

.footer > .small > .links {
   margin-bottom: 32px;
}

.footer > .small > .links > .items {
   box-sizing: border-box;
}

.footer > .small > .links > .items > .item {
   box-sizing: border-box;
}

.footer > .small > .links > .items > .item a {
   font-size: 18px;
   line-height: 28px;
   font-weight: bold;
   color: white;
}

.footer > .small > .social {
   margin-bottom: 32px;
}

.footer > .small > .social > .items {
   display: flex;
   justify-content: center;
   align-items: center;
}

.footer > .small > .social > .items > .item {
   width: 72px;
   max-width: 72px;
   min-width: 72px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.footer > .small > .social > .items > .item > a {
   color: rgba(255, 255, 255, 0.93);
   fill: currentcolor;
}

.footer > .small > .legal {
   text-transform: uppercase;
   color: #999;
}

.footer > .small > .legal > .copyright {
   font-size: 12px;
   padding-bottom: 4px;
}

.footer > .small > .legal > .links div:nth-child(1) {
   margin-right: 8px;
}

.footer > .small > .legal a {
   font-size: 12px;
   color: #d75e2a;
   margin-right: 8px;
}

@media (max-width: 719px) {
   .footer > .inner {
      display: none;
   }

   .footer > .legal {
      display: none;
   }

   .footer > .small {
      display: block;
   }

   .footer {
      padding: 32px;
   }
}
