@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap");
.splash img {
  width: 150px;
  margin: auto;
  display: block;
}

.main {
  opacity: 0;
  animation: on .6s ease-in-out 4s forwards;
}

.splash_bg {
  background: #191919;
  height: 100vh;
  width: 100vw;
  z-index: 4;
  animation: off .6s ease-in-out 4s forwards;
}

.splash {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  display: flex;
  overflow: hidden;
  z-index: 4;
  animation: off .6s ease-in-out 4s forwards;
}
.splash_logo {
  position: absolute;
  margin: -65px 0 0 -75px;
  top: 50vh;
  z-index: 5;
  left: 50vw;
  width: 150px;
  text-align: center;
  height: 150px;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  opacity: 1;
  will-change: opacity;
  animation: logo .3s ease-in 1.5s forwards, off .6s ease-in-out 3.2s forwards;
}
.splash_logo img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(51deg) brightness(93%) contrast(106%);
}
.splash_svg {
  position: relative;
  margin: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
}
.splash_svg svg {
  width: 100%;
  height: 100%;
  backface-visibility: visible;
}
.splash_svg svg rect {
  width: 100%;
  height: 100%;
  fill: #fed141;
  stroke: 0;
  -webkit-clip-path: polygon(30vw 39vh, 70vw 39vh, 70vw 61vh, 30vw 61vh);
  clip-path: polygon(30vw 39vh, 70vw 39vh, 70vw 61vh, 30vw 61vh);
  animation: expand .7s ease-in forwards 2.7s;
}
.splash_minimize {
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
}
.splash_minimize svg {
  width: 100%;
  height: 100%;
  backface-visibility: visible;
}
.splash_minimize svg rect {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
  clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
  animation: scale .2s ease-out forwards 1s, hide 1.3s ease-out forwards 1.2s;
}
@keyframes scale {
  100% {
    -webkit-clip-path: polygon(30vw 39vh, 70vw 39vh, 70vw 61vh, 30vw 61vh);
    clip-path: polygon(30vw 39vh, 70vw 39vh, 70vw 61vh, 30vw 61vh);
  }
}
@keyframes end {
  100% {
    display: none;
  }
}
@keyframes hide {
  100% {
    fill: transparent;
  }
}
@keyframes off {
  100% {
    opacity: 0;
  }
}
@keyframes on {
  100% {
    opacity: 1;
  }
}
@keyframes logo {
  100% {
    color: #292929;
  }
}
@keyframes type {
  0% {
    width: 0;
  }
}
@keyframes type2 {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 100;
  }
}
@keyframes expand {
  25% {
    -webkit-clip-path: polygon(0vw 0vh, 70vw 39vh, 70vw 61vh, 30vw 61vh);
    clip-path: polygon(0vw 0vh, 70vw 39vh, 70vw 61vh, 30vw 61vh);
    fill: white;
  }
  50% {
    -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 70vw 61vh, 30vw 61vh);
    clip-path: polygon(0vw 0vh, 100vw 0vh, 70vw 61vh, 30vw 61vh);
    fill: #fed141;
  }
  75% {
    -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 70vw 61vh, 0vw 100vh);
    clip-path: polygon(0vw 0vh, 100vw 0vh, 70vw 61vh, 0vw 100vh);
    fill: white;
  }
  100% {
    -webkit-clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
    clip-path: polygon(0vw 0vh, 100vw 0vh, 100vw 100vh, 0vw 100vh);
    fill: #fed141;
  }
}
/*body {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}*/
:root {
  --pape-yellow: #fed141;
  --transparency: rgba(255, 255, 255, 0);
}

html {
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
  height: 100%;
  margin: 0;
}

.btn-container {
  width: 200px;
  height: 100%;
  margin: 0 auto;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  font-size: 2rem;
}

.btn-yellow {
  color: black;
  background: #fed141;
  box-shadow: 0 0 0 0 rgba(255, 204, 51, 0.5);
  -webkit-animation: pulse 1.5s infinite;
}

.btn-black {
  color: white;
  background: #000;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  -webkit-animation: pulse 1.5s infinite;
}

.map-btn {
  right: 10vw;
}

.history-btn {
  left: 10vw;
}

.history-btn, .map-btn {
  position: absolute;
  bottom: 2vh;
  padding-top: 2rem;
}

.history-btn h2 {
  color: #fff;
}

.map-btn h2 {
  color: #000;
}

