* {
  box-sizing: border-box;
}

body {
  font-family: "Kreon", serif;
  font-size: 62.5%;
  color: #1c1c1c;
  position: relative;
}

.container {
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: "Ubuntu", sans-serif;
  color: #545454;
  margin: 0;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 15px;
}

p {
  font-family: "Kreon", serif;
  font-size: 1rem;
  font-weight: 300;
  margin-top: 0;
  line-height: 1.35;
}

ul, ol, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

ul.menu {
  width: 100%;
  margin: 0 auto;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  display: flex;
}
ul.menu img {
  height: 32px;
}
ul.menu li {
  display: inline-block;
  margin: 0 10px;
  padding-top: 8px;
}
ul.menu li a:link {
  color: #545454;
  text-decoration: none;
}
ul.menu li a:hover {
  text-decoration: underline;
}
ul.menu li a:visited {
  color: #545454;
}
ul.menu li.logo {
  margin: 0 30px 0 0;
}

.selected {
  font-weight: 500;
}

a.button {
  border: 1px solid #545454;
  border-radius: 5px;
  font-family: "Kreon", serif;
  font-size: 1.1rem;
  color: #545454;
  background: #fff;
  padding: 10px 15px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
  text-align: center;
}
a.button:hover {
  color: #fff;
  background: #545454;
}

