/*Jobs For Catholics */

:root {
  --font-primary: 'Open Sans', sans-serif;
  --font-secondary: Roboto, sans-serif;
  --color-text: #272727;
  --color-primary: #29b8fb;
  --color-primary-hover: #0085c8;
  --color-muted: #868e96;
  --color-background: #ffffff;
  --color-header: #25323f;
  --color-footer-link: #ffffff;
  --border-radius: 1px;
  --space-small: 0.5rem; /* Small spacing */
  --space-medium: 1rem; /* Medium spacing */
  --space-large: 1.5rem; /* Large spacing */
}

body {
  font: normal 1rem var(--font-primary); /* Using rem for consistent font size */
  line-height: 1.5;
  color: var(--color-text);
}

.contentContainer,
.wrapper {
  max-width: 1340px;
}

main {
  margin-top: 173px;
  padding-top: 1.25rem; /* 20px */
}

h1,
h2,
h3 {
  font-family: var(--font-secondary);
  margin-bottom: var(--space-medium); /* Using spacing variable */
}

h1 {
  font-size: 2.6rem; /* Using rem for consistent font size */
}

.formContainer h2 {
  padding-top: var(--space-medium); /* Using spacing variable */
}

.formItemContainer {
  min-width: 17%;
}

.formLabel {
  color: #58595b;
  font-weight: 600;
  margin-top: var(--space-medium); /* Using spacing variable */
}

input,
select,
textarea {
  font: normal 1rem var(--font-primary);
  line-height: 1.5;
}

input[maxlength='3'] {
  width: 50px !important;
}

input[maxlength='5'] {
  width: 70px !important;
}

input[maxlength='10'] {
  width: 120px !important;
}

input[type='text'],
input[type='password'],
textarea,
select {
  border-radius: var(--border-radius);
  padding: 0.625rem; /* 10px */
}

input[type='text'],
input[type='password'],
textarea {
  width: 20rem; /* 320px */
}

.btn {
  display: inline-block; /* Consistent button styles */
  padding: 0.625rem 1.25rem; /* 10px 20px */
  border-radius: var(--border-radius);
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--color-primary-hover);
}

a.linkButton.whtBl {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

a.linkButton.whtBl:hover {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

a.linkButton.blueWH {
  border: 1px solid var(--color-primary);
}

input[type="submit"],
.btn, /* Reusing .btn class for consistency */
a.linkButton,
label.linkButton,
button,
input[type="file"] {
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  padding: 0.625rem 1.25rem; /* 10px 20px */
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.25);
}

input[type='submit']:hover,
a.linkButton:hover,
label.linkButton:hover,
button:hover {
  background-color: var(--color-primary);
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

input[type='submit'].inline,
.linkButton.inline {
  padding: 0.25rem 0.5rem; /* 4px 8px */
  border-radius: var(--border-radius);
}

input#tbName,
input#tbEmailAddress {
  width: 41.5625rem; /* 665px */
}

input.date {
  width: 7.5rem; /* 120px */
}

#Login input#tbEmailAddress {
  width: 20rem; /* 320px */
}

.listHeaderRow {
  font-weight: 600;
}

.listHeaderRow .listHeaderColumn {
  padding: 0.625rem 0.3125rem; /* 10px 5px */
  background: #f0f2f2;
  vertical-align: middle;
}

.listHeaderRow a {
  text-decoration: none;
  color: var(--color-primary);
}

.listHeaderRow a:hover {
  text-decoration: underline;
  color: #ff9800;
}

.listRow .listColumn {
  padding: 0.625rem 0.3125rem; /* 10px 5px */
}

.listRow a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
}

.listRow a:hover {
  text-decoration: underline;
  color: #ff9800;
}

div.listRow a[class*='inline'] {
  color: #ffffff;
}

.small {
  font-size: 0.8rem; /* 80% */
  font-weight: 400;
}

.text-muted {
  color: var(--color-muted) !important;
}