.pulse-button {
  margin: 50px auto;
  display: block;
  width: 150px;
  height: 150px;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  text-align: center;
  line-height: 150px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.pulse-button:hover {
  -webkit-animation: none;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(255, 204, 51, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 204, 51, 0);
  }
}
body::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
span,
img,
p {
  /* // prevent text selection on touchscreen */
  -youbkit-touch-callout: none;
  /* iOS Safari */
  -youbkit-user-select: none;
  /* Chrome 6.0+, Safari 3.1+, Edge & Opera 15+ */
  -moz-user-select: none;
  /* Firefox */
  /* IE 10+ and Edge */
  -webkit-user-select: none;
          user-select: none;
  /* Non-prefixed version,
              currently supported by Chrome and Opera */
}

header {
  width: 100%;
  position: fixed;
  transition: opacity 0.3333s;
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
}

h1,
h2 {
  text-align: center;
  text-transform: uppercase;
}

h1 {
  color: var(--pape-yellow);
  font-size: 50px;
  margin: 0;
}

h2 {
  color: white;
  font-size: 25px;
  margin: 0;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
}
.wrapper > h3 {
  color: #bfc1c3;
  text-align: center;
  margin-top: 0.3rem;
}

article {
  position: relative;
  margin: 0;
}

/******************* animations *******************/
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* NEW NEW animations */
.down {
  -webkit-animation: slide-down 0.3s ease-out;
  -moz-animation: slide-down 0.3s ease-out;
}

.up {
  -webkit-animation: slide-up 0.3s ease-out;
  -moz-animation: slide-up 0.3s ease-out;
}
.last-layer {
  z-index: 9999999;
  position: absolute;
  width: 100%;
  height: 100%;
  top: auto;
  right: 0;
  bottom: auto;
  left: 0;
  background: #000;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.last-layer.active {
  opacity: 0;
}

.left-layer {
  z-index: 9999999;
  position: absolute;
  width: 100%;
  height: 100%;
  top: auto;
  right: 100%;
  bottom: auto;
  left: auto;
  background: #fed141;
  transition: right 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: none;
}
.left-layer.active {
  display: block;
  right: -100%;
}

.left-layer--2 {
  background: #000;
  transition-delay: 0.3s;
}

.left-layer--3 {
  background: #555;
  transition-delay: 0.2s;
}

.end_to_end img {
  margin-top: 100px;
  width: 300px;
}

.header p {
  max-width: 80%;
}

div.header {
  position: fixed;
  width: 100%;
  top: 3rem;
  text-align: center;
  z-index: 2;
}

div.header h1 {
  font-size: 4.5rem;
  filter: drop-shadow(0 0 20px #000000);
}

div.header p {
  color: #fff;
  margin: 1.5rem 5rem 1.5rem;
  font-size: 1.1rem;
}

div.header h2 {
  margin-top: 4rem;
  margin-bottom: 1.3rem;
  font-size: 3rem;
  color: #fed141;
  filter: drop-shadow(0 0 20px #000000);
}

div.main {
  overflow: auto;
}

svg.divider {
  display: block;
  position: absolute;
  height: 100%;
  top: 0px;
}

.bg-triangle {
  padding: 0;
  display: flex;
  align-items: stretch;
}

.blackdiv {
  width: 100%;
  position: absolute;
  bottom: 0px;
  background-color: #000000;
  z-index: -1;
  height: 403.2px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.662745098));
}

body {
  height: 100%;
  margin: 0px;
  z-index: 0;
  background: url(../map/images/brushed_metal_bg.jpg) no-repeat;
  background-size: cover;
}

.logo_box {
  color: #fed141;
}

img.logo {
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8392156863));
  width: 340px;
}

.industry-icons,
.industry-icons2 {
  display: flex;
  justify-content: space-evenly;
}

.industry-icons {
  margin-bottom: 1.5rem;
}

.industry-icons img,
.industry-icons2 img {
  width: 100%;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(105%) drop-shadow(0 0 20px rgba(0, 0, 0, 0.8392156863));
}

.industry-icons a {
  width: 10%;
  margin: auto auto;
}

.industry-popup {
  background: #FFF;
  max-width: 85%;
  max-height: 85%;
  margin: auto;
}
.industry-popup header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  min-height: 300px;
  max-width: 100%;
  width: 100%;
  position: static;
  display: flex;
}
.industry-popup header h1 {
  width: 100%;
  text-align: center;
  font-size: 75px;
  align-self: flex-end;
  justify-self: center;
}
.industry-popup .video-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  place-items: center;
  align-items: center;
}
.industry-popup .video-row iframe {
  width: 100%;
  height: auto;
}
.industry-popup article {
  padding: 1.5rem 3rem;
}
.industry-popup article p {
  display: block;
  margin: 2rem auto;
  text-align: center;
  max-width: 60%;
}
.industry-popup .end-to-end {
  width: 305px;
  margin: 2rem auto;
  display: block;
}
.industry-popup .popup-btn {
  display: flex;
  flex-direction: row;
}
.industry-popup button.find-dealer {
  background: #fed141;
  width: auto;
  padding: 10px 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.4);
  border-width: 0;
  display: block;
  margin: 1.5rem auto;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
