@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
}
.fadeIn.visible {
  animation: fadeIn 1s ease-in-out forwards;
}
.fadeIn.visible:nth-child(2) {
  animation-delay: 0.1s;
}
.fadeIn.visible:nth-child(3) {
  animation-delay: 0.2s;
}
.fadeIn.visible:nth-child(4) {
  animation-delay: 0.3s;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOutBig {
  0% {
    transform: scale(10);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes zoomOutBig {
  0% {
    transform: scale(10);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.slideInLeft {
  opacity: 0;
  animation: slideInLeft 1s ease-in-out forwards;
}
.slideLeft {
  opacity: 0;
}
.slideLeft.visible {
  animation: slideInLeft 0.5s ease-in-out forwards;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.slideInRight {
  opacity: 0;
  animation: slideInRight 1s ease-in-out forwards;
}
.slideRight {
  opacity: 0;
}
.slideRight.visible {
  animation: slideInRight 0.5s ease-in-out forwards;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.slideInDown {
  opacity: 0;
  animation: slideInDown 1s ease-in-out forwards;
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.slideInUp {
  opacity: 0;
  animation: slideInUp 1s ease-in-out forwards;
}
.slideUp {
  opacity: 0;
}
.slideUp.visible {
  animation: slideInUp 0.5s ease-in-out forwards;
}
.slideUp.visible:nth-child(2) {
  animation-delay: 0.1s;
}
.slideUp.visible:nth-child(3) {
  animation-delay: 0.2s;
}
.slideUp.visible:nth-child(4) {
  animation-delay: 0.3s;
}
@keyframes preloaderOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
body {
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: #555;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  background: #eeeeee;
  animation: 1s fadeIn;
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}
p.has-red-color {
  color: #962513;
}
a {
  display: inline-block;
  color: #962513;
  cursor: pointer;
  transition: 0.3s;
}
a:hover {
  color: #111;
  cursor: pointer;
}
a.screen-reader-shortcut {
  position: absolute;
  top: -1000em;
}
a.screen-reader-shortcut:focus {
  left: 6px;
  top: 7px;
  height: auto;
  width: auto;
  display: block;
  font-size: 14px !important;
  font-weight: 600;
  padding: 15px 23px 14px;
  background: #f1f1f1;
  color: #0073aa !important;
  z-index: 100000;
  line-height: normal;
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}
.button, .wp-block-button__link {
  background: #962513;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 16px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .button, .wp-block-button__link {
    font-size: 14px;
  }
}
.button:hover, .wp-block-button__link:hover {
  background: #111;
  color: #fff;
  text-decoration: none;
}
.button:after, .wp-block-button__link:after {
  content: '';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  margin-left: 8px;
}
.button.alt, .wp-block-button__link.alt {
  background: none;
  color: #333;
  border: 2px solid #333;
}
.button.alt:hover, .wp-block-button__link.alt:hover {
  background: #111;
  color: #fff;
}
a[href*="//"]:not([href*="nymat.com"]):after {
  content: '';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 85%;
  margin-left: 8px;
  margin-bottom: 2px;
}
.social-links a[href*="//"]:not([href*="nymat.com"]):after {
  display: none;
}
h1, h2, h3, h4 {
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}
h1.red, h2.red, h3.red, h4.red {
  color: #962513;
}
h1 {
  font-size: 160%;
  color: #962513;
  text-transform: uppercase;
  font-weight: 900;
}
@media (max-width: 767px) {
  h1 {
    font-size: 130%;
  }
}
h2 {
  font-size: 140%;
  color: #962513;
  font-weight: 700;
}
@media (max-width: 767px) {
  h2 {
    font-size: 120%;
  }
}
h3 {
  font-size: 120%;
}
@media (max-width: 767px) {
  h3 {
    font-size: 110%;
  }
}
.container {
  padding: 0 20px;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}
img.alignright {
  float: right;
  margin: 0 0 15px 15px;
}
img.aligncenter {
  margin: 0 auto 15px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.object-fit-container {
  position: relative;
}
.object-fit-container img {
  height: 100%;
  width: 100%;
  margin-bottom: 0;
  object-fit: cover;
}
.object-fit-container.compat-object-fit {
  background-size: cover;
  background-position: center center;
}
#header-top {
  padding: 8px 0;
  background: #962513;
  color: #fff;
}
@media (max-width: 767px) {
  #header-top {
    display: none;
  }
}
#header-top .social-links {
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}
@media (max-width: 991px) {
  #header-top .social-links {
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  #header-top .social-links {
    display: none;
  }
}
#header-top .social-links a {
  color: #222222;
  font-size: 13px;
  background: #fcef50;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
#header-top .social-links a:hover {
  color: #fff;
  background: #222;
  text-decoration: none;
}
#header-top .social-links a:last-child {
  margin-right: 0;
}
#header {
  background: #fff;
  border-bottom: 5px solid #962513;
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  z-index: 9999;
}
@media (max-width: 767px) {
  #header {
    border-top: 5px solid #962513;
    border-bottom: 2px solid #962513;
  }
}
#header .wrapper {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .wrapper .logo {
  width: 175px;
}
@media (max-width: 991px) {
  #header .wrapper .logo {
    width: 150px;
  }
}
@media (max-width: 767px) {
  #header .wrapper .logo {
    width: 100px;
  }
}
#header .wrapper .logo a img {
  margin: 0;
}
#header .wrapper .logo a.main-logo {
  display: block;
}
#header .wrapper .logo a.midwest-logo {
  display: none;
}
@media (max-width: 991px) {
  #header .wrapper #menu {
    display: none;
  }
}
#header .wrapper #nav-toggle {
  display: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  background: none;
  padding: 10px;
}
@media (max-width: 991px) {
  #header .wrapper #nav-toggle {
    display: block;
  }
}
.admin-bar #header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar #header {
    top: 46px;
  }
}
#responsive-menu-pro-button {
  display: none !important;
}
#footer {
  background: #333;
  padding: 30px 0;
  color: #fff;
}
@media (max-width: 767px) {
  #footer .footer-col:nth-child(1), #footer .footer-col:nth-child(2) {
    margin-bottom: 20px;
  }
}
#footer .footer-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 8px;
  border-bottom: 1px solid #666;
}
#footer .logo img {
  width: 220px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #footer .logo img {
    width: 90%;
  }
}
#footer .logo a.main-logo {
  display: block;
}
#footer .logo a.midwest-logo {
  display: none;
}
#footer .logo a img {
  margin: 0;
}
#footer .company-info {
  padding-top: 10px;
}
@media (max-width: 991px) {
  #footer .company-info {
    padding-top: 5px;
  }
}
#footer .company-info .name {
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 1px solid #444;
  margin-bottom: 10px;
}
#footer .company-info address {
  margin-bottom: 0;
  font-size: 85%;
}
#footer #footer-menu .menu {
  padding: 0;
  margin: 0;
}
#footer #footer-menu .menu .menu-item {
  list-style: none;
}
#footer #footer-menu .menu .menu-item a {
  color: #fcef50;
}
#footer .social-links {
  text-align: center;
}
#footer .social-links a {
  display: inline-block;
  color: #fcef50;
}
#footer .social-links a .fab {
  text-align: center;
  width: 15px;
  margin-right: 8px;
}
#footer-bottom {
  background: #222;
  padding: 5px 0;
  color: #ccc;
  font-size: 13px;
}
#footer-bottom a {
  color: #fcef50;
  text-decoration: underline;
}
#footer-bottom a:hover {
  text-decoration: none;
}
#sidebar .site-box.alt .content {
  padding: 20px;
}
#sidebar .site-box.alt .content .category-list .cat-item {
  list-style: none;
  font-size: 90%;
}
#sidebar .site-box.alt .content .category-list .cat-item a {
  font-size: 120%;
}
#sidebar .top-logo-content {
  padding: 20px 20px 0;
}
#sidebar .top-logo-content .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  margin: 0 auto 15px;
}
#sidebar .top-logo-content .flex img {
  flex: 1;
  width: 100px;
  margin-bottom: 0;
}
#sidebar .top-logo-content .flex .flex-p {
  flex: 2;
  padding-left: 20px;
  font-weight: 700;
  color: #000;
  font-size: 115%;
}
@media (max-width: 1200px) {
  #sidebar .top-logo-content .flex .flex-p {
    font-size: 100%;
  }
}
#sidebar .training-docs {
  margin-bottom: 30px;
}
#sidebar .training-docs .logo {
  background: #fff;
  padding: 8px;
}
@media (max-width: 767px) {
  #sidebar .training-docs .content {
    padding: 0 15px;
  }
}
#sidebar .training-docs .content .link-item {
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
  font-size: 110%;
}
@media (max-width: 1200px) {
  #sidebar .training-docs .content .link-item {
    font-size: 100%;
  }
}
@media (max-width: 991px) {
  #sidebar .training-docs .content .link-item {
    font-size: 110%;
  }
}
#sidebar .training-docs .content .link-item:last-child {
  border: none;
}
#sidebar .training-docs .content .link-item .fas {
  color: #962513;
  margin-right: 8px;
}
#sidebar .services {
  color: #962513;
  font-weight: 700;
  margin-bottom: 30px;
}
#sidebar .services .top-line {
  font-size: 115%;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  #sidebar .services .top-line {
    font-size: 110%;
  }
}
#sidebar .services .call-line {
  font-size: 150%;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  #sidebar .services .call-line {
    font-size: 140%;
  }
}
#sidebar .services .email-line {
  font-size: 115%;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  #sidebar .services .email-line {
    font-size: 110%;
  }
}
#sidebar .services img {
  width: 100%;
  max-width: 350px;
  margin-bottom: 0;
}
#sidebar .service-forms .content .form-item {
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}
#sidebar .service-forms .content .form-item:last-child {
  padding-bottom: 0;
  border: none;
  margin-bottom: 0;
}
#sidebar .service-forms .content .form-item a {
  display: block;
  font-weight: 700;
  font-size: 110%;
}
#sidebar .service-forms .content .form-item p {
  font-size: 85%;
}
#sidebar .click-box {
  margin-bottom: 30px;
}
#sidebar .click-box a {
  display: block;
  background: #962513;
  padding: 8px 15px;
  color: #fff;
  font-size: 110%;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
