/*
Theme Name: Schwans Company
Theme URI: https://schwanscompany.com
Text Domain: schwans-company
Version: 0.1.0
Description: Minimal block theme starter for WP Engine. Clean slate, no external assets, no remote block patterns.
Author: Schwans Dev Team
Author URI: https://schwanscompany.com
*/

@import url(//fonts.googleapis.com/css?family=Noto+Sans:400,700);

@font-face {
  font-family: 'CJOnlyOneNewBodyRegular';
  src: url('/wp-content/themes/schwans-company/assets/fonts/cj_onlyone_new_body_regular.woff') format('woff');
}

@font-face {
  font-family: 'CJOnlyOneNewTitleBold';
  src: url('/wp-content/themes/schwans-company/assets/fonts/cj_onlyone_new_title_bold.woff') format('woff');
}

/* Base */
html {
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}

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

body {
  background: #fff;
  color: #000;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

a:focus {
  outline-offset: 2px;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #97999b;
}

p {
  margin: 0 0 15px;
}

hr {
  border-top: 2px solid #ccc;
}
.display {
  display: block;
}

.display-none {
  display: none;
}

.semi-bold {
  font-weight: 600;
}

.white-background {
  background: #fff;
  padding: 2em;
}

.buffer-bottom {
  margin-bottom: 15px;
}
iframe {
  max-width:100%;
}

.responsive-table {
  font-size: 12px;
  
  overflow-x: auto;
  margin-bottom: 1em;
}

.responsive-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

.responsive-table table th,
.responsive-table table td {
  border: 1px solid #ddd;
  text-align: left;
  padding: 0.75rem;
}

.responsive-table table th ul,
.responsive-table table td ul {
  margin: 0;
}

.responsive-table table ul li {
  font-size: 12px;
}

.responsive-table table th {
  text-align: center;
}

.responsive-table table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: 'CJOnlyOneNewTitleBold', sans-serif;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase !important;
}

h1 {
  font-size: 40px;
  line-height: 39px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

/* Layout helpers */
.container {
  max-width: 2000px;
  margin: 0 auto;
  padding: 0;
}
.site-main.container {
  padding:0;
}
.btn, button, .leadership-link {
  cursor: pointer;
}
button:hover,
.leadership-link:focus,
.leadership-link:hover {
  background-color: #ef151e;
  color: white;
  transform: scale(1.07);
}
.boxed-container {
  width: 1170px;
  max-width: 100%;
  margin-left:auto !important;
  margin-right:auto !important;
  padding: 0 15px;
}

.home .container {
  padding: 0;
}

.stack>*+* {
  margin-top: var(--stack-gap, 1rem);
}

/* Header */
.site-header {
  padding: 0 25px 10px;
}

.site-topbar {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  font-size: 14px;
}

.site-topbar .inner,
.site-header-main .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-topbar .inner {
  padding: 6px 0;
}

.site-header-main .inner {
  padding: 14px 0;
  gap: 1rem;
}

.custom-logo {
  height: auto;
  width: 250px;
  max-width:100%;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: stretch;
  gap: 24px;
}

.header-col--left {
  display: flex;
  align-items: center;
}

.header-col--right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height:120px;
}

.header-toprow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 10px;
}

.header-bottomrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.header-bottomrow li a {
  font-weight: 600;
  font-size: 16px;
}

.header-bottomrow li li a {
  font-weight: 300;
  font-size: 14px;
}

.is-black a {
  color: #000;
  text-decoration: none;
}

.is-black a:hover,
.is-black a:focus {
  text-decoration: underline;
}
.primary-nav .sub-menu {
  display: none;
  position: absolute;
  padding: 26px 0 0;
  margin: 0;
  list-style: none;
  min-width: 180px;
  z-index: 9999;
}

.primary-nav li.menu-item-has-children:hover>.sub-menu {
  display: block;
}