#modified.formItemContainer,
.formItemContainer:has(.formButtonContainer) {
  width: 100%;
}

#state.formItemContainer {
  min-width: auto;
}

/* #region CustomInputs */
label i.cb-checked {
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
}

label i.cb-checked:after {
  background-color: var(--color-primary);
}

label i.rb-selected {
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
}

label i.rb-selected:after {
  background-color: var(--color-primary);
}
/* #endregion */

/* #region Header */
header * {
  transition:
    background-color 0.5s ease-in-out,
    margin 0.5s ease-in-out,
    max-width 0.5s ease-in-out;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-background);
  overflow: visible;
  z-index: 9999;
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.25);
}

.topBar {
  background-color: var(--color-primary);
  padding: 1.0625rem 0.9375rem; /* 17px 15px */
  max-width: 100%;
}

.topSocialDiv {
  float: left;
  margin-top: -0.75rem; /* -12px */
  padding-left: 0.625rem; /* 10px */
}

.topSocialDiv .fa {
  font-size: 0.875rem; /* 14px */
  line-height: 26px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  margin: 0 0.125rem 0 0; /* 2px */
  background-color: transparent;
}

#boardLogo {
  float: left;
  max-width: 340px;
}

#boardLogo a {
  text-decoration: none;
}

.accountInfo {
  display: inline-block;
  color: #ffffff;
  margin-top: -0.875rem; /* -14px */
  font-size: 0.875rem; /* 14px */
}

.accountInfo a {
  background-color: var(--color-primary-hover);
  border-radius: var(--border-radius);
  padding: 0 0.5rem; /* 0 8px */
  margin: 0;
  line-height: 26px;
}

.accountInfo a:hover {
  background-color: var(--color-primary-hover);
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* #endregion */

/* #region Menu */
nav {
  width: auto;
  background-color: transparent;
  float: right;
  clear: right;
  margin-top: 1.6875rem; /* 27px */
}

nav span,
nav a {
  font-size: 1.1875rem; /* 19px */
  white-space: nowrap;
  line-height: 26px;
}

nav ul ul a {
  font-size: 0.9375rem; /* 15px */
  line-height: 28px;
}

nav > ul > li:hover,
nav > ul a:hover {
  background-color: transparent;
}

nav > ul > li {
  color: var(--color-text);
  padding: 0.25rem 0.25rem 0.25rem 1rem; /* 4px 4px 4px 16px */
}

nav > ul > li:last-child {
  display: none;
}

nav a:hover {
  color: var(--color-primary);
}

nav > ul > li > a,
nav > ul > li > span {
  padding: 0.125rem 0.625rem; /* 2px 10px */
}

nav ul li > ul {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  padding: 0.5rem 1rem; /* 8px 16px */
  background-color: var(--color-background);
  overflow: hidden;
  opacity: 0;
  max-height: 0px;
  box-shadow: 0 6px 21px -5px #333;
  transition:
    max-height 0.1s ease,
    opacity 0.1s ease;
}

nav ul li:hover > ul {
  max-height: 800px;
  opacity: 1;
  transition:
    max-height 0.5s ease,
    opacity 0.7s ease;
}
/* #endregion */

/* #region Footer */
footer {
  background-color: var(--color-header);
  color: #ffffff;
}

footer .social p {
  margin-top: 0;
}

footer .footerHeader {
  color: var(--color-footer-link);
  font-weight: bold;
  padding-top: var(--space-medium); /* Using spacing variable */
}

footer .subfooter {
  margin-top: var(--space-medium); /* Using spacing variable */
  text-align: left;
}

footer .links {
  text-align: left;
  width: 100%;
}

footer ul {
  margin: 0.75em -1em;
  padding: 0 1em;
  list-style: none;
}

footer li {
  line-height: 1.5em;
}

footer a:hover {
  color: var(--color-primary);
}

footer .social {
  text-align: right;
  display: block;
  padding-top: 0.625rem; /* 10px */
  margin-top: 25%;
}

footer .social .fa {
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: none;
  font-size: 1.25rem; /* 20px */
  height: 40px;
  width: 40px;
  line-height: 38px;
}

footer .social .x-twitterIcon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin: 0 0 5px 0;
  background-color: transparent;
}

