/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
 html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
	 ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
	 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
	 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
	 ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
	 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.main-nav ul,
.info-col ul,
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  /* 2 */
  overflow: hidden;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  max-height: 1000000px;
}

body {
  color: #333;
  background: #fff;
  font: 16px/1.2 "Roboto Condensed", sans-serif;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.gm-style img {
  max-width: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h {
  font-family: inherit;
  font-weight: bold;
  margin: 0 0 0.5em;
  color: inherit;
  letter-spacing: -1px;
  font-weight: 300;
}

h1,
.h1 {
  font-size: 30px;
}

h2,
.h2 {
  font-size: 27px;
}
@media (min-width: 1024px) {
  h2,
  .h2 {
    font-size: 42px;
  }
}

h2,
h3 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
h2.center:before,
h3.center:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
h2:before,
h3:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  content: "";
  background: #cc0001;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 21px;
}

h5,
.h5 {
  font-size: 17px;
}

h6,
.h6 {
  font-size: 15px;
}

p {
  margin: 0 0 1em;
}

a {
  color: #39f;
}
a:hover,
a:focus {
  text-decoration: none;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #999;
  padding: 0.4em 0.7em;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #333;
}
input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #999;
}
input[type="text"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}
input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
input[type="text"].placeholder,
input[type="tel"].placeholder,
input[type="email"].placeholder,
input[type="search"].placeholder,
input[type="password"].placeholder,
textarea.placeholder {
  color: #999;
}

select {
  -webkit-border-radius: 0;
}

textarea {
  resize: vertical;
  vertical-align: top;
}

button,
input[type="button"],
input[type="reset"],
input[type="file"],
input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  cursor: pointer;
}

a {
  -webkit-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}

.btn {
  font-weight: 500;
}
.btn:hover {
  color: #cc0001;
}

.wrapper {
  position: relative;
  overflow: hidden;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .logo {
  width: 130px;
}

.nav-opener {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  background: #cc0001;
  z-index: 9;
}
@media (min-width: 768px) {
  .nav-opener {
    display: none;
  }
}
.nav-active .nav-opener {
  position: fixed;
}
.nav-opener:before,
.nav-opener:after,
.nav-opener span {
  background: #fff;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 18%;
  right: 18%;
  height: 4px;
  margin-top: -2px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav-opener:before,
.nav-opener:after {
  content: "";
  top: 30%;
}
.nav-opener:after {
  top: 70%;
}
.nav-active .nav-opener span {
  opacity: 0;
}
.nav-active .nav-opener:after,
.nav-active .nav-opener:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  left: 10%;
  right: 10%;
}
.nav-active .nav-opener:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-active .nav-opener:hover {
  opacity: 0.9;
}

@media (max-width: 767px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 290px;
    background: #cc0001;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  .nav-active .main-nav {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.main-nav ul {
  padding: 60px 20px 20px;
}
@media (min-width: 768px) {
  .main-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.main-nav ul li {
  padding: 0 0 15px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .main-nav ul li {
    padding: 0;
    margin: 0 0 0 30px;
    font-size: 16px;
  }
}
.main-nav ul li.active a {
  color: #333;
}
@media (min-width: 768px) {
  .main-nav ul li.active a {
    color: #cc0001;
  }
}

.main-nav a {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .main-nav a {
    color: #333;
  }
}
.main-nav a:hover {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .main-nav a:hover {
    color: #cc0001;
    opacity: 1;
  }
}

.input-error {
  border-color: #f00 !important;
}

.visual {
  position: relative;
  height: 40vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .visual {
    height: 60vh;
  }
}
.visual.thanks {
  height: 100vh;
}
.visual:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  z-index: 99;
}
.visual.video-holder {
  height: 50vh;
}
@media (min-width: 768px) {
  .visual.video-holder {
    height: 80vh;
  }
}
@media (min-width: 768px) {
  .visual.video-holder:before {
    display: none;
  }
}
.visual .container {
  width: 100%;
  position: relative;
  z-index: 99;
}
.visual h1 {
  font-size: 36px;
  color: #fff;
  margin: 0;
  padding-top: 70px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .visual h1 {
    font-size: 56px;
    max-width: 50%;
  }
}
.visual .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  z-index: 9;
}

.market-section .container {
  padding-top: 70px;
}

.market-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -1px;
  margin: 0 0 35px;
}
@media (min-width: 768px) {
  .market-section h2 {
    font-size: 42px;
    max-width: 70%;
    margin: 0 auto 70px;
  }
}

.market-section .cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 40px;
}