.industry-popup .prod-grid {
  margin-top: 3rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
.industry-popup .prod-grid > div {
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  aspect-ratio: 4/3;
}
.industry-popup .prod-grid > div h3 {
  align-self: center;
  justify-self: center;
  width: 100%;
  text-align: center;
  color: #FFF;
  z-index: 2;
  text-transform: uppercase;
}
.industry-popup .prod-grid > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.industry-popup footer {
  background: url(../map/images/brushed_metal_bg.jpg) no-repeat;
  background-size: cover;
}
.industry-popup footer img {
  display: block;
  margin: 0 auto;
  height: 95px;
  width: 95px;
}

#mh-popup header {
  background-image: url("../images/popups/Material Handling/MH_Header.jpg");
}
#mh-popup .img1 {
  background-image: url("../images/popups/Material Handling/mh-grid-1.jpg");
}
#mh-popup .img2 {
  background-image: url("../images/popups/Material Handling/mh-grid-2.jpg");
}
#mh-popup .img3 {
  background-image: url("../images/popups/Material Handling/mh-grid-3.jpg");
}
#mh-popup .img4 {
  background-image: url("../images/popups/Material Handling/mh-grid-4.jpg");
}
#mh-popup .img5 {
  background-image: url("../images/popups/Material Handling/mh-grid-5.jpg");
}
#mh-popup .img6 {
  background-image: url("../images/popups/Material Handling/mh-grid-6.jpg");
}

#pmcf-popup header {
  background-image: url("../images/popups/Construction/PMCF_Header.jpg");
}
#pmcf-popup .img1 {
  background-image: url("../images/popups/Construction/img1.jpg");
}
#pmcf-popup .img2 {
  background-image: url("../images/popups/Construction/img2.jpg");
}
#pmcf-popup .img3 {
  background-image: url("../images/popups/Construction/img3.jpg");
}
#pmcf-popup .img4 {
  background-image: url("../images/popups/Construction/img4.jpg");
}
#pmcf-popup .img5 {
  background-image: url("../images/popups/Construction/img5.jpg");
}
#pmcf-popup .img6 {
  background-image: url("../images/popups/Construction/img6.jpg");
}
#pmcf-popup .prod-grid > div::before {
  background: rgba(0, 0, 0, 0);
}

#mining-popup header {
  background-image: url("../images/popups/mining/Header.jpg");
}
#mining-popup .img1 {
  background-image: url("../images/popups/mining/img1.jpg");
}
#mining-popup .img2 {
  background-image: url("../images/popups/mining/img2.jpg");
}
#mining-popup .img3 {
  background-image: url("../images/popups/mining/img3.jpg");
}
#mining-popup .img4 {
  background-image: url("../images/popups/mining/img4.jpg");
}
#mining-popup .img5 {
  background-image: url("../images/popups/mining/img5.jpg");
}
#mining-popup .img6 {
  background-image: url("../images/popups/mining/img6.jpg");
}
#mining-popup .prod-grid > div::before {
  background: rgba(0, 0, 0, 0);
}

#agriculture-popup header {
  background-image: url("../images/popups/agriculture/Header.jpg");
}
#agriculture-popup .img1 {
  background-image: url("../images/popups/agriculture/img1.jpg");
}
#agriculture-popup .img2 {
  background-image: url("../images/popups/agriculture/img2.jpg");
}
#agriculture-popup .img3 {
  background-image: url("../images/popups/agriculture/img3.jpg");
}
#agriculture-popup .img4 {
  background-image: url("../images/popups/agriculture/img4.jpg");
}
#agriculture-popup .img5 {
  background-image: url("../images/popups/agriculture/img5.jpg");
}
#agriculture-popup .img6 {
  background-image: url("../images/popups/agriculture/img6.jpg");
}