footer .fa:hover,
footer .social .x-twitterIcon:hover {
  border: none;
}

footer .fa-facebook:hover {
  background-color: #3b5998;
}

footer .fa-twitter:hover {
  background-color: #00aced;
}

footer .fa-linkedin:hover {
  background-color: #007bb6;
}

footer .fa-youtube:hover {
  background-color: #971e1e;
}

footer .fa-instagram:hover {
  background-image: url('https://siteresource.blob.core.windows.net/assets/prod/r6rb/Instagram3-Background-Gradient3.png');
}

footer .social .x-twitterIcon:hover {
  background-color: #222222;
}

footer .subfooter a {
  text-decoration: none;
  text-transform: uppercase;
}

footer .address {
  width: 100%;
  position: relative;
}

footer .address .footLogo,
footer .address .footCopy {
  display: inline-block;
}

footer .address img {
  text-align: left;
  max-width: 175px;
  margin-top: -9px;
}

footer .address .footCopy {
  position: absolute;
  bottom: -13px;
}

footer .address .footCopy p {
  display: inline-block;
}

footer .termsPriv {
  text-align: right;
}
/* #endregion */

/* #region HomePage */
.homeContainer {
  padding: var(--space-medium) var(--space-small); /* Using spacing variables */
}

.homeContainer .wrapper {
  z-index: 999;
}

.homeContainer h2 {
  color: #ffffff;
  text-align: center;
  font-size: 3rem; /* Using rem for consistent font size */
  font-weight: bold;
  padding: 0;
  text-shadow: 1px 1px #000000;
  margin: var(--space-medium) 0; /* Using spacing variable */
}

.homeButtons {
  display: inline-block;
  background-color: transparent;
}

.homeButtons input[type='text'],
.homeButtons input[type='submit'],
.homeButtons a {
  border-radius: var(--border-radius);
  font-size: initial;
  height: auto;
  padding: 0.75rem 1.5rem; /* 12px 24px */
}

.homeButtons input[type='submit'],
.homeButtons a {
  background-color: var(--color-primary);
}

.homeJS {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('https://siteresource.blob.core.windows.net/assets/prod/r6rb/Catholic_Church_Windows_Adrien_Olichon_2.jpg')
      no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 130px 20px;
  position: relative;
}

.homeJS * {
  transition: opacity 0s !important;
}

.homeJS h1 {
  font-size: 3.75rem; /* Using rem for consistent font size */
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: left;
}

.homeJS .homeButtons {
  width: 100%;
  text-align: left;
  padding: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.homeJS #keywords {
  width: 33%;
  padding-left: 3%;
  margin-left: 0;
}

.homeJS p {
  color: #ffffff;
  text-align: left;
}

.homeJS a:hover {
  color: var(--color-primary);
}

#bg1,
#bg2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

#bg1 {
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='https://siteresource.blob.core.windows.net/assets/prod/r6rb/Catholic_Church_Windows_Adrien_Olichon_2.jpg', sizingMethod='scale')";
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='https://siteresource.blob.core.windows.net/assets/prod/r6rb/Catholic_Church_Windows_Adrien_Olichon_2.jpg', sizingMethod='scale');
  background: url('https://siteresource.blob.core.windows.net/assets/prod/r6rb/Catholic_Church_Windows_Adrien_Olichon_2.jpg');
  background-position: center center;
}

#bg2 {
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='https://siteresource.blob.core.windows.net/assets/prod/r6rb/handshake.jpg', sizingMethod='scale')";
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='https://siteresource.blob.core.windows.net/assets/prod/r6rb/handshake.jpg', sizingMethod='scale');
  background: url('https://siteresource.blob.core.windows.net/assets/prod/r6rb/handshake.jpg');
  background-position: center center;
}