.market-section .col {
  width: 100%;
  color: #333;
  text-decoration: none;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .market-section .col {
    width: 49%;
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .market-section .col {
    width: 24%;
  }
}
.market-section .col img {
  display: block;
  width: 100%;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  -o-object-fit: cover;
  object-fit: cover;
  height: 280px;
}
@media (min-width: 768px) {
  .market-section .col img {
    height: 187px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.market-section .col h3 {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.market-section .col:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.market-section .col:hover h3 {
  color: #cc0001;
}
.market-section .col .btn {
  margin: 0;
  width: 100%;
  max-width: 180px;
}

.market-section .img {
  border-radius: 10px 10px 0 0;
  position: relative;
  overflow: hidden;
  margin: 0 0 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.market-section form {
  max-width: 700px;
  margin: auto;
}

.market-section .input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.market-section .input-row .col {
  width: 48%;
  margin: 0 0 20px;
}
.market-section .input-row .col.full {
  width: 100%;
}

.market-section .input-field {
  width: 100%;
  border: 1px solid #333;
  height: 60px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  padding: 10px 20px;
}
.market-section .input-field::-webkit-input-placeholder {
  color: #333;
}
.market-section .input-field::-moz-placeholder {
  opacity: 1;
  color: #333;
}
.market-section .input-field:-moz-placeholder {
  color: #333;
}
.market-section .input-field:-ms-input-placeholder {
  color: #333;
}
.market-section .input-field.placeholder {
  color: #333;
}

.market-section textarea {
  height: 200px !important;
}

.market-section .btn {
  background: #cc0001;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  border: none;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
}

.market-section form h3 {
  display: none;
}

.market-section form.success h3 {
  font-size: 50px;
  display: block;
  color: green;
}
.market-section form.success h3:before {
  display: none;
}

.large-image {
  min-height: 40vh;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
@media (min-width: 768px) {
  .large-image {
    min-height: 60vh;
  }
}
@media (max-width: 767px) {
  .large-image {
    background-attachment: scroll; /* remove glitchy parallax effect */
    background-position: center center; /* better image framing */
    min-height: 200px; /* reduce height so it doesn’t dominate screen */
  }
}

.get-in-touch .container {
  padding-top: 35px;
  padding-bottom: 35px;
}
@media (min-width: 768px) {
  .get-in-touch .container {
    padding-top: 120px;
    padding-bottom: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.get-in-touch .col {
  background: #cc0001;
  padding: 30px 30px 30px 40px;
  color: #fff;
  font-size: 20px;
  border-radius: 20px 50px 0 50px;
}
@media (min-width: 768px) {
  .get-in-touch .col {
    width: 30%;
    border-radius: 20px 100px 0 100px;
  }
}
.get-in-touch .col:first-child {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: white;
  color: #333;
  border-radius: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .get-in-touch .col:first-child {
    padding: 0 100px 0 0;
  }
}
.get-in-touch .col a {
  color: #fff;
}

.get-in-touch .logo-white {
  display: block;
  max-width: 100px;
  margin: 0 0 20px;
}

.info-col {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
@media (min-width: 768px) {
  .info-col {
    padding: 30px;
  }
}
.info-col:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}
.info-col .container {
  position: relative;
  z-index: 2;
  padding: 35px;
  width: 100%;
}
.info-col h2 {
  text-align: left;
  max-width: 100%;
  margin-bottom: 30px;
}
.info-col ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.info-col ul li:before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #fff;
}

@media (min-width: 1024px) {
  .infocol-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .infocol-wrap .info-col {
    width: 49%;
  }
}

.safety-holder {
  padding: 0 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.safety-holder .image {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  margin: 0 0 30px;
  border-radius: 10px;
  width: 100%;
}
@media (min-width: 1024px) {
  .safety-holder .image {
    min-height: 100%;
    width: 40%;
  }
}
@media (min-width: 1024px) {
  .safety-holder .description {
    width: 60%;
    padding-left: 25px;
  }
}
.safety-holder .description h2 {
  text-align: left;
  max-width: 100%;
  margin: 0 0 20px;
}

@media (min-width: 768px) {
  .row-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 -15px 50px;
    width: calc(100% + 30px);
  }
}

.row-cols .row-col {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 20px;
  border-top: 5px solid #cc0001;
  margin: 0 15px 20px;
}
@media (min-width: 768px) {
  .row-cols .row-col {
    width: 46%;
  }
}
@media (min-width: 1024px) {
  .row-cols .row-col {
    width: 22%;
  }
}

.row-cols .img-holder {
  text-align: center;
  margin: 0 0 20px;
}
.row-cols .img-holder img {
  max-width: 60%;
  display: block;
  margin: 0 auto;
}

.footer {
  background: #333;
  color: #fff;
}
.footer .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.footer .logo {
  max-width: 100px;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .footer .logo {
    max-width: 150px;
  }
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer ul li {
  margin: 0 10px 0 0;
}
@media (min-width: 768px) {
  .footer ul li {
    margin: 0 0 0 30px;
  }
}
.footer ul li.active a {
  color: #cc0001;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: #cc0001;
}