#drilling-popup header {
  background-image: url("../images/popups/drilling/Header.jpg");
}
#drilling-popup .img1 {
  background-image: url("../images/popups/drilling/img1.jpg");
}
#drilling-popup .img2 {
  background-image: url("../images/popups/drilling/img2.jpg");
}
#drilling-popup .img3 {
  background-image: url("../images/popups/drilling/img3.jpg");
}
#drilling-popup .img4 {
  background-image: url("../images/popups/drilling/img4.jpg");
}
#drilling-popup .img5 {
  background-image: url("../images/popups/drilling/img5.jpg");
}
#drilling-popup .img6 {
  background-image: url("../images/popups/drilling/img6.jpg");
}

#forestry-popup header {
  background-image: url("../images/popups/forestry/Header.jpg");
}
#forestry-popup .img1 {
  background-image: url("../images/popups/forestry/img1.jpg");
}
#forestry-popup .img2 {
  background-image: url("../images/popups/forestry/img2.jpg");
}
#forestry-popup .img3 {
  background-image: url("../images/popups/forestry/img3.jpg");
}
#forestry-popup .img4 {
  background-image: url("../images/popups/forestry/img4.jpg");
}
#forestry-popup .img5 {
  background-image: url("../images/popups/forestry/img5.jpg");
}
#forestry-popup .img6 {
  background-image: url("../images/popups/forestry/img6.jpg");
}

#landscaping-popup header {
  background-image: url("../images/popups/landscaping/Header.jpg");
}
#landscaping-popup .img1 {
  background-image: url("../images/popups/landscaping/img1.jpg");
}
#landscaping-popup .img2 {
  background-image: url("../images/popups/landscaping/img2.jpg");
}
#landscaping-popup .img3 {
  background-image: url("../images/popups/landscaping/img3.jpg");
}
#landscaping-popup .img4 {
  background-image: url("../images/popups/landscaping/img4.jpg");
}
#landscaping-popup .img5 {
  background-image: url("../images/popups/landscaping/img5.jpg");
}
#landscaping-popup .img6 {
  background-image: url("../images/popups/landscaping/img6.jpg");
}

#residential-popup header {
  background-image: url("../images/popups/residential/Header.jpg");
}
#residential-popup .img1 {
  background-image: url("../images/popups/residential/img1.jpg");
}
#residential-popup .img2 {
  background-image: url("../images/popups/residential/img2.jpg");
}
#residential-popup .img3 {
  background-image: url("../images/popups/residential/img3.jpg");
}
#residential-popup .img4 {
  background-image: url("../images/popups/residential/img4.jpg");
}
#residential-popup .img5 {
  background-image: url("../images/popups/residential/img5.jpg");
}
#residential-popup .img6 {
  background-image: url("../images/popups/residential/img6.jpg");
}

#shipping-popup header {
  background-image: url("../images/popups/shipping/Header.jpg");
}
#shipping-popup .img1 {
  background-image: url("../images/popups/shipping/img1.jpg");
}
#shipping-popup .img2 {
  background-image: url("../images/popups/shipping/img2.jpg");
}
#shipping-popup .img3 {
  background-image: url("../images/popups/shipping/img3.jpg");
}
#shipping-popup .video-row {
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, 1fr);
  width: 66.66%;
}

#warehousing-popup header {
  background-image: url("../images/popups/warehouse/Header.jpg");
}
#warehousing-popup .img1 {
  background-image: url("../images/popups/warehouse/img1.jpg");
}
#warehousing-popup .img2 {
  background-image: url("../images/popups/warehouse/img2.jpg");
}
#warehousing-popup .img3 {
  background-image: url("../images/popups/warehouse/img3.jpg");
}
#warehousing-popup .img4 {
  background-image: url("../images/popups/warehouse/img4.jpg");
}
#warehousing-popup .prod-grid {
  grid-template-columns: repeat(2, 1fr);
}

#infrastructure-popup header {
  background-image: url("../images/popups/infrastructure/Header.jpg");
}
#infrastructure-popup .img1 {
  background-image: url("../images/popups/infrastructure/img1.jpg");
}
#infrastructure-popup .img2 {
  background-image: url("../images/popups/infrastructure/img2.jpg");
}
#infrastructure-popup .img3 {
  background-image: url("../images/popups/infrastructure/img3.jpg");
}
#infrastructure-popup .img4 {
  background-image: url("../images/popups/infrastructure/img4.jpg");
}
#infrastructure-popup .img5 {
  background-image: url("../images/popups/infrastructure/img5.jpg");
}
#infrastructure-popup .img6 {
  background-image: url("../images/popups/infrastructure/img6.jpg");
}

.mfp-close-btn-in .mfp-close {
  color: #fed141;
  width: 50px;
  height: 50px;
  font-size: 50px;
  top: -50px;
  right: 25px;
  opacity: 1;
}/*# sourceMappingURL=splash-style.css.map */