#menu-main-menu .sub-menu li {
  width: 100%;
  margin-left:0;
  background: #000;
}

.primary-nav .sub-menu li a {
  display: block;
  color: #fff;
  padding: 20px 16px;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.primary-nav .sub-menu li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
}

/* Menus & social */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

#menu-main-menu li {
  margin-left:35px;
}
#menu-top-menu a {
  font-weight:100;
}
.menu a {
  opacity: .9;
}

.menu a:hover,
.menu a:focus {
  opacity: 1;
}

.menu--social a {
  display: inline-flex;
  align-items: center;
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
}

.social-list .icon {
  display: inline-flex;
  line-height: 0;
}

/* Mobile nav */
/* Mobile nav base */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 0;
  line-height: 1;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
}

.primary-nav {
  display: flex;
}
.facilities-header {
  background: url("/images/headers/hdr-facilities-sm.jpg") no-repeat center;
  background-size: cover;
  height: 150px;
  /*background-position: 100% 46%;*/
}

#facilities button {
  margin-bottom: 2em;
}

.blue-header {
  background-color: #006ecd;
  color: #fff;
  padding: 1em;
  text-align: left;
}

.blue-header h2 {
  color: #fff;
  font-size: 30px;
  margin: 0;
  padding: 0;
}

.orange-header {
  background-color: #ef151e;
  color: #fff;
  padding: 1em;
  text-align: left;
}

.gray-header {
  background-color: #000000;
  color: #fff;
  padding: 1em;
  text-align: left;
}

.gold-header {
  background-color: #ff9700;
  color: #fff;
  padding: 1em;
  text-align: left;
}

.orange-header h3,
.gray-header h3,
.gold-header h3 {
  font-size: 24px;
}


.facilities .middle-column-text {
  font-weight: 700;
}

.facilities-listing h3 {
  color: #fff;
  margin: 0;
  padding: 0;
}

.facilities-listing p {
  font-size: 1.25em;
  margin-top: 1em;
}
.hometown-img img {
  margin:0 auto;
}
@media (max-width:900px) {
  .header-grid {
    gap: 16px;
  }

  .header-col--right {
    gap: 16px;
  }
}

@media (max-width:782px) {
  .site-topbar, .header-toprow {
    display: none;
  }

  .primary-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .primary-nav.is-open {
    display: block;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Main */
main {
  padding: 24px 0;
}

.entry-title {
  margin: 0 0 1rem;
}

.entry-content>*+* {
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding: 24px 15px;
  font-size: 14px;
}

/* Edge-to-edge helpers */
.page-hero-250,
.fiveup-row {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.page-hero-250 {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.page-hero-250 .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fiveup-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-height: 220px;
}

.fiveup-tile {
  position: relative;
  display: block;
  min-height: 200px;
  overflow: hidden;
}

.fiveup-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fiveup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  opacity: 1;
  transition: opacity .35s ease;
}

.fiveup-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 70%;
  transition: opacity .35s ease;
}

.fiveup-tile:hover .fiveup-overlay,
.fiveup-tile:focus .fiveup-overlay,
.fiveup-tile:active .fiveup-overlay {
  opacity: 0;
}

.fiveup-tile:hover .fiveup-logo,
.fiveup-tile:focus .fiveup-logo,
.fiveup-tile:active .fiveup-logo {
  opacity: 0;
}


.split-row {
  margin: 40px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 24px;
  align-items: start;
}

.split-left {
  align-self: start;
}

.split-bar {
  display: block;
  height: 5px;
  width: 100%;
  margin-bottom: 12px;
}

.split-right {
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width:768px) {
  .split-grid {
    display:block;
    /* grid-template-columns: 1fr;*/
  }
}

.sixpack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.sixpack-card {
  position: relative;
  display: block;
  min-height: 350px;
  overflow: hidden; 
}

.sixpack-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .4s ease;
}