.homeFeatured {
  background-color: var(--color-background);
}

.homeFeatured h3 {
  font-size: 3rem; /* Using rem for consistent font size */
  margin: 30px 0;
  color: var(--color-text);
  font-weight: 700;
}

.featuredJob {
  border-radius: var(--border-radius);
  text-align: left;
  padding: 0 0.625rem; /* 10px */
}

.featuredJob:hover {
  border: 1px solid var(--color-primary);
  background-color: none;
  box-shadow: inset 0px 0px 10px 0px rgba(58, 167, 221, 1);
  transition: box-shadow 0.2s ease-in-out;
}

.featuredJob .postedSince {
  display: none;
}

.slick-slider .slick-list {
  padding: 30px 0;
}

.slick-prev,
.slick-next {
  top: calc(50% + 50px);
}

.slick-dots li button {
  box-shadow: none;
}

.grey {
  background-color: #f3f3f3;
}

.homeCTA {
  text-align: center;
  background-color: #f3f3f3;
  color: #9e9e9e;
  padding: 0;
}

.homeMap {
  padding: 0;
  height: 500px;
}

.homeEmp {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('https://siteresource.blob.core.windows.net/assets/prod/r6rb/tech2.jpg')
      no-repeat;
  background-position: center 80%;
  background-size: cover;
  text-align: center;
}
/* #endregion */

/*Blog start */

.grid.BlogBxs {
  margin: 0 auto;
}

.BlogBxs {
  padding-top: 30px;
}

.BlogBx {
  margin: 10px 15px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
}

.BlogImg {
  aspect-ratio: 1.33333 / 1;
  flex: 0 0 auto;
  height: 240px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.BlogImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
}

.BlogCt {
  place-content: flex-start center;
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-flow: column;
  gap: 20px;
  height: min-content;
  padding: 30px;
  position: relative;
  width: 100%;
  text-align: left;
}

.BlogBxs h3 {
  font-size: 25px;
  color: #29b8fb;
  padding: 10px;
  margin: 0;
}

.BlogCt p {
  color: #666666;
  line-height: 1.6;
  font-weight: 500;
}

.BlogBt {
  margin: 0 auto;
}

/*Blog end */

/* #region Non-Home Page customizations */
#JobSearch #locationRadius {
  clear: left;
}

#JobSearch #btnSearch,
#JobSearch #btnSearch2,
#JobSearch #btnReset,
#JobSearch #btnReset2 {
  margin-top: 3rem;
}

#JobSearch #jobList .premium {
  border-left: 10px solid var(--color-primary) !important;
}

#JobSearch #jobList {
  border-top: none;
}

#JobSearch #jobList .listRow {
  width: 100%;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.12);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #dddddd;
}

#JobSearch #jobList .listRow .logo {
  display: inline-block;
  float: none;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

#JobSearch #jobList .listRow .logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#JobSearch #jobList .listRow .abstract {
  width: calc(100% - 200px);
  padding-right: 10px;
}

#JobSearch #jobList .socialContainer {
  display: block;
  width: 35%;
}

#JobSearch #searchAI input + label:first-of-type,
#ResumeSearch #searchAI input + label:first-of-type {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

#JobSearch #searchAI input + label:last-of-type,
#ResumeSearch #searchAI input + label:last-of-type {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

#JobSearch #searchAI input:checked + label,
#ResumeSearch #searchAI input:checked + label {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.dashBadge .fa {
  color: var(--color-primary);
}

#jobList a,
#jobList a:link,
#jobList a:visited,
#Job a,
#Job a:link,
#Job a:visited {
  color: var(--color-primary);
}

#jobList a:hover,
Job a:hover {
  color: var(--color-primary);
}

#JobSeeker #salary,
#JobSeeker #salaryPeriod,
#secretQuestion,
#secretAnswer {
  display: none;
}