nav {
  width: 100%;
  box-shadow: #ccc 0px 4px 5px;
}
nav .nav_container {
  max-width: 1400px;
  padding: 15px 30px 10px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
nav .nav_container li {
  font-size: 14px;
}

.mobile_nav {
  position: fixed;
  top: 0;
  right: -900px;
  z-index: 99999;
  width: 250px;
  height: 100%;
  background: white;
  box-shadow: -10px -5px 10px rgba(84, 84, 84, 0.25);
  padding: 20px;
  transition: right 0.35s ease-in-out;
}
.mobile_nav ul.mobile_menu li {
  font-family: "Ubuntu", sans-serif;
  display: block;
  margin: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}
.mobile_nav ul.mobile_menu li:first-child {
  border-bottom: none;
}
.mobile_nav ul.mobile_menu li:last-child {
  border-bottom: none;
}
.mobile_nav ul.mobile_menu li a:link {
  color: #545454;
  text-decoration: none;
}
.mobile_nav ul.mobile_menu li a:hover {
  text-decoration: underline;
}
.mobile_nav ul.mobile_menu li a:visited {
  color: #545454;
}
.mobile_nav ul.mobile_menu li.logo {
  margin: 0 30px 0 0;
}
.mobile_nav ul.mobile_menu li img {
  margin-left: 7px;
  margin-top: 5px;
  height: 10px;
}
.mobile_nav ul.mobile_menu .close {
  display: block;
  width: 100%;
  text-align: right;
  margin-bottom: 15px;
  margin-top: 0;
}
.mobile_nav ul.mobile_menu .close img {
  width: 24px;
  height: 24px;
  color: #545454;
}

.fifty {
  opacity: 50%;
}

.nav_on {
  right: 0;
}

.content_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.frontpage_header_image {
  height: 300px;
  background-color: #ccc;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  background-image: url("../assets/key.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.frontpage_header_image .frontpage_header_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
.frontpage_header_image .frontpage_header_container .headline {
  padding-left: 50%;
  opacity: 0.9;
}
.frontpage_header_image .frontpage_header_container .headline h1 {
  color: #545454;
  background-color: #ebebeb;
  padding: 30px;
  padding-bottom: 40px;
  border-top-left-radius: 25px;
}

.offerings {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.offerings h3 {
  margin-bottom: 10px;
}
.offerings .offering_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.offerings .offering_container .offer {
  width: calc(25% - 10px);
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.offerings .offering_container .offer:last-child {
  margin-right: 0;
}
.offerings .offering_container .offer .topper {
  height: 50px;
}
.offerings .offering_container .offer .topper {
  text-align: center;
}
.offerings .offering_container .offer .topper img {
  margin-top: 5px;
  height: 35px;
}
.offerings .offering_container .offer .listed {
  padding: 20px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 50px);
}
.offerings .offering_container .offer .listed ul {
  margin-left: 15px;
  margin-bottom: 15px;
}
.offerings .offering_container .offer .listed ul li {
  list-style-type: disc;
  font-family: "Kreon", serif;
  font-weight: 200;
  margin-bottom: 10px;
}
.offerings .offering_container .inspection .topper {
  background: #73675D;
}
.offerings .offering_container .material .topper {
  background: #B38964;
}
.offerings .offering_container .fall .topper {
  background: #F29A4B;
}
.offerings .offering_container .slings .topper {
  background: #96BBC3;
}

.call_outs {
  background: #F5F5F5;
  padding: 0 30px;
}
.call_outs .call_outs_container {
  max-width: 950px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  align-content: center;
}
.call_outs .call_outs_container .call_outs_sub {
  display: flex;
  flex-direction: row;
  width: 50%;
}
.call_outs .call_outs_container .call_outs_sub img {
  height: 75px;
  margin-right: 20px;
}
.call_outs .call_outs_container .call_outs_sub .collected {
  display: flex;
  flex-direction: column;
}
.call_outs .call_outs_container .call_outs_sub .collected .divider {
  display: flex;
  flex-direction: row;
}
.call_outs .call_outs_container .call_outs_sub .collected .divider h4 {
  margin-bottom: 10px;
  padding: 0;
}
.call_outs .call_outs_container .call_outs_sub .collected .divider .contact {
  padding-right: 15px;
  border-right: 1px solid #ccc;
}
.call_outs .call_outs_container .call_outs_sub .collected .divider .location {
  padding-left: 15px;
}
.call_outs .call_outs_container .call_outs_sub .collected .divider .call_outs_section {
  display: inline-block;
}
.call_outs .call_outs_container .call_outs_sub .collected .divider ul {
  padding: 0;
  margin: 0;
}
.call_outs .call_outs_container .call_outs_sub .collected .divider ul li {
  padding: 0;
  margin: 0;
  padding-bottom: 5px;
  font-weight: 200;
}
.call_outs .call_outs_container .shop_now {
  padding-left: 60px;
  border-left: 1px solid #ccc;
}
.call_outs .call_outs_container .shop_now .collected {
  margin-top: 30px;
}
.call_outs .call_outs_container .shop_now .collected a:link {
  color: #545454;
  text-decoration: none;
}
.call_outs .call_outs_container .shop_now .collected a:hover {
  text-decoration: underline;
}
.call_outs .call_outs_container .shop_now .collected a:visited {
  color: #545454;
}

.header_section {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header_section .image_block {
  width: 50%;
  position: relative;
  margin-top: 70px;
}
.header_section .image_block .icon_holder {
  display: inline-block;
  border-radius: 50%;
  padding: 15px;
  border: 5px solid #fff;
  position: absolute;
  top: -40px;
  left: 40px;
  height: 85px;
  width: 85px;
}
.header_section .image_block .icon_holder img {
  height: 45px;
}
.header_section .image_block .key_image {
  width: 100%;
  height: 220px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
}
.header_section .title_container {
  display: flex;
  align-items: center;
  width: 50%;
}
.header_section .title_container .title {
  padding-left: 40px;
  position: relative;
  margin-top: 70px;
}
.header_section .title_container .title::before {
  content: "-";
  font-size: 12rem;
  position: absolute;
  top: -135px;
  left: 30px;
}

.fall_protection .header_section .image_block .key_image {
  background-image: url("../assets/fall_ki.jpg");
}

.inspection .header_section .image_block .key_image {
  background-image: url("../assets/inspection_ki.jpg");
}

.material .header_section .image_block .key_image {
  background-image: url("../assets/material_ki.jpg");
}

.slings .header_section .image_block .key_image {
  background-image: url("../assets/slings_ki.jpg");
}

.product_container {
  max-width: 950px;
  margin: 0 auto;
}
.product_container h2 {
  margin-bottom: 10px;
}
.product_container h3 {
  margin-bottom: 10px;
  position: relative;
}
.product_container h3::before {
  content: "-";
  font-size: 4rem;
  position: absolute;
  top: -50px;
  left: 0px;
}
.product_container h4 {
  margin-top: 40px;
}
.product_container section {
  margin-bottom: 80px;
}
.product_container .product_list {
  display: flex;
  flex-direction: row;
}
.product_container .product_list .prod_col {
  width: 50%;
}
.product_container .product_list .prod_col .prod_item_container {
  width: 100%;
  margin-bottom: 30px;
}
.product_container .product_list .prod_col .prod_item_container a:link, .product_container .product_list .prod_col .prod_item_container a:visited {
  text-decoration: none;
}
.product_container .product_list .prod_col .prod_item_container a:link .prod_item, .product_container .product_list .prod_col .prod_item_container a:visited .prod_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}
.product_container .product_list .prod_col .prod_item_container a:link .prod_item .prod_img, .product_container .product_list .prod_col .prod_item_container a:visited .prod_item .prod_img {
  border-radius: 50%;
  background: #fff;
  width: 70px;
  height: 70px;
  margin-right: 10px;
  overflow: hidden;
}
.product_container .product_list .prod_col .prod_item_container a:link .prod_item .prod_name, .product_container .product_list .prod_col .prod_item_container a:visited .prod_item .prod_name {
  font-size: 1.25rem;
  font-family: "Kreon", serif;
  font-weight: 400;
  color: #545454;
  width: 80%;
}
.product_container .product_list .prod_col a:hover .prod_item .prod_name {
  text-decoration: underline;
}

.serv_container {
  display: flex;
  flex-direction: row;
}
.serv_container .serv_col {
  width: 50%;
}
.serv_container .serv_col .serv_block {
  font-size: 18px;
  margin-top: 30px;
}
.serv_container .serv_col .serv_block .sub_img {
  width: 70%;
  height: 150px;
  overflow: hidden;
  margin-bottom: 20px;
  border-top-left-radius: 20px;
}
.serv_container .serv_col .serv_block .sub_img img {
  width: 100%;
}
.serv_container .serv_col .serv_block:first-child {
  margin-top: 15px;
}
.serv_container .serv_col .serv_block strong {
  padding-bottom: 15px;
  font-weight: 400;
}
.serv_container .serv_col .serv_block ul {
  margin-left: 15px;
}
.serv_container .serv_col .serv_block ul li {
  font-size: 18px;
  font-weight: 200;
  line-height: 1.4;
  margin-top: 5px;
  list-style-type: disc;
}
.serv_container .serv_col .extra-space {
  margin-top: 60px;
}

.col1 {
  padding-right: 30px;
}

.col2 {
  padding-left: 30px;
}

.google_map {
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
}

.google-map iframe {
  height: 100% !important;
  width: 100% !important;
  left: 0;
  top: 0;
  position: absolute;
}

.inline_cta {
  font-family: "Kreon", serif;
  font-size: 1.5rem;
  margin-top: 40px;
}

.inline_cta a:link, .inline_cta a:visited {
  color: #545454;
  text-decoration: 1px solid #545454;
  pointer: cursor;
}

h4 a:hover {
  text-decoration: none;
}

.inspection .product_container h4 {
  margin-top: 0;
  margin-bottom: 0;
  background: #eee;
  padding: 15px;
  display: inline-block;
  border-radius: 0 0 0 15px;
}

footer {
  background: #545454;
  color: #fff;
}
footer .footer_container {
  max-width: 950px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
}
footer .footer_sub {
  width: 33.333%;
  max-width: 300px;
  margin-right: 50px;
}
footer .footer_sub .menu {
  padding-bottom: 20px;
}
footer .footer_sub strong {
  font-weight: bold;
}
footer .footer_sub:last-child {
  margin-right: 0;
}
footer .footer_sub h3 {
  color: #fff;
  padding-bottom: 5px;
}
footer .footer_sub ul {
  font-family: "Kreon", serif;
  display: block;
  padding: 0;
  margin: 0;
}
footer .footer_sub ul li {
  margin: 0;
  display: block;
}
footer .footer_sub ul li a:link {
  color: #fff;
  text-decoration: none;
}
footer .footer_sub ul li a:hover {
  text-decoration: underline;
}
footer .footer_sub ul li a:visited {
  color: #fff;
}
footer .footer_sub ul li.logo {
  margin: 0 30px 0 0;
}
footer .copyright {
  margin: 0 auto;
  padding: 0 0 60px;
  font-size: 0.8rem;
  font-weight: 200;
  max-width: 950px;
}

ul.division {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  width: 350px;
}
ul.division li {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
ul.division li a:link {
  color: #545454;
  text-decoration: none;
}
ul.division li a:hover {
  text-decoration: 1px solid #545454;
}
ul.division li a:visited {
  color: #545454;
}
ul.division li img {
  width: 150px;
}
ul.division li .slingchoker:first-child {
  padding-right: 7px;
}

ul.show_mobile_menu {
  display: none;
  width: 32px;
  height: 24px;
  margin-top: 10px;
  cursor: pointer;
}
ul.show_mobile_menu img {
  color: #545454;
  width: 32px;
  height: 24px;
}

hr.divider {
  padding-bottom: 60px;
  border: none;
  border-top: 1px solid #ccc;
}

.fall_protection .title::before {
  content: "-";
  color: #F29A4B;
}
.fall_protection .header_section .image_block .icon_holder {
  background: #F29A4B;
}
.fall_protection .product_container h3::before {
  color: #F29A4B;
}
.fall_protection .product_list .prod_col .prod_item_container a:link .prod_item .prod_img, .fall_protection .product_list .prod_col .prod_item_container a:visited .prod_item .prod_img {
  border: 4px solid #F29A4B;
}

.slings .title::before {
  content: "-";
  color: #96BBC3;
}
.slings .header_section .image_block .icon_holder {
  background: #96BBC3;
}
.slings .product_container h3::before {
  color: #96BBC3;
}
.slings .product_list .prod_col .prod_item_container a:link .prod_item .prod_img, .slings .product_list .prod_col .prod_item_container a:visited .prod_item .prod_img {
  border: 4px solid #96BBC3;
}

.material .title::before {
  content: "-";
  color: #B38964;
}
.material .header_section .image_block .icon_holder {
  background: #B38964;
}
.material .product_container h3::before {
  color: #B38964;
}
.material .product_list .prod_col .prod_item_container a:link .prod_item .prod_img, .material .product_list .prod_col .prod_item_container a:visited .prod_item .prod_img {
  border: 4px solid #B38964;
}

.inspection .title::before {
  content: "-";
  color: #73675D;
}
.inspection .header_section .image_block .icon_holder {
  background: #73675D;
}
.inspection .product_container h3::before {
  color: #73675D;
}
.inspection .product_list .prod_col .prod_item_container a:link .prod_item .prod_img, .inspection .product_list .prod_col .prod_item_container a:visited .prod_item .prod_img {
  border: 4px solid #73675D;
}

.contact .title::before {
  content: "-";
  color: #545454;
}
.contact .header_section .title_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  padding: 25px 0 0 0;
}
.contact .header_section .title_container .contact_info {
  padding: 0 30px;
}
.contact .header_section .contact_info {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 20px;
}
.contact .header_section .contact_info .col1, .contact .header_section .contact_info .col2 {
  padding-left: 0;
}
.contact .header_section .contact_info .col1 ul.menu, .contact .header_section .contact_info .col2 ul.menu {
  flex-direction: column;
  padding-bottom: 30px;
}
.contact .header_section .contact_info .col1 ul.menu li, .contact .header_section .contact_info .col2 ul.menu li {
  display: block;
}
.contact .header_section .contact_info .col1 {
  padding-right: 0;
  width: 40%;
}
.contact .header_section .contact_info .col2 {
  width: 60%;
}

.terms .header_section, .privacy .header_section {
  width: 100%;
  margin: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
.terms .header_section .title_container, .privacy .header_section .title_container {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.terms .header_section .title_container .title, .privacy .header_section .title_container .title {
  padding-left: 0;
  margin-bottom: 30px;
}
.terms .header_section .title_container .title::before, .privacy .header_section .title_container .title::before {
  content: "-";
  color: #545454;
  left: -10px;
}
.terms .legal_content, .privacy .legal_content {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

@media only screen and (max-width: 1225px) {
  ul.show_mobile_menu {
    display: block;
  }
  ul.division {
    display: none;
  }
  .main_menu {
    display: none !important;
  }
  .frontpage_header_image {
    background-position-x: -100px;
  }
  .call_outs .call_outs_container .call_outs_sub .collected .divider {
    flex-direction: column;
  }
  .call_outs .call_outs_container .call_outs_sub .collected .divider .contact {
    border: none;
  }
  .call_outs .call_outs_container .call_outs_sub .collected .divider .location {
    padding-left: 0;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .content_container {
    padding: 0 15px;
  }
  .frontpage_header_image {
    background-position-x: -150px;
  }
  .header_section {
    margin-bottom: 40px;
  }
  .header_section .image_block {
    margin-top: 50px;
  }
  .header_section .image_block .icon_holder {
    height: 60px;
    width: 60px;
    border: 3px solid #fff;
    padding: 12px;
    top: -30px;
  }
  .header_section .image_block .icon_holder img {
    height: 30px;
  }
  .header_section .image_block .key_image {
    height: 180px;
  }
  h1 {
    font-size: 2rem;
  }
  .frontpage_header_image .frontpage_header_container .headline {
    padding-left: 40%;
  }
  h2 {
    font-size: 1.5rem;
  }
  .offerings {
    margin: 0;
  }
  .offerings .offering_container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .offerings .offering_container .offer {
    width: calc(50% - 5px);
    margin-right: 0;
    margin-bottom: 10px;
  }
  .call_outs {
    padding: 0 15px;
  }
  footer .footer_container {
    padding: 30px 15px;
  }
  footer .copyright {
    padding: 0 15px 30px;
  }
  .product_container .product_list .prod_col .prod_item_container a:link .prod_item .prod_name, .product_container .product_list .prod_col .prod_item_container a:visited .prod_item .prod_name {
    font-size: 1.1rem;
  }
  .product_container section {
    margin-bottom: 60px;
  }
  .frontpage_header_image {
    height: 250px;
    margin-bottom: 40px;
  }
  .contact .header_section .title_container .title {
    padding-left: 10px !important;
  }
  .contact .header_section .title_container .title::before {
    left: 0 !important;
  }
  .contact .header_section .title_container .contact_info {
    padding-left: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .content_container {
    padding: 0 15px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  nav .nav_container {
    padding: 15px 15px 10px;
  }
  .frontpage_header_image .frontpage_header_container {
    padding: 0 15px;
  }
  .frontpage_header_image .frontpage_header_container .headline {
    opacity: 0.8;
  }
  .frontpage_header_image .frontpage_header_container .headline h1 {
    padding: 20px;
  }
  .header_section {
    margin-bottom: 30px;
  }
  .header_section .image_block {
    display: none;
  }
  .header_section .image_block .key_image {
    display: none;
  }
  .header_section .image_block .icon_holder {
    top: 0;
    left: 0;
  }
  .header_section .title_container {
    width: 100%;
  }
  .header_section .title_container .title {
    padding-left: 0;
    margin-top: 50px;
  }
  .header_section .title_container .title::before {
    font-size: 8rem;
    top: -90px;
    left: -6px;
  }
  .offerings .offering_container .offer {
    width: 100%;
  }
  .mobile_nav {
    width: 100%;
  }
  .call_outs .call_outs_container {
    flex-direction: column;
  }
  .call_outs .call_outs_container .call_outs_sub {
    width: 100%;
  }
  .call_outs .call_outs_container .call_outs_sub img {
    height: 45px;
  }
  .call_outs .call_outs_container .shop_now {
    padding-left: 0;
    border: none;
    margin-top: 20px;
  }
  .call_outs .call_outs_container .shop_now .collected {
    margin-top: 10px;
  }
  .frontpage_header_image {
    height: 200px;
    margin-bottom: 30px;
  }
  .frontpage_header_image .frontpage_header_container .headline {
    padding-left: 0;
    margin-right: 20px;
  }
  .product_container section {
    margin-bottom: 50px;
  }
  .serv_container {
    flex-wrap: wrap;
  }
  .serv_container .serv_col {
    width: 100%;
  }
  .serv_container .serv_col .serv_block:first-child {
    margin-top: 30px;
  }
  .serv_container .serv_col .sub_img {
    height: 120px !important;
    width: 50% !important;
  }
  .serv_container .col1 .serv_block:first-child {
    margin-top: 10px;
  }
  .product_container .see_all_products {
    padding-bottom: 20px;
  }
  .product_container .product_list {
    flex-wrap: wrap;
  }
  .product_container .product_list .prod_col {
    width: 100%;
  }
  .col2 {
    padding-left: 0;
  }
  footer .footer_sub {
    width: 100%;
    max-width: 100%;
  }
  footer .footer_container {
    flex-direction: column;
  }
  .contact .header_section {
    flex-direction: column;
  }
  .contact .header_section .contact_info {
    flex-direction: column;
  }
  .contact .header_section .title_container {
    width: 100%;
  }
  .contact .header_section .title_container .col1 {
    width: 100%;
  }
  .contact .header_section .title_container .col2 {
    width: 100%;
  }
  .contact .header_section .image_block {
    display: block;
    width: 100%;
  }
  .serv_container .serv_col .extra-space {
    margin-top: 30px;
  }
}
.currencyinput {
  height: 42px;
  width: 200px;
  border: 1px solid #ccc;
  font-size: 1rem;
  color: #999;
  position: relative;
}
.currencyinput .dollar {
  position: absolute;
  top: 11px;
  left: 10px;
}
.currencyinput .zeroes {
  position: absolute;
  top: 12px;
  left: 50px;
}

.currencyinput input {
  width: 30px;
  border: 0;
  text-align: right;
  position: absolute;
  top: 11px;
  left: 20px;
  border: none;
}

/*# sourceMappingURL=output.css.map */
