﻿@charset "UTF-8";
/**
 * CONTENTS............You’re reading it!
 * NORMALIZE...........If using a framework like Bootstrap, say so; otherwise, include minified Normalize code
 * FONT-FACE...........Font family names
 * MIXINS..............SASS mixins
 * ELEMENTS............Basic global tag styles, framework trumps, etc.
 * LAYOUT..............Template layout/structure
 * HOMEPAGE............Styles for homepage layout
 * CONTENT.............Styles for shared & inside content
        * For very complicated sites, you may want to consider adding
        * subsections if the CSS for a section gets very long. Ex:
        * MAIN PRODUCTS PAGE
        * CATEGORY/SUBCATEGORY PAGE
        * PRODUCT DETAIL PAGE
 * ADD OTHER MAJOR SECTIONS AS NECESSARY - BLOG, SHOPPING CART, ETC.
 * RESPONSIVE..........Responsive styles, mobile first
 */
/*------------------------------------*    #NORMALIZE
\*------------------------------------*/
/* normalize code goes here if not using a framework - suggested version: https://necolas.github.io/normalize.css/ */
/*------------------------------------*    #VARIABLES
\*------------------------------------*/
/*------------------------------------*    #MIXINS
\*------------------------------------*/
/*------------------------------------*    #ELEMENTS
\*------------------------------------*/
/* Global elements */
html {
  font-size: 62.5%;
  /* Or whatever you want your rem size to be */ }

body {
  color: #505052;
  /* or whatever your global text color is */
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif; }

h1 {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 5.2rem; }

h2 {
  font-size: 3.6rem;
  line-height: 4.0rem;
  font-weight: 700;
  margin-bottom: 1.5rem; }

h4 {
  font-size: 2.0rem;
  margin-bottom: 2rem; }

a {
  transition: 0.3s ease all;
  color: #ee8b25; }

::selection {
  background-color: #ee8b25;
  color: #fff; }

::-moz-selection {
  background-color: #ee8b25;
  color: #fff; }

.object-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover'; }

/* Framework  overrides  */
.btn {
  font-size: 1.6rem;
  transition: 0.3s ease all;
  padding: 1.5rem 2rem;
  color: #fff;
  font-weight: 700; }

.btn-primary {
  background-color: #ee8b25;
  color: #fff;
  border-color: #ee8b25;
  font-weight: 800;
  text-transform: uppercase; }
  .btn-primary:hover {
    background-color: #505052;
    border-color: #505052; }

@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.4rem; } }

.div-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%; }

form {
  display: inline-block; }

#main {
  margin: 5rem 0; }

.form-group {
  margin-bottom: 1.5rem; }
  .form-group label {
    font-weight: 800; }
  .form-group .form-control {
    height: 50px;
    font-size: 1.6rem; }
  .form-group textarea.form-control {
    height: 20rem; }