#Job #fixedBtns {
  position: fixed;
  top: 108px;
  background-color: var(--color-background);
}

#Job #relativeBtns {
  position: relative;
  top: 0;
  background-color: transparent;
}

#Job #btnApply,
#Job #btnApplyBtm,
#Job #btnPost {
  background-color: #de703a;
}

#Job #btnApply:hover,
#Job #btnApplyBtm:hover,
#Job #btnPost:hover {
  background-color: #dc6f3a;
}

input#btnPostOptions:disabled {
  background-image: none;
  background: #cccccc;
}

.slick-track {
  margin: 0 auto;
}

.featuredEmployers {
  width: calc(100% - 40px);
}

#RegisterEmployer #dateFormat,
#RegisterEmployer #timeZone,
#RegisterContact #timeZone {
  display: none;
}

#Purchase .listColumn {
  padding: 12px 6px;
}

.contentBlock p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.contentBlock ul {
  margin-top: 0;
}

.contentBlock #cbMore ~ label:after {
  content: '[ + ] Show More';
}

.contentBlock #cbMore:checked ~ label:after {
  content: '[ - ] Show Less';
}

#EmployerDefaults #htmlJobDescription {
  display: none;
}

#Employer #lblFreePostingDays,
#EmployerDefaults #lblFreePostingDays {
  font-size: 0.8rem; /* 80% */
  vertical-align: middle;
}

#Employer #htmlJobDescription {
  display: none;
}

#EmployerJobs .listRow .title {
  width: 100%;
  max-width: 100%;
}

#subject input[type='text'] {
  width: 450px;
}

#insertMerge {
  clear: left;
}
/* #endregion */

/* #region #JobSeeker_Info */
#JobSeeker_Info .container {
  background-color: var(--color-background);
}

#JobSeeker_Info .container .wrapper {
  text-align: center;
}

#JobSeeker_Info .linkButton,
#JobSeeker_Info input[type='submit'] {
  min-width: 180px;
}

#JobSeeker_Info .container:nth-of-type(1) {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('https://siteresource.blob.core.windows.net/assets/prod/r6rb/js.jpg')
      no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 108px;
  padding: 120px 0;
  overflow: hidden;
}

#JobSeeker_Info .container:nth-of-type(1) h1 {
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px #333;
  font-size: 5rem; /* Using rem for consistent font size */
}

#JobSeeker_Info .container:nth-of-type(1) h2 {
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px #333;
  font-size: 3rem; /* Using rem for consistent font size */
}

#JobSeeker_Info .container p {
  max-width: 80%;
  text-align: center;
  padding: 10px;
  line-height: 28px;
  font-size: 1.125rem; /* Using rem */
  margin: 20px auto;
}

#JobSeeker_Info .container:nth-of-type(2) {
  padding: var(--space-small) 0;
}

#JobSeeker_Info .js_Info {
  background-color: #f3f3f3;
  position: relative;
  padding: 20px 20px;
  margin: 10px;
  margin-bottom: 40px;
}

#JobSeeker_Info .grid > .gc-t-1-2:nth-of-type(1) > .js_Info,
#JobSeeker_Info .grid > .gc-t-1-2:nth-of-type(2) > .js_Info,
#JobSeeker_Info .grid > .gc-p-1-1:nth-of-type(1) > .js_Info,
#JobSeeker_Info .grid > .gc-p-1-1:nth-of-type(2) > .js_Info {
  margin-bottom: 10px;
}

#JobSeeker_Info .js_Info ul {
  text-align: left;
  margin-bottom: 60px;
  padding-left: 20px;
}

#JobSeeker_Info .js_Info ul li {
  margin-bottom: 10px;
}

#JobSeeker_Info .js_Info div:last-child {
  position: absolute;
  bottom: 15px;
  width: 100%;
  margin-left: -20px;
}