#sidebar .click-box a:hover {
  background: #333;
}
#sidebar .click-box a .fas {
  margin-right: 5px;
}
#sidebar .recent-news .post-link {
  margin-bottom: 10px;
}
#sidebar .recent-news .post-link a {
  display: block;
  font-size: 120%;
  line-height: 1.3;
}
#sidebar .recent-news .post-link .date {
  font-size: 90%;
}
.site-box {
  position: relative;
  background: #fff;
  border-top: 4px solid #962513;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.site-box p:last-child {
  margin-bottom: 0px;
}
.site-box.alt {
  border-top: none;
  padding: 0;
}
.site-box.alt .title {
  background: #962513;
  padding: 8px 15px;
  color: #fff;
  font-size: 110%;
  font-weight: 700;
  text-transform: uppercase;
}
.site-box.alt .content {
  padding: 25px;
}
.site-box.alt .content .button-link {
  text-align: right;
}
#content {
  padding: 30px 0;
}
#content .entry-content p a {
  text-decoration: underline;
}
#content .entry-content p a strong {
  color: #962513;
}
@media (max-width: 767px) {
  #content .entry-content ul {
    padding-left: 20px;
  }
}
#content .entry-content hr {
  border-color: #962513;
  margin: 30px 0;
}
#content .entry-content .wp-block-image figcaption {
  margin-top: 0;
  text-align: center;
}
#content .entry-content .logo-block .logo-col {
  text-align: center;
}
#content .entry-content .logo-block .logo-col img {
  filter: grayscale(100%);
  max-height: 150px;
  width: auto;
  transition: 0.5s;
}
#content .entry-content .logo-block .logo-col img:hover {
  filter: grayscale(0%);
}
#content .entry-content .nymat-maintenance-block {
  border: 1px solid #ccc;
  margin-bottom: 30px;
}
#content .entry-content .nymat-maintenance-block h2 {
  margin-bottom: 0px;
}
#content .entry-content .nymat-maintenance-block .label {
  font-size: 85%;
}
#content .entry-content .nymat-maintenance-block .wp-block-table {
  width: 100%;
}
#content .entry-content .nymat-maintenance-block .wp-block-table tr {
  border-bottom: 1px solid #ccc;
}
#content .entry-content .nymat-maintenance-block .wp-block-table tr:last-child {
  border: none;
}
#content .entry-content .nymat-maintenance-block .wp-block-table tr td {
  padding: 3px 0;
}
#content .entry-content .nymat-maintenance-block .wp-block-table tr td:last-child {
  text-align: right;
}
#content .entry-content .full-width {
  width: 100%;
}
#content .entry-content .full-width img {
  width: 100%;
}
#content .entry-content .no-margin {
  margin-bottom: 0;
}
#content .entry-content .no-margin img {
  margin-bottom: 0;
}
#content .entry-content .small-margin {
  margin-bottom: 10;
}
#content .entry-content .small-margin img {
  margin-bottom: 0px;
}
#content .entry-content .wp-block-table {
  width: 100%;
  margin-bottom: 30px;
}
#content .entry-content .wp-block-table tr {
  border-bottom: 1px solid #ccc;
}
#content .entry-content .wp-block-table tr:last-child {
  border: none;
}
#content .entry-content .wp-block-table tr td {
  padding: 3px 0;
}
#content .entry-content .wp-block-table.sales-table {
  color: #222;
}
@media (max-width: 767px) {
  #content .entry-content .wp-block-table.sales-table tr {
    display: block;
    padding: 5px 0;
  }
}
@media (max-width: 767px) {
  #content .entry-content .wp-block-table.sales-table tr td {
    display: block;
    padding: 0;
  }
}
#content .entry-content .wp-block-table.no-margin {
  margin-bottom: 0;
}
#content .entry-content .training-centers-block h3 {
  margin-bottom: 0px;
}
#content .entry-content .training-centers-block .wp-block-table {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #content .entry-content .training-centers-block .wp-block-table tr {
    display: block;
    padding: 5px 0;
  }
}
#content .entry-content .training-centers-block .wp-block-table tr td {
  padding-right: 10px;
}
@media (max-width: 767px) {
  #content .entry-content .training-centers-block .wp-block-table tr td {
    display: block;
  }
}
#content .entry-content .about-logos img {
  height: 85px;
  width: auto;
}
@media (max-width: 767px) {
  #content .entry-content .about-logos img {
    height: 60px;
  }
}
@media (max-width: 475px) {
  #content .entry-content .about-logos img {
    height: 44px;
  }
}
@media (max-width: 360px) {
  #content .entry-content .about-logos img {
    height: 36px;
  }
}
#hero {
  height: 500px;
  background: #111;
  overflow: hidden;
}
@media (max-width: 1200px) {
  #hero {
    height: 400px;
  }
}
@media (max-width: 991px) {
  #hero {
    height: 350px;
  }
}
@media (max-width: 767px) {
  #hero {
    height: 180px;
  }
}
@media (max-width: 768px) {
  #hero .hero-wrapper {
    padding: 0;
  }
}
#hero .hero-wrapper.full {
  max-width: none;
  margin: 0;
  padding: 0;
}
#hero .slides .slide {
  height: 500px;
  background-size: cover;
}
@media (max-width: 1200px) {
  #hero .slides .slide {
    height: 400px;
  }
}
@media (max-width: 991px) {
  #hero .slides .slide {
    height: 350px;
  }
}
@media (max-width: 767px) {
  #hero .slides .slide {
    height: 180px;
  }
}
#hero .slides .slide .slide-wrapper {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
}
#hero .slides .slide .slide-wrapper .content-box {
  max-width: 50%;
  opacity: 0;
}
@media (max-width: 767px) {
  #hero .slides .slide .slide-wrapper .content-box {
    max-width: none;
  }
}
#hero .slides .slide .slide-wrapper .content-box .slide-title {
  background: rgba(150, 37, 19, 0.8);
  padding: 15px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 0;
  line-height: 1.3;
}
@media (max-width: 991px) {
  #hero .slides .slide .slide-wrapper .content-box .slide-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #hero .slides .slide .slide-wrapper .content-box .slide-title {
    font-size: 18px;
  }
}
#hero .slides .slide.slick-active .slide-wrapper .content-box, #hero .slides .slide.page-slide .slide-wrapper .content-box {
  animation: 1s slideInLeft 0.3s forwards;
}
#hero .slick-dots {
  bottom: 0px;
  padding: 30px 0 15px;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
