@charset "UTF-8";
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, main, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

/* HTML5 display-role reset for shitty browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  overflow-y: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

body * {
  box-sizing: border-box;
}

@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-Medium.woff2") format("woff2"), url("../fonts/Urbanist-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-Regular.woff2") format("woff2"), url("../fonts/Urbanist-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-SemiBold.woff2") format("woff2"), url("../fonts/Urbanist-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-Light.woff2") format("woff2"), url("../fonts/Urbanist-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  pointer: cursor;
}

span {
  color: #0074bb;
  font-weight: 500;
}

img {
  width: 100%;
}

.button__primary {
  background-color: #0074bb;
  display: inline-block;
  color: #fff;
  padding: 0.35rem 1.75rem;
  margin-top: 1rem;
}
.button__primary:after {
  content: "›";
  margin-left: 1.5rem;
}
.button__primary:hover {
  background-color: #0ca3ff;
}

.button__secondary {
  font-weight: 400;
  text-decoration: underline;
}
.button__secondary:after {
  content: url(/site/templates/build/img/arrow.svg);
  margin-left: 0.5rem;
}
.button__secondary:hover {
  text-decoration: none;
}

.button__secondary:hover::after {
  transform: scale(1.5);
}

.menu__links:after {
  content: url(/site/templates/build/img/arrow_white.svg);
  margin-left: 0.5rem;
}
.menu__links:hover {
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .button__primary:after {
    margin-left: 5rem;
  }
}
.come-in-top {
  -webkit-transform: translateY(-3vw);
  transform: translateY(-3vw);
  -webkit-animation: come-in 2s ease forwards;
  animation: come-in 2s ease forwards;
}

.come-in-side {
  -webkit-transform: translateX(3vw);
  transform: translateX(3vw);
  -webkit-animation: come-in 2.5s ease forwards;
  animation: come-in 2.5s ease forwards;
}
.come-in-side:nth-of-type(even) {
  -webkit-transform: translateX(-3vw);
  transform: translateX(-3vw);
  -webkit-animation: come-in 3s ease forwards;
  animation: come-in 3s ease forwards;
}

.come-in-left {
  -webkit-transform: translateX(-10vw);
  transform: translateX(-10vw);
  -webkit-animation: come-in 3.5s ease forwards;
  animation: come-in 3.5s ease forwards;
}

.come-in {
  -webkit-transform: translateY(10vw);
  transform: translateY(10vw);
  -webkit-animation: come-in 2s ease forwards;
  animation: come-in 2s ease forwards;
}

.come-in:nth-of-type(even) {
  -webkit-animation: come-in 2.5s ease forwards;
  animation: come-in 2.5s ease forwards;
}

.already-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes come-in {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes come-in {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
html {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  html {
    font-size: 16px;
  }
}
h1, h2, h3, h4, h5, h6, h7 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
h1:after, h2:after, h3:after, h4:after, h5:after, h6:after, h7:after {
  content: ".";
}

h1 {
  font-size: 2.75rem;
}

@media (max-width: 1350px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 1050px) {
  h1 {
    font-size: 1.5rem;
  }
}
h2 {
  font-size: 1.75rem;
}

@media (max-width: 1350px) {
  h2 {
    font-size: 1.35rem;
  }
}
h3 {
  font-size: 1.5rem;
}

@media (max-width: 1350px) {
  h2 {
    font-size: 1.25rem;
  }
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 0.75rem;
  line-height: 1.9;
}

li {
  margin-bottom: 1.25rem;
}

span {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.texteditor > ul > li {
  list-style-type: disc;
  list-style-position: inside;
}
.texteditor strong {
  font-weight: 600;
}
.texteditor a {
  font-weight: 500;
}

html, body {
  overflow-x: hidden;
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

section {
  margin-bottom: 10rem;
}

@media (max-width: 1350px) {
  .wrapper,
.content__block.wrapper {
    max-width: 1000px;
  }
}
@media (max-width: 1050px) {
  .wrapper,
.content__block.wrapper {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.page__header {
  position: relative;
}

.page__header_container {
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 2rem;
}
.page__header_container .logo img {
  width: 220px;
  padding-bottom: 1.5rem;
}

input#menu__trigger {
  display: none;
}

.menu__main ul {
  display: flex;
  padding-top: 1.5rem;
}
.menu__main ul li:not(:last-child) {
  margin-right: 3.5rem;
}
.menu__main ul li .menu__parent > div > a {
  margin-bottom: 2rem;
}
.menu__main ul li a {
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-block;
}
.menu__main ul li a.active {
  color: #0074bb;
}
.menu__main ul li img {
  display: none;
}
.menu__main ul li ul {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0rem 100% 0rem 100%;
  margin-left: -100%;
  white-space: nowrap;
  display: none;
}
.menu__main ul li ul > li {
  margin-bottom: 2rem;
}
.menu__main ul li ul > li > a {
  color: #fff;
}

.page__header_container.home {
  position: absolute;
}
.page__header_container.home ul li a {
  color: #fff;
}
.page__header_container.home ul li ul {
  background-color: rgba(0, 0, 0, 0.7);
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 10px 15px;
  border-color: transparent transparent rgba(0, 0, 0, 0.9) transparent;
  margin-top: -10px;
}

.breadcrumb__navigation ol {
  display: flex;
}
.breadcrumb__navigation ol li:not(:last-child):after {
  content: "›";
  color: #ABABAB;
  margin: 0rem 0.5rem;
}
.breadcrumb__navigation ol li a {
  color: #ABABAB;
}

@media (max-width: 1050px) {
  .page__header_container .logo img {
    padding-bottom: 0rem;
  }

  .menu__main ul li:not(:last-child) {
    margin-right: 0rem;
  }

  .breadcrumb__navigation ol {
    margin-top: 2rem;
  }
}
@media (max-width: 700px) {
  .page__header_container {
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 1.5rem;
  }
  .page__header_container .logo img {
    width: 150px;
  }
}
@media (min-width: 1050px) {
  .menu__main ul .menu__parent:hover > ul {
    display: block;
  }
}
.hero__home {
  margin-bottom: 0rem;
  position: relative;
}
.hero__home .hero__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  z-index: 15;
  height: 100%;
  width: 50%;
  margin-top: 8rem;
  color: #fff;
}
.hero__home .hero__title span {
  color: #fff;
}
.hero__home .hero__title h1 {
  letter-spacing: 1px;
}
.hero__home .hero__title .button__primary {
  width: 12rem;
}
.hero__home .hero__title .button__primary:after {
  margin-left: 3.5rem;
}
.hero__home > .hero__image {
  max-height: 1050px;
  overflow: hidden;
}
.hero__home > .hero__image img {
  display: block;
}
.hero__home > .hero__image:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 10;
}

@media (max-width: 1050px) {
  .hero__home .hero__title {
    width: 70%;
  }

  .hero__image img {
    min-height: 400px;
    width: auto;
  }
}
@media (max-width: 700px) {
  .hero__home .hero__title {
    margin-top: 5rem;
  }

  .hero__image img {
    margin-left: -20%;
  }
}
.page__hero {
  background-color: #F4F5F6;
  padding: 7rem 0rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.page__hero > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page__hero_text {
  width: 48%;
}
.page__hero_text > nav {
  margin-top: 3rem;
}

.page__hero_image {
  width: 48%;
  max-height: 800px;
  overflow: hidden;
  margin-top: -11rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.page__hero_image img {
  min-height: 800px;
  width: auto;
}

@media (max-width: 1050px) {
  .page__hero {
    margin-top: 4rem;
    padding: 3rem 0rem;
  }

  .page__hero_text {
    width: 80%;
  }

  .page__hero .wrapper {
    flex-direction: column;
  }

  .page__hero_image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-top: 1rem;
  }
  .page__hero_image img {
    margin-top: 0%;
    min-height: auto;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .page__hero_text {
    width: 100%;
  }
}
.article__hero {
  background-color: #F4F5F6;
  margin-top: 7rem;
  margin-bottom: 5rem;
}
.article__hero .article__hero_text {
  width: 55%;
  margin-left: -200px;
  margin: 0;
  padding: 4rem 0rem;
}
.article__hero .article__hero_image {
  height: 850px;
  overflow: hidden;
  margin-left: 100px;
  margin-right: -300px;
}

@media (max-width: 1050px) {
  .article__hero {
    margin-top: 4rem;
  }
  .article__hero .article__hero_text {
    width: 85%;
    padding: 3rem 0rem;
  }
  .article__hero .article__hero_image {
    height: auto;
    overflow: hidden;
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 700px) {
  .article__hero .article__hero_text {
    width: 100%;
  }
}
.basic__text {
  width: 70%;
}

@media (max-width: 1050px) {
  .basic__text {
    width: 80%;
  }
}
@media (max-width: 700px) {
  .basic__text {
    width: 100%;
  }
}
footer {
  background-color: #000;
  color: #fff;
  margin-top: 8rem;
  padding: 2.5rem 0rem 0.25rem 0rem;
}
footer .footer__blocks {
  display: flex;
  padding-bottom: 2rem;
}
footer .footer__blocks > div {
  width: 25%;
  margin-right: 2rem;
}
footer .footer__blocks > div.cta {
  width: 30%;
}
footer .footer__blocks > div.cta h4 {
  margin-bottom: 0.75rem;
}
footer .footer__blocks > div.cta h4:after {
  content: "";
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}
footer a.button__primary {
  text-decoration: none;
}
footer > div ul {
  display: flex;
  justify-content: flex-end;
}
footer > div ul li {
  margin-bottom: 0rem;
}
footer > div ul li a:hover {
  text-decoration: underline;
}
footer > div ul li:not(:last-child) {
  margin-right: 1rem;
}
footer .links li:last-child {
  display: none;
}
footer .legals {
  font-size: 16px;
}

@media (max-width: 1050px) {
  footer .footer__blocks {
    flex-direction: column;
    text-align: center;
  }
  footer .footer__blocks div {
    width: 100%;
    margin-right: 0rem;
    margin-bottom: 3rem;
  }
  footer .footer__blocks div.cta {
    width: 100%;
    margin-left: 0rem;
    text-align: center;
  }
}
.hero__subtitle {
  width: 50%;
  padding-left: 10%;
}

.hero__nav {
  background-color: #F4F5F6;
  padding: 7rem 0rem;
}
.hero__nav > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero__nav nav {
  width: 50%;
  border-left: 1px solid #ABABAB;
  padding-left: 5rem;
}

@media (max-width: 1050px) {
  .hero__subtitle {
    width: 100%;
    padding-left: 0rem;
    border-bottom: 1px solid #ABABAB;
    padding-bottom: 3rem;
  }
  .hero__subtitle .button__primary {
    margin-top: 0rem;
  }

  .hero__nav {
    padding: 3rem 0rem;
  }
  .hero__nav > div nav {
    width: 100%;
    padding-left: 0rem;
    margin-top: 3rem;
    border-left: none;
  }
}
.teaser__about {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
.teaser__about .about__text {
  width: 38%;
  min-width: 400px;
  margin-left: 2rem;
}
.teaser__about .about__text h3 {
  margin-bottom: 1.75rem;
}
.teaser__about .about__text p {
  margin-bottom: 2rem;
}
.teaser__about .about__image {
  width: 48%;
}

@media (max-width: 1050px) {
  .teaser__about .about__text {
    width: 100%;
    margin-left: 0rem;
    padding: 0rem 1.5rem;
  }
  .teaser__about .about__image {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.blocks__service > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.blocks__service > ul li {
  width: 30%;
}
.blocks__service > ul li:first-child,
.blocks__service > ul li:nth-child(2) {
  border-right: 0.5px solid #F4F5F6;
  padding-right: 2rem;
}

@media (max-width: 1050px) {
  .blocks__service > ul li {
    width: 100%;
  }
  .blocks__service > ul li:first-child,
.blocks__service > ul li:nth-child(2) {
    border-right: none;
    border-bottom: 0.5px solid #F4F5F6;
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.teaser__banner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-bottom: 25rem;
}

.teaser__image {
  max-height: 750px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.teaser__image img {
  margin-top: -8%;
}
.teaser__image:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 116, 187, 0.3);
  position: absolute;
}

.teaser__content {
  background-color: #F4F5F6;
  position: absolute;
  padding: 5rem 10rem;
  margin-bottom: -15rem;
}

@media (max-width: 1350px) {
  .teaser__content {
    padding: 4rem 5rem;
    margin-bottom: -12rem;
  }
}
@media (max-width: 1050px) {
  .teaser__content {
    padding: 3rem 4rem;
  }
}
@media (max-width: 700px) {
  .teaser__content {
    padding: 2rem 1rem;
    margin-bottom: -18rem;
  }
}
.news__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news__cards article {
  width: 48%;
}

@media (max-width: 1050px) {
  .news__cards article {
    width: 75%;
  }
  .news__cards article:not(:first-child) {
    margin-top: 5rem;
  }
}
@media (max-width: 700px) {
  .news__cards article {
    width: 100%;
  }
}
.content__block {
  padding: 7rem 0rem;
  border-top: 0.5px solid #F4F5F6;
}

.content__text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.content__image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1050px) {
  .content__block {
    padding: 3rem 0rem;
  }
}
.content__text_title,
.content__text_textarea {
  width: 48%;
}

@media (max-width: 1050px) {
  .content__text_title,
.content__text_textarea {
    width: 100%;
  }
}
.content__image_image,
.content__image_textarea {
  width: 48%;
}

.content__image_image {
  max-height: 700px;
  overflow: hidden;
}
.content__image_image img {
  min-height: 500px;
  width: auto;
}

@media (max-width: 1050px) {
  .content__image_image,
.content__image_textarea {
    width: 100%;
  }

  .content__block.content__image {
    flex-direction: column-reverse;
  }

  .content__image_image {
    max-height: 500px;
    width: 100%;
  }
  .content__image_image img {
    width: 100%;
    min-height: auto;
    height: auto;
  }
}
.content__teaser {
  padding: 7rem 0rem;
}

.news__listings li {
  margin-bottom: 0rem;
}
.news__listings li article {
  padding: 4rem 0rem;
  border-bottom: 0.5px solid #F4F5F6;
}
.news__listings li article h3 {
  margin-bottom: 1.75rem;
}

.news__listings_content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0rem;
}
.news__listings_content > div {
  margin-top: 1.5rem;
  width: 48%;
}
.news__listings_content > div > p {
  margin-bottom: 2rem;
}
.news__listings_content img {
  width: 48%;
}

.news__listings li:nth-child(odd) article .news__listings_content {
  flex-direction: row-reverse;
}

.article__content {
  margin-bottom: 10rem;
  margin-left: 100px;
  width: 70%;
}

@media (max-width: 1050px) {
  .news__listings_content > div {
    width: 100%;
  }
  .news__listings_content > div > p {
    margin-bottom: 2rem;
  }
  .news__listings_content img {
    width: 100%;
    margin-top: 2.25rem;
  }

  .article__content {
    margin-bottom: 5rem;
    margin-left: 0px;
    width: 85%;
  }
}
@media (max-width: 700px) {
  .article__content {
    width: 100%;
  }
}
.career__listings li {
  margin-bottom: 0rem;
}
.career__listings li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0.5rem;
  border-bottom: 0.5px solid #F4F5F6;
}
.career__listings li a img {
  width: 2rem;
}
.career__listings li a .career__listings_title > h4 {
  margin-bottom: 0rem;
}
.career__listings li:first-child a {
  border-top: 0.5px solid #F4F5F6;
}

@media (max-width: 1050px) {
  .news__listings_content > div {
    width: 100%;
  }
  .news__listings_content > div > p {
    margin-bottom: 2rem;
  }
  .news__listings_content img {
    width: 100%;
    margin-top: 2.25rem;
  }
}
.career__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5rem;
}
.career__details > section {
  width: 48%;
  margin-bottom: 5rem;
}

.career__cta,
.career__card {
  background-color: #F4F5F6;
  padding: 3rem;
}

@media (max-width: 1050px) {
  .career__details > section {
    width: 80%;
    margin-bottom: 3rem;
  }
}
@media (max-width: 700px) {
  .career__details > section {
    width: 100%;
  }
}
@media (max-width: 1050px) {
  label[for=menu__trigger] {
    display: block;
  }

  input#menu__trigger + label {
    position: absolute;
    right: 1.5rem;
    height: 20px;
    margin-top: -20px;
    width: 50px;
    z-index: 5;
    opacity: 85%;
    -moz-opacity: 0.85;
    -webkit-opacity: 0.85;
  }
  input#menu__trigger + label span {
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: #000;
    transition: 0.5s;
  }
  input#menu__trigger + label span:last-child {
    top: 25px;
  }

  input#menu__trigger + label.trigger__home {
    right: 3rem;
  }

  .menu__main ul {
    display: none;
  }

  label:hover {
    cursor: pointer;
  }

  input#menu__trigger:checked + label span {
    background-color: #fff;
  }
  input#menu__trigger:checked + label span:first-child {
    opacity: 1;
    transform: rotate(40deg);
  }
  input#menu__trigger:checked + label span:last-child {
    opacity: 1;
    top: 10px;
    transform: rotate(-40deg);
  }

  input:checked ~ nav {
    background: #000;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
    transition: 0.5s;
    transition-delay: 0.5s;
    overflow: scroll;
  }
  input:checked ~ nav > ul {
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
  }
  input:checked ~ nav > ul > li {
    opacity: 0;
    transition: 0.5s;
    transition-delay: 0s;
    padding-left: 2rem;
    margin-right: 0rem !important;
    display: block;
  }
  input:checked ~ nav > ul > li .menu__parent > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  input:checked ~ nav > ul > li .menu__parent > div > a {
    display: block;
    padding-bottom: 0rem;
    font-size: 1.5rem;
    color: #fff;
    margin-right: 1rem;
  }
  input:checked ~ nav > ul > li .menu__parent > div > a.active {
    color: #0074bb;
  }
  input:checked ~ nav > ul > li .menu__parent > div > .menu__arrow {
    display: block;
    width: 3rem;
  }
  input:checked ~ nav > ul > li .menu__parent > ul {
    margin-left: 1.5rem;
  }

  .menu__parent.open > div .menu__arrow {
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    -ms-transition: -ms-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
  }
  .menu__parent.open > ul {
    display: block;
    background-color: transparent;
    margin-left: 0%;
    padding: 0rem;
    position: relative;
  }
  .menu__parent.open > ul > li:not(:first-child) {
    border-bottom: 1px solid #fff;
  }
  .menu__parent.open > ul > li:not(:first-child) .menu__links:after {
    content: "";
  }

  input:checked ~ nav {
    height: 100%;
    transition-delay: 0s;
  }
  input:checked ~ nav > ul > li {
    opacity: 1;
    transition-delay: 0.5s;
  }

  .page__header_container.home input#menu__trigger + label span {
    background: #fff;
  }
}
@media (max-width: 1050px) {
  table, thead, tbody, tfoot, td, th, tr {
    display: block;
  }
}
td {
  margin-bottom: 0.5rem;
}

.machinery_list_table {
  width: auto;
}
.machinery_list_table th {
  text-align: left;
  color: #ABABAB;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #0074bb;
}
.machinery_list_table th, .machinery_list_table td {
  width: auto;
  padding: 1rem 3rem 1rem 3rem;
}
.machinery_list_table td:first-child {
  font-weight: 600;
}
.machinery_list_table tr:nth-child(2n) td {
  background-color: rgba(171, 171, 171, 0.1);
}
@media (max-width: 1050px) {
  .machinery_list_table {
    font-size: 1rem;
  }
  .machinery_list_table thead {
    display: none;
  }
  .machinery_list_table tr {
    margin-bottom: 1rem;
  }
  .machinery_list_table th {
    padding: 0rem;
  }
  .machinery_list_table td {
    width: 100%;
    white-space: normal;
    padding: 0rem;
    margin-bottom: 0rem;
  }
  .machinery_list_table td:first-child {
    color: #0074bb;
  }
}

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