.fa-bell-o,
.fa-user-o,
.fa-file-text-o {
  font-size: 3.125rem; /* 50px */
  background-color: none;
  color: #666666;
}
/* #endregion */

/* #region FAQ pages */
#faqJS h1,
#faqEmp h1 {
  padding-bottom: var(--space-medium); /* Using spacing variable */
}

#faqJS .container:nth-of-type(1),
#faqEmp .container:nth-of-type(1) {
  padding: var(--space-medium);
  text-align: left;
  min-height: 580px;
}

#faqJS .topic,
#faqEmp .topic {
  padding-top: var(--space-small); /* Using spacing variable */
  padding-bottom: var(--space-small); /* Using spacing variable */
  border-bottom: 1px solid #dddddd;
  position: relative;
}

#faqJS .topic .question,
#faqEmp .topic .question {
  font-size: 1.2rem; /* Using rem for consistent font size */
  cursor: pointer;
  padding-left: 25px;
}

#faqJS .topic .reveal,
#faqEmp .topic .reveal {
  display: none;
}

#faqJS .topic .details,
#faqEmp .topic .details {
  display: none;
}

.marginL20-10 {
  margin-left: 20px;
}

.marginL30-20 {
  margin-left: 30px;
}

.marginL10-5 {
  margin-left: 10px;
}

i.arrow {
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 14px;
}

i.arrow.up {
  top: 19px;
  transform: rotate(-135deg);
}
/* #endregion */

/* Styling price list boxes */
#groupedPriceList div.priceListBoxes {
  display: flex;
  flex-wrap: wrap;
}

#groupedPriceList .packageGroup {
  flex: 0 0 100%;
}

#groupedPriceList .packageGroupBox {
  flex: 1 0 30%;
  width: auto;
}

/* #region Media Queries */
@media only screen and (max-width: 1023px) {
  #boardLogo {
    max-width: 340px;
  }

  nav span,
  nav a {
    font-size: 1rem; /* 16px */
  }

  nav > ul > li > a,
  nav > ul > li > span {
    padding: 0.125rem 0.375rem; /* 2px 6px */
  }

  footer .social {
    margin-top: auto;
    text-align: center;
  }
}