#hero .slick-dots li {
  height: auto;
  width: auto;
}
#hero .slick-dots li button {
  width: 30px;
  height: 5px;
  background: #fff;
  padding: 0;
  opacity: 0.5;
}
#hero .slick-dots li button:before {
  display: none;
}
#hero .slick-dots li.slick-active button {
  opacity: 1;
}
.home #content .intro-content .entry-title {
  color: #000;
  text-align: center;
  font-size: 150%;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.home #content .home-cols .home-col {
  margin-bottom: 30px;
}
.home #content .home-cols .home-col .site-box {
  margin-bottom: 0;
  height: 100%;
}
.home #content .home-cols .home-col .site-box .content {
  height: 100%;
  text-align: center;
}
.home #content .home-cols .home-col .site-box .content img {
  height: 175px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .home #content .home-cols .home-col .site-box .content img {
    height: 125px;
  }
}
@media (max-width: 991px) {
  .home #content .home-cols .home-col .site-box .content img {
    height: 150px;
  }
}
@media (max-width: 767px) {
  .home #content .home-cols .home-col .site-box .content img {
    height: auto;
  }
}
.home #content .home-cols .home-col .site-box .content p {
  text-align: left;
}
.home #content .home-cols .home-col .site-box .content .link-wrapper {
  text-align: right;
}
.parent-block {
  margin-top: 30px;
}
.parent-block .parent-page {
  margin-bottom: 30px;
}
.parent-block .parent-page:last-child {
  margin-bottom: 0;
}
.parent-block .parent-page a {
  display: block;
  position: relative;
  background-size: cover;
  overflow: hidden;
}
.parent-block .parent-page a img {
  margin: 0;
  transition: 0.5s;
}
.parent-block .parent-page a .overlay {
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: 1s;
}
.parent-block .parent-page a .overlay .title {
  color: #fff;
  font-size: 150%;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.parent-block .parent-page a:hover img {
  transform: scale(1.05);
}
.parent-block .parent-page a:hover .overlay {
  opacity: 0;
}
.blog .post, .archive .post {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog .post, .archive .post {
    margin-bottom: 10px;
  }
}
.blog .post .attachment-post-thumbnail, .archive .post .attachment-post-thumbnail {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog .post .attachment-post-thumbnail, .archive .post .attachment-post-thumbnail {
    margin-bottom: 15px;
  }
}
.blog .post .thumbnail-container, .archive .post .thumbnail-container {
  height: 158px;
  background-size: cover;
  background-position: center center;
}
.blog .post header .cat-links, .archive .post header .cat-links {
  text-transform: uppercase;
}
.blog .post header .cat-links a, .archive .post header .cat-links a {
  color: #666;
}
.blog .post header .cat-links a:hover, .archive .post header .cat-links a:hover {
  color: #111;
}
.blog .post header .entry-title, .archive .post header .entry-title {
  margin-bottom: 5px;
}
.blog .post header .entry-meta, .archive .post header .entry-meta {
  margin-bottom: 15px;
}
.blog .entry-footer, .archive .entry-footer {
  display: none;
}
.single-post header .entry-title {
  margin-bottom: 5px;
}
.single-post header .entry-meta {
  margin-bottom: 15px;
}
.single-post .entry-footer {
  border-top: 1px solid #ccc;
  padding-top: 15px;
  margin-bottom: 20px;
}
.single-post .footer {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
.single-post .footer #nav-below {
  display: flex;
  justify-content: space-between;
}
.page-template-page-landing-page #hero {
  background: #fff;
}
.page-template-page-landing-page #content .entry-content h2, .page-template-page-landing-page #content .entry-content h3 {
  text-transform: uppercase;
  font-weight: 700;
}
.page-template-page-landing-page #content .entry-content h2 {
  font-weight: 900;
}
.page-template-page-landing-page #content .entry-content h1.has-background, .page-template-page-landing-page #content .entry-content h2.has-background, .page-template-page-landing-page #content .entry-content h3.has-background, .page-template-page-landing-page #content .entry-content h4.has-background {
  padding: 15px;
}
.page-template-page-landing-page #content .entry-content hr {
  border-color: transparent;
}
.page-template-page-landing-page #content .entry-content .button, .page-template-page-landing-page #content .entry-content .wp-block-button__link {
  background: #52acea;
  color: #fff;
  border-radius: 5px;
}
.page-template-page-landing-page #content .entry-content .button:hover, .page-template-page-landing-page #content .entry-content .wp-block-button__link:hover {
  background: #333;
}
#mega-menu-main-menu .mega-sub-menu .mega-sub-menu {
  background: #333 !important;
}
#mega-menu-main-menu .mega-sub-menu .mega-sub-menu .mega-menu-item {
  border: none !important;
}
#mega-menu-main-menu .mega-sub-menu .mega-sub-menu .mega-menu-item a {
  font-size: 15px !important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {
  content: '';
  float: none;
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
}
#responsive-menu-pro .responsive-menu-pro-item-link {
  text-transform: uppercase;
}
#responsive-menu-pro .responsive-menu-pro-submenu-depth-2 .responsive-menu-pro-item-link {
  background-color: #333 !important;
}
#content .gform_wrapper .gform_heading .gform_description {
  font-size: 85%;
}
@media (max-width: 767px) {
  #content .gform_wrapper .gform_body ul {
    padding-left: 0px;
  }
}
#content .gform_wrapper .gform_body ul li.gfield {
  margin-top: 0;
  padding-right: 0;
}
@media (min-width: 700px) {
  #content .gform_wrapper .gform_body ul li.gfield.gf_left_half {
    padding-right: 8px;
  }
}
@media (min-width: 700px) {
  #content .gform_wrapper .gform_body ul li.gfield.gf_right_half {
    padding-left: 8px;
  }
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container {
  margin-top: 0;
  margin-bottom: 15px;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container input {
  margin: 0 0 0 1px;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="text"], #content .gform_wrapper .gform_body ul li.gfield .ginput_container textarea {
  padding: 5px 10px;
  border: 1px solid #ccc;
  background: #f6f6f6;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="text"]::placeholder, #content .gform_wrapper .gform_body ul li.gfield .ginput_container textarea::placeholder {
  color: #777;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container input.small {
  width: auto;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container textarea {
  height: 200px;
  margin-bottom: 10px;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="radio"] {
  margin-bottom: 0px;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container input[type="file"] {
  width: 100%;
  font-size: 85%;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container.ginput_container_radio ul.gfield_radio {
  margin: 0 0 15px;
  width: 100%;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container.ginput_container_radio ul.gfield_radio li {
  margin-bottom: 4px;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container.ginput_container_radio ul.gfield_radio label {
  font-size: 15px;
  margin: 0;
  padding: 0 5px;
  max-width: 100%;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container select {
  height: 33px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 85%;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container label {
  font-size: 75%;
}
#content .gform_wrapper .gform_body ul li.gfield .ginput_container .name_last {
  padding-right: 0;
}
#content .gform_wrapper .gform_body ul li.gfield .gfield_label {
  margin-bottom: 0px;
  font-size: 85%;
  color: #333;
}
#content .gform_wrapper .gform_body ul li.gfield .gfield_description {
  padding-top: 0;
}
#content .gform_wrapper .gform_body ul li.gfield.gsection {
  margin: 0 0 20px !important;
  padding: 15px 0;
}
#content .gform_wrapper .gform_body ul li.gfield.gsection .gsection_description {
  font-size: 85%;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_html {
  font-size: 85%;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_html .red {
  color: #962513;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_html .part-title {
  font-size: 16px;
  color: #222;
  font-weight: 700;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_html.final-info {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  text-align: center;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_html.final-info strong {
  color: #333;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_html.final-info strong .red {
  color: #962513;
}
#content .gform_wrapper .gform_body ul li.gfield.tabs .gfield_label {
  display: none;
}
#content .gform_wrapper .gform_body ul li.gfield.tabs .ginput_container {
  width: 100%;
  margin-left: 0;
}
#content .gform_wrapper .gform_body ul li.gfield.tabs .gfield_radio {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  #content .gform_wrapper .gform_body ul li.gfield.tabs .gfield_radio {
    flex-flow: column;
  }
}
#content .gform_wrapper .gform_body ul li.gfield.tabs .gfield_radio li {
  background: #eee;
  margin-right: 5px;
}
@media (max-width: 767px) {
  #content .gform_wrapper .gform_body ul li.gfield.tabs .gfield_radio li {
    margin-right: 0;
  }
}
#content .gform_wrapper .gform_body ul li.gfield.tabs .gfield_radio li:last-child {
  margin-right: 0;
}
#content .gform_wrapper .gform_body ul li.gfield.tabs .gfield_radio li [type=radio] {
  display: none;
}
#content .gform_wrapper .gform_body ul li.gfield.tabs .gfield_radio li label {
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 6px 12px !important;
  border: 1px solid #eee;
}
#content .gform_wrapper .gform_body ul li.gfield.tabs .gfield_radio li input[type=radio]:checked + label {
  color: #000;
  border: 1px solid #aaa;
}
#content .gform_wrapper .gform_body ul li.gfield.tabs-textarea {
  margin-bottom: 10px;
}
#content .gform_wrapper .gform_body ul li.gfield.tabs-textarea .ginput_container {
  margin-bottom: 0;
}
#content .gform_wrapper .gform_body ul li.gfield.tabs-textarea .ginput_container textarea {
  height: 75px;
  margin-bottom: 0;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_error {
  max-width: 100% !important;
  background-color: transparent;
  border: none;
  padding: 0 0 5px 0;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_error .ginput_container {
  margin-bottom: 0;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_error .ginput_container label {
  font-size: 80%;
}
#content .gform_wrapper .gform_body ul li.gfield.gfield_error .ginput_container input, #content .gform_wrapper .gform_body ul li.gfield.gfield_error .ginput_container textarea {
  border: 2px solid #C89797;
}
#content .gform_wrapper .gform_footer {
  width: 100%;
  margin: 0;
  padding: 20px 0 0;
  text-align: center;
  border-top: 1px solid #ccc;
}
#content .gform_wrapper .gform_footer .gform_button {
  border: 0;
  outline: none;
  margin: 0 auto;
}
#content .sidebar-form_wrapper {
  margin: 0px;
}
#content .sidebar-form_wrapper .gform_body ul li.gfield .ginput_container input {
  background: #eee;
}
#content .sidebar-form_wrapper .gform_body ul li.gfield .ginput_container textarea {
  height: 100px;
}
#content .sidebar-form_wrapper .gform_body ul li.gfield.name .ginput_container .name_first, #content .sidebar-form_wrapper .gform_body ul li.gfield.name .ginput_container .name_last {
  padding-right: 16px;
}
@media (min-width: 992px) {
  #content .sidebar-form_wrapper .gform_body ul li.gfield.name .ginput_container .name_first, #content .sidebar-form_wrapper .gform_body ul li.gfield.name .ginput_container .name_last {
    width: 100% !important;
  }
}
@media (max-width: 640px) {
  #content .sidebar-form_wrapper .gform_body ul li.gfield.name .ginput_container .name_first, #content .sidebar-form_wrapper .gform_body ul li.gfield.name .ginput_container .name_last {
    padding-right: 0px;
  }
}
#content .sidebar-form_wrapper .gform_footer {
  border: none;
  padding-top: 20px;
}
#content .training-individual_wrapper {
  margin: 0px;
}
#content .training-individual_wrapper .gform_body ul li.gfield .ginput_container .name_last {
  padding-right: 15px;
}
#content .parts-form_wrapper .gform_body ul li.gfield .ginput_container_radio ul.gfield_radio {
  margin: 0 0 15px;
  width: 100%;
}
#content .parts-form_wrapper .gform_body ul li.gfield .ginput_container_radio ul.gfield_radio li {
  margin-bottom: 4px;
}
#content .parts-form_wrapper .gform_body ul li.gfield .ginput_container_radio ul.gfield_radio li.gchoice_3_37_6 {
  display: flex;
  align-items: center;
  width: 100%;
}
#content .parts-form_wrapper .gform_body ul li.gfield .ginput_container_radio ul.gfield_radio li.gchoice_3_37_6 input[type="radio"] {
  margin-right: 5px;
}
#content .parts-form_wrapper .gform_body ul li.gfield.additional-parts {
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
#content .rotary-form_wrapper .gform_body ul li.gfield .ginput_container textarea {
  height: 120px;
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .gfield_label {
  float: none;
  width: 100%;
  margin-bottom: 15px;
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container {
  width: 100%;
  margin-left: 0;
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio {
    flex-flow: wrap;
  }
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li {
  width: 75px;
  align-self: flex-end;
}
@media (max-width: 767px) {
  #content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li {
    width: 50%;
    margin-bottom: 15px !important;
  }
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li:nth-child(5) {
  width: auto;
}
@media (max-width: 767px) {
  #content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li:nth-child(5) {
    width: 100%;
    margin-bottom: 5px !important;
  }
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li:before {
  display: block;
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li:nth-child(1):before {
  content: url(/wp-content/uploads/2019/06/rotary_7pin.gif);
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li:nth-child(2):before {
  content: url(/wp-content/uploads/2019/06/rotary_11pin.gif);
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li:nth-child(3):before {
  content: url(/wp-content/uploads/2019/06/rotary_14pin.gif);
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li:nth-child(4):before {
  content: url(/wp-content/uploads/2019/06/rotary_17pin.gif);
}
#content .rotary-form_wrapper .gform_body ul li.gfield.radio-with-images .ginput_container .gfield_radio li:nth-child(5):before {
  content: url(/wp-content/uploads/2019/06/rotary_28pin.gif);
}
.gform_wrapper.gf_browser_ie .gform_footer input.button {
  padding: 8px 16px !important;
}
.midwest #header-top {
  background-color: #14007D;
}
.midwest #header-top .social-links a {
  background-color: #d3d3d3 !important;
}
.midwest #header {
  border-color: #14007D;
  color: #14007D !important;
}
.midwest #header .wrapper .logo .main-logo {
  display: none;
}
.midwest #header .wrapper .logo .midwest-logo {
  display: block;
}
.midwest .site-box.alt .title {
  background-color: #14007D !important;
}
.midwest .site-box {
  border-color: #14007D;
}
.midwest .site-box h1 {
  color: #14007D;
}
.midwest #footer .logo .main-logo {
  display: none;
}
.midwest #footer .logo .midwest-logo {
  display: block;
}
.midwest #footer .social-links a {
  color: #d3d3d3 !important;
}
.midwest #gform_submit_button_1 {
  background-color: #14007D !important;
}
.midwest #gform_submit_button_1:hover {
  background-color: #d3d3d3 !important;
}
.midwest #has-text-align-center {
  color: #14007d !important;
}
.midwest #content .entry-content p a strong {
  color: #14007d;
}