.sixpack-card:hover .sixpack-bg,
.sixpack-card:focus .sixpack-bg {
  transform: scale(1.06);
}

.sixpack-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sixpack-text {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-family: 'CJOnlyOneNewTitleBold', sans-serif;
}

@media (max-width:640px) {
  .sixpack-grid {
    grid-template-columns: 1fr;
  }
}

#hero-video {
  position: relative;
  height: 70vh;
  overflow: hidden;
  margin-bottom:15px;
}

#hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 1600px;
  max-width: 98%;
}

.hero-text-overlay h1 {
  font-size: 64px;
  line-height:60px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-button {
  padding: 12px 25px;
  font-size: 24px;
  color: #000;
  font-family: 'CJOnlyOneNewTitleBold', sans-serif;
  border: none;
  cursor: pointer;
}

.hero-text-overlay-link {
  text-decoration: none;
}

.center-columns.home.row {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  max-width: 2000px;
}

.center-columns.home.row>a {
  display: block;
  flex: 0 0 33.3333%;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  text-decoration: none;
  box-sizing: border-box;
}

.center-columns.home.row>a>.colA,
.center-columns.home.row>a>.colB,
.center-columns.home.row>a>.colC {
  position: relative;
  height: 100%;
}

.colA-image,
.colB-image,
.colC-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all .5s ease;
}

.colA:hover .colA-image,
.colB:hover .colB-image,
.colC:hover .colC-image {
  transform: scale(1.3);
  transition: all .5s ease;
}

.col-text.caption-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'CJOnlyOneNewTitleBold', sans-serif;
}

.col-text-home {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width:768px) {
  .center-columns.home.row>a {
    flex: 0 0 100%;
    min-height: 260px;
  }
}

.schwan-quote {
  padding: 50px;
  text-align: center;
  width:calc(100% + 30px);
  margin-left:-15px;
  margin-top:25px;
}

.schwan-quote h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.schwan-quote p {
  font-size: 20px;
  margin-bottom: 20px;
}

.schwan-quote a {
  text-decoration: underline;
}

.schwan-quote a:hover {
  text-decoration: none;
}

.bigger-button {
  font-size: 20px;
  padding: 15px 30px;
  border: none;
  color: #000;
  cursor: pointer;
}
button,
.hero-button {
  background-color: #ff9700;
  color: #000000;
  padding: 12px 20px;
  text-align: left;
  border: 0;
  font-size: 24px !important;
  font-family: 'CJOnlyOneNewTitleBold', sans-serif;
  font-weight: 700;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  margin-right: 1em;
}
.hvr-grow {
  display: inline-block;
  transition: transform .3s ease-in-out;
  max-width: 100%;
  word-wrap: anywhere;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.05);
  background-color: #ef151e !important;
  color: #fff;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000
}

.video-modal.is-open {
  display: block
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .8)
}

.video-frame-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5)
}

.video-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

.video-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 1001;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer
}

@media (max-width:640px) {
  .video-frame-wrap {
    width: 94vw
  }
}

.sixpack-grid.sixpack-cols-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 0
}

@media (max-width:900px) {
  .sixpack-grid.sixpack-cols-3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .sixpack-grid.sixpack-cols-3 {
    grid-template-columns: 1fr
  }
}

.page-hero-250 {
  position: relative;
}

.video-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
}

.video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 47.5px solid transparent;
  border-bottom: 47.5px solid transparent;
  border-left: 95px solid rgba(24, 123, 209, 0.8);
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.video-modal.is-open {
  display: block;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  z-index: 1000;
}

.video-frame-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
  z-index: 1002;
}

.video-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 1003;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width:640px) {
  .video-frame-wrap {
    width: 94vw;
  }
}

.threeup-row {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw)
}

.threeup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 180px
}

.threeup-tile {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden
}

.threeup-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}

.threeup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  opacity: 1;
  transition: opacity .35s ease
}

.threeup-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  transition: opacity .35s ease
}