@media only screen and (max-width: 920px) {
  #boardLogo {
    max-width: 280px;
    margin-top: 0.75rem; /* 12px */
  }

  nav span,
  nav a {
    font-size: 0.9375rem; /* 15px */
  }

  nav > ul > li > a,
  nav > ul > li > span {
    padding: 0.125rem 0.3125rem; /* 2px 5px */
  }

  #JobSearch #jobList .socialContainer {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  header {
    position: relative;
    background-color: var(--color-background);
    overflow: visible;
    z-index: 9999;
    height: auto;
  }

  header .accountInfo {
    display: none;
  }

  .mainHeader {
    height: auto;
  }

  #boardLogo {
    max-width: 240px;
    padding: 1.125rem 0.625rem; /* 18px 10px */
    float: none;
    margin-top: 0;
  }

  .menuButton {
    top: 18px;
  }

  .menuButton span {
    background-color: var(--color-text);
  }

  nav {
    margin-top: 0;
    float: none;
    clear: left;
    position: static;
  }

  nav ul li:hover > ul {
    padding: 0;
    background-color: var(--color-background);
    border-top: 1px solid #505050;
  }

  nav li a,
  nav li span {
    border-bottom: 1px solid #505050;
  }

  nav > ul > li > a,
  nav > ul > li > span {
    padding: 0.375rem 0.75rem; /* 6px 12px */
  }

  nav ul ul > li > a,
  nav ul ul > li > span {
    padding: 0.375rem 0.625rem; /* 6px 10px */
  }

  nav > ul > li:first-child > a,
  nav > ul > li:first-child > span {
    border-top: 1px solid #505050;
  }

  nav ul li {
    padding: 0;
  }

  nav > ul > li:last-child {
    display: block;
  }

  nav > ul > li:last-child a {
    border: none;
  }

  nav li {
    overflow: hidden;
  }

  nav li:hover {
    overflow: visible;
  }

  .menuShow ul ul {
    display: block;
    overflow: hidden;
    max-height: 0px;
    opacity: 0;
    transition:
      max-height 0.1s ease,
      opacity 0.1s ease;
  }

  .menuShow ul li:hover > ul {
    max-height: 800px;
    opacity: 1;
    transition:
      max-height 1s ease,
      opacity 1s ease;
  }

  .menuShow li {
    background: var(--color-background);
  }

  main {
    margin: 0;
  }

  footer .links {
    margin: auto;
    text-align: left;
  }

  footer .address,
  footer .termsPriv {
    text-align: center;
  }

  footer .address {
    margin-top: 10px;
    white-space: normal;
  }

  footer .address .footLogo,
  footer .address .footCopy {
    display: block;
  }

  footer .address .footCopy {
    position: relative;
    bottom: 0;
  }

  footer .address .footCopy p {
    margin-top: 0;
    margin-bottom: 5px;
  }

  .homeJS {
    padding-top: 60px;
  }

  .hideMobile {
    display: none;
  }

  .homeButtons {
    width: 90%;
  }

  .homeButtons input[type='text'],
  .homeButtons input[type='submit'],
  .homeButtons a {
    width: 100%;
    margin: 4px auto;
  }

  .homeMap {
    padding: 0 10px;
  }

  #JobSeeker_Info .container:nth-of-type(1) {
    margin-top: auto;
  }

  #JobSeeker_Info .container:nth-of-type(1) h1 {
    font-size: 300%;
    margin: 40px 0;
  }

  #JobSeeker_Info .container:nth-of-type(1) h2 {
    font-size: 220%;
    margin: 40px 0;
  }

  #JobSearch #jobList .listRow .logo {
    margin: 10px 0;
    display: block;
    position: relative;
  }

  #JobSearch #jobList .listRow .logo img {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }

  #JobSearch #jobList .listRow .abstract {
    width: auto;
    padding-right: 0;
  }

  #JobSearch #jobList .socialContainer {
    width: auto;
  }

  #Job #fixedBtns {
    top: 0;
    z-index: 999;
  }

  .customFields tbody tr td {
    display: block;
  }

  .customFields input[type='checkbox'],
  .customFields input[type='checkbox'] + label {
    float: left;
  }

  .customFields input[type='checkbox'] {
    clear: left;
  }

  .customFields input[type='checkbox'] + label {
    padding: 0 30px 0 0;
  }

  #faqJS .topic .question,
  #faqEmp .topic .question {
    font-size: 100%;
  }

  #faqJS .topic .details,
  #faqEmp .topic .details {
    font-size: 90%;
  }

  .marginL20-10 {
    margin-left: 10px;
  }

  .marginL30-20 {
    margin-left: 20px;
  }

  .marginL10-5 {
    margin-left: 5px;
  }

  #groupedPriceList div.priceListBoxes {
    flex-direction: column;
  }
}

@media only screen and (max-width: 480px) {
  .homeJS {
    padding-top: 30px;
  }

  .homeJS h1 {
    font-size: 2.5rem; /* 40px */
  }

  .homeContainer h2 {
    font-size: 1.875rem; /* 30px */
  }

  .homeJS #keywords {
    width: 100%;
  }

  #boardLogo {
    width: 240px;
    max-width: calc(94% - 36px);
    padding: 1.125rem 0.625rem; /* 18px 10px */
    float: none;
  }

  #JobSeeker_Info .container:nth-of-type(1) {
    padding: 0.625rem; /* 10px */
  }

  #JobSeeker_Info .container:nth-of-type(1) h1 {
    font-size: 2.6rem; /* 260%; */
    margin: 0;
  }

  #JobSeeker_Info .container:nth-of-type(1) h2 {
    font-size: 2rem; /* 200%; */
    margin: 0;
  }
}
/* #endregion */