.umbraco-forms-indicator {
  color: #900; }

.form-group .custom-control-label {
  font-weight: 400; }

.dataconsent label {
  font-weight: 400; }

.help-block {
  color: #938984;
  font-size: 1.4rem;
  display: block; }

.navbar-nav {
  padding: 2rem 0;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out; }

.navbar-nav.fixed {
  padding: 0; }

.HelloBarContent {
  background-color: #ee8b25;
  color: #fff;
  text-align: center;
  padding: 1rem 0; }
  .HelloBarContent p {
    margin-bottom: 0; }
  .HelloBarContent a {
    color: #fff;
    font-weight: bold; }

.bg-light {
  background-color: transparent !important; }

footer {
  background-color: #505052;
  color: #fff;
  padding: 3rem 0; }
  footer .social a {
    display: inline-block;
    margin: 1rem;
    width: 70px; }
    footer .social a img {
      width: 100%;
      height: auto; }

.bold-link {
  font-weight: 700;
  padding: 2rem; }

.certifications {
  padding: 1rem;
  background: #282828;
  text-align: center; }
  .certifications a:hover {
    text-decoration: none;
    opacity: .9; }
  .certifications img {
    margin: 1rem; }
    .certifications img:hover {
      text-decoration: none;
      opacity: .9; }

.billboard-wrap {
  background-size: cover;
  background-color: #505052;
  background-blend-mode: multiply; }
  .billboard-wrap .wrap {
    color: #fff;
    padding: 7rem 4rem; }
    .billboard-wrap .wrap hr {
      border-top: 8px solid #ee8b25;
      margin: 3rem 0;
      margin-left: -10%; }
    .billboard-wrap .wrap .btn {
      margin-top: 2rem; }
    .billboard-wrap .wrap h1 {
      font-size: 6.8rem;
      font-weight: 700;
      line-height: 7.2rem; }
    .billboard-wrap .wrap p {
      font-size: 1.8rem; }

@media screen and (max-width: 768px) {
  .HelloBarContent {
    font-size: 1.3rem;
    padding: 1rem; }
  .billboard-wrap .wrap {
    padding: 6rem 3rem; }
    .billboard-wrap .wrap h1 {
      font-size: 3.8rem;
      line-height: 4.2rem; }
    .billboard-wrap .wrap p {
      font-size: 1.6rem; } }

.billboard {
  background-color: #505052;
  color: #fff;
  padding: 3rem 0;
  text-align: center; }
  .billboard h1 {
    font-size: 2.8rem;
    line-height: 3.2rem; }

.text-with-images {
  padding: 6rem 0; }
  .text-with-images:nth-child(even) {
    background-color: #f1f1f1; }
  .text-with-images h2 {
    font-size: 4.2rem;
    line-height: 4.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem; }
  .text-with-images hr {
    border-top: 6px solid #ee8b25;
    margin: 3rem 0;
    margin-left: -5%; }
  .text-with-images figure {
    text-align: center; }
    .text-with-images figure img {
      border-radius: 50%;
      display: inline-block;
      -webkit-box-shadow: 10px 10px 1px 1px #f08c25;
      box-shadow: 10px 10px 1px 1px #f08c25;
      border: 1px solid #ee8b25; }

@media screen and (max-width: 768px) {
  .text-with-images h2 {
    font-size: 2.8rem;
    line-height: 3.2rem; }
  .text-with-images img {
    margin-bottom: 3rem; }
  .text-with-images .col-md-7 {
    -ms-flex-order: 1;
    order: 1; }
  .text-with-images .col-md-5 {
    -ms-flex-order: 0;
    order: 0; } }

.machines {
  font-size: 6.8rem;
  font-weight: 700; }

.machine {
  margin: 6rem 0; }
  .machine h2 {
    font-size: 4.8rem;
    line-height: 5.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem; }
  .machine h3 {
    font-size: 2.0rem;
    line-height: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem; }
  .machine hr {
    border-top: 6px solid #ee8b25;
    margin: 3rem 0;
    margin-left: -5%; }
  .machine img {
    border-radius: 50%;
    -webkit-box-shadow: 10px 10px 1px 1px #eaeaea;
    box-shadow: 10px 10px 1px 1px #eaeaea; }

@media screen and (max-width: 768px) {
  .machine img {
    margin-bottom: 3rem; }
  .machine h2 {
    font-size: 2.8rem;
    line-height: 3.2rem; }
  .machines {
    font-size: 3.6rem;
    line-height: 3.2rem; } }

.ctas {
  margin: 3rem 0 6rem 0; }
  .ctas .wrap {
    padding: 2rem;
    margin: 2rem 0; }
    .ctas .wrap h3 {
      font-size: 2.6rem; }
    .ctas .wrap img {
      margin-bottom: 2rem; }

.columns {
  background-color: #ee8b25;
  color: #fff;
  padding: 5rem 0;
  margin-top: 5rem; }
  .columns h2 {
    font-size: 3.6rem;
    line-height: 4.0rem;
    font-weight: 800;
    margin-bottom: 1.5rem; }
  .columns hr {
    border-top: 8px solid #fff;
    margin: 3rem 0;
    margin-left: -5%; }

.preview {
  padding: 3.2rem 0;
  border-bottom: 3px solid #eaeaea; }

@media screen and (max-width: 768px) {
  .columns {
    padding: 2rem 0;
    margin-top: 2rem; }
    .columns h2 {
      font-size: 2.8rem;
      line-height: 3.2rem; } }