.threeup-tile:hover .threeup-overlay,
.threeup-tile:focus .threeup-overlay {
  opacity: 0
}

.threeup-tile:hover .threeup-logo,
.threeup-tile:focus .threeup-logo {
  opacity: 0
}

@media (max-width:992px) {
  .threeup-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .threeup-grid {
    grid-template-columns: 1fr
  }
}

.entry {
  padding: 0 0 25px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.entry:last-child {
  border-bottom: 0;
}

.entry__header {
  margin-bottom: 6px;
}

.entry__date--long {
  font-size: .9rem;
  opacity: .7;
}

.entry__title {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 4px 0 10px;
}

.entry__title a {
  text-decoration: none;
}

.entry__title a:hover,
.entry__title a:focus {
  text-decoration: underline;
}

.entry__content img {
  max-width: 100%;
  height: auto;
}

.entry__content a {
  text-decoration: underline;
}

.default-page-container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.page-body-default.row {
  display: block;
}

.col-xs-12 {
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .col-sm-4 {
    width: 33.3333%;
    float: left;
    box-sizing: border-box;
  }

  .col-sm-8 {
    width: 66.6666%;
    float: left;
    box-sizing: border-box;
  }

  .idiot-container.row::after {
    content: "";
    display: table;
    clear: both;
  }
}

.idiot-container.row {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 2em;
}

.idiot-container h2 {
  font-size: 30px;
  margin-top: 0;
}

.header-line-decoration-orange {
  border-top: 5px solid #ef151e;
}

.header-line-decoration-yellow {
  border-top: 5px solid #ff9700;
}

.header-line-decoration-blue {
  border-top: 5px solid #006ecd;
}

.header-line-decoration-gray {
  border-top: 5px solid #000000;
}

#news {
  background-color: #fff;
  color: #006ecd;
  font-family: 'CJOnlyOneNewTitleBold', sans-serif;
}

#news a {
  color: #006ecd;
}
#news ul {
  padding-left:0;
}
#news li {
  font-family: 'CJOnlyOneNewBodyRegular', sans-serif;
  margin-bottom: 1.5em;

  list-style: none;
  color:#000;
}

#news li>a {
  display: inline-block;
  line-height: 1.2;
  margin-bottom: .5rem;
}

#news li a:first-child {
  font-family: 'CJOnlyOneNewTitleBold', sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  text-decoration: none;
}

#news.archive li {
  font-size: 1em;
  margin-left: 0;
}

#news.archive li a:first-child {
  font-size: 1em;
  text-decoration: underline;
}
.img-news {
  margin-bottom: 1em;
}

.mobile-spacing li {
  margin-bottom: 1.5em;
  list-style: none;
  margin-left: -40px;
}

.bootstrap-active,
.bootstrap-active *,
.bootstrap-active *::before,
.bootstrap-active *::after {
  box-sizing: border-box;
}

.bootstrap-active [class*="col-"] {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.bootstrap-active .col-xs-12 {
  float: left;
  width: 100%;
}

@media (min-width: 768px) {
  .bootstrap-active .col-sm-6 {
    float: left;
    width: 50%;
  }
}

.bootstrap-active .clearfix::before,
.bootstrap-active .clearfix::after {
  content: " ";
  display: table;
}

.bootstrap-active .clearfix::after {
  clear: both;
}

.bootstrap-active .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.bootstrap-active .embed-responsive {
  position: relative;
  display: block;
  height: 0;
  overflow: hidden;
}

.bootstrap-active .embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.bootstrap-active .embed-responsive iframe,
.bootstrap-active .embed-responsive embed,
.bootstrap-active .embed-responsive object,
.bootstrap-active .embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bootstrap-active a {
  text-decoration: none;
}

.bootstrap-active a:focus,
.bootstrap-active a:hover {
  text-decoration: underline;
}

.bootstrap-active [class*="col-"] {
  margin-bottom: 15px;
}

.nf-form-content nf-fields-wrap {
  display: block !important;
  column-count: 2 !important;
  column-gap: 24px !important;
  column-fill: balance !important;
}

.nf-form-content nf-fields-wrap nf-field {
  display: inline-block !important;
  width: 100% !important;
  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  page-break-inside: avoid !important;
}

.nf-form-fields-required {
  display: none;
}

form .nf-field-container {
  margin-bottom: 5px;
}

.nf-field-element input,
.nf-field-element select,
.nf-field-element textarea {
  border-radius: 0;
  border: 1px solid #ddd;
  min-height:30px;
}

.nf-field-element input:focus,
.nf-field-element select:focus,
.nf-field-element textarea:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.nf-form-content input[type="submit"].nf-element,
.nf-form-content .submit-container .nf-element[type="submit"] {
  background-color: #ddd;
  border: none;
  border-radius: 0;
  color: #000;
  font-family: 'CJOnlyOneNewTitleBold', sans-serif;
  font-weight: 700;
  padding: 15px 20px;
  background-color: #ff9700;
  transition: all .5s ease;
  cursor:pointer;
  font-size:16px;
  text-transform: uppercase;
  margin-top:20px;
}

.nf-form-content input[type="submit"].nf-element:hover,
.nf-form-content .submit-container .nf-element[type="submit"]:hover {
background-color: #ef151e;
  color: white;
  transform: scale(1.07);
}
html .list-checkbox-wrap .nf-field-element ul {
  display: flex;
  flex-direction: column;
}
html .list-checkbox-wrap .nf-field-element li {
  margin-top:0;
}
@media (max-width: 768px) {
  .nf-form-content nf-fields-wrap {
    column-count: 1 !important;
  }
}

@media (max-width: 782px) {
  .fiveup-grid,
  html .fiveup-grid.fiveup-grid--5,
  html .fiveup-grid.fiveup-grid--4, .threeup-grid, .sixpack-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .fiveup-logo {
    max-height: 80%;
    max-width: 300px;
  }
  .hero-text-overlay h1 {
    font-size: 44px;
    line-height: 45px;
  }

  .site-header {
    position: relative;
  }

  .header-col--right {
    min-height: 60px;
  }

  .site-topbar,
  .header-toprow {
    display: none;
  }

  .header-bottomrow {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-toggle:hover {
    background: none;
  }

  #menu-main-menu li {
    margin-left: 0;
  }

  /* Animated dropdown panel */
  .primary-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 2px solid #000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition:
      max-height .35s ease,
      opacity .25s ease,
      transform .25s ease;
  }

  .primary-nav.is-open {
    max-height: 80vh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav .menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 14px 18px;
  }

  .primary-nav .menu>li {
    margin: 0;
    width: 100%;
  }

  .primary-nav .menu>li>a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    font-family: 'CJOnlyOneNewTitleBold', sans-serif;
    text-transform: uppercase;
    ;
  }


  /* Mobile submenus always open */
  .primary-nav .sub-menu {
    display: block;
    position: static;
    padding: 6px 0 10px 16px;
    margin: 0;
    min-width: 0;
    list-style: none;
  }

  #menu-main-menu .sub-menu li {
    margin: 0;
    background: transparent;
  }

  .primary-nav .sub-menu li a {
    display: block;
    color: #000;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
  }

  .primary-nav .sub-menu li a:hover::after {
    display: none;
  }
}



/* Font overrides */
.top-social-media-list a,
.home-footer,
#news li, .navbar-nav a, header, header a, footer .contact-us{
  font-family: 'CJOnlyOneNewBodyRegular', sans-serif;
  font-weight: 400;
}
.executive-title-2,
.executive-title-2 a, div.executive-title, footer,
footer a {
  font-family: 'CJOnlyOneNewBodyRegular', sans-serif;
  font-weight: 700;
}