:root {
  --white: white;
  --text-grey: #555;
  --grey: #eee;
  --black: black;
  --pink: #f500c1;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--white);
  color: var(--text-grey);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.form-block {
  margin-top: 20px;
  margin-bottom: 0;
}

.form {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-field {
  border: 1px none var(--grey);
  background-color: #f1f1f1;
  border-radius: 3px;
  padding-top: 26px;
  padding-bottom: 26px;
  font-size: 16px;
}

.text-field.white {
  background-color: var(--white);
  font-size: 18px;
}

.field-label {
  color: var(--black);
  font-size: 18px;
}

.textarea {
  border: 1px none var(--grey);
  background-color: #f1f1f1;
  border-radius: 3px;
  min-height: 150px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
}

.textarea.white {
  background-color: var(--white);
  font-size: 18px;
}

.submit-button {
  background-color: var(--black);
  border-radius: 3px;
  min-width: 120px;
  padding: 12px;
  font-size: 18px;
  font-weight: 700;
  transition: opacity .2s;
}

.submit-button:hover {
  opacity: .7;
}

.body {
  background-color: #fff;
  flex-direction: column;
  display: flex;
}

.section {
  padding: 120px 30px;
}

.section.grey {
  background-color: var(--grey);
}

.section.wwd {
  padding-top: 0;
}

.container-1200 {
  width: 100%;
  max-width: 1200px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.container-1200.flex {
  grid-column-gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  display: flex;
}

.container-1200.flex.bottom {
  margin-top: 120px;
}

.h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.3;
}

.h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.4;
}

.h2.centred {
  text-align: center;
}

.h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.h4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
}

.h4.centred {
  text-align: center;
}

.paragraph {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.paragraph.bold {
  color: var(--black);
  font-weight: 600;
}

.paragraph.bold.no-margin {
  margin-bottom: 0;
}

.paragraph.centred {
  text-align: center;
}

.list {
  margin-top: 20px;
  margin-bottom: 20px;
}

.list-item {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.text-block {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}

.button-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  margin-top: 30px;
  margin-bottom: 0;
  display: flex;
}

.button {
  background-color: var(--pink);
  letter-spacing: .5px;
  border-radius: 3px;
  font-weight: 600;
  transition: opacity .2s;
}

.button:hover {
  opacity: .7;
}

.button.black {
  background-color: var(--black);
}

.text-link {
  border-bottom: 2px solid var(--black);
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.text-link:hover {
  border-bottom-color: var(--text-grey);
  color: var(--text-grey);
}

.title {
  color: var(--black);
  font-size: 23px;
  font-weight: 700;
}

.title.small {
  font-size: 21px;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar {
  background-color: #0000;
  width: 100%;
  padding: 20px 30px;
  position: absolute;
}

.nav-link {
  color: var(--white);
  letter-spacing: .5px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 9px 0;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: .7;
}

.nav-link.w--current {
  box-shadow: 0 4px 0 -1px var(--white);
  color: var(--white);
}

.nav-link.w--current:hover {
  opacity: 1;
}

.nav-link.contact {
  background-color: var(--white);
  color: var(--black);
  border-radius: 3px;
  margin-left: 20px;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
}

.nav-link.contact.w--current {
  background-color: var(--white);
  box-shadow: none;
  color: #00000029;
}

.text-link-wrap {
  margin-top: 0;
  display: inline-block;
}

.text-link-block {
  grid-column-gap: 10px;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-link-copy {
  transition: margin .2s;
}

.text-link-copy:hover {
  margin-right: 10px;
}

.text-link-2 {
  color: var(--pink);
  font-weight: 600;
  transition: color .2s;
}

.text-link-2:hover {
  color: var(--black);
}

.fa-text-link-arrow-icn {
  color: var(--pink);
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.logo {
  width: 181px;
  height: 80px;
}

.billboard {
  background-color: var(--text-grey);
  background-image: linear-gradient(#0006, #0006), url('../images/main-2.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 85vh;
  padding: 50px 30px;
  display: flex;
  position: static;
}

.footer {
  background-color: var(--black);
  margin-top: auto;
  padding: 90px 30px 40px;
}

.footer-link {
  color: var(--white);
  letter-spacing: .5px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-link:hover {
  opacity: .7;
}

.footer-link.w--current {
  color: #555;
}

.footer-link.w--current:hover {
  opacity: 1;
}

.footer-link.ps {
  border-left: 2px solid #333;
  padding-left: 30px;
}

.social-icons-footer {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  width: 24px;
  margin-left: 0;
  transition: opacity .2s;
  display: flex;
}

.social-icons-footer:hover {
  opacity: .8;
}

.fb, .inst {
  text-decoration: none;
}

.footer-base {
  border-top: 1px solid #333;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  display: flex;
}

.footer-text {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.footer-text-short {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  display: none;
}

.footer-base-links-wrap {
  grid-column-gap: 40px;
  align-items: center;
  display: flex;
}

.text-block-2 {
  color: var(--white);
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
}

.page-banner {
  background-color: var(--text-grey);
  background-image: linear-gradient(#00000080, #00000080), url('../images/main-2.jpg');
  background-position: 0 0, 50% 80%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 400px;
  padding: 0;
  position: static;
}

.contact-details-wrap {
  border-right: 3px none var(--white);
  width: 40%;
}

.copy-wrap.hp {
  flex-direction: column;
  align-self: flex-start;
  width: 60%;
  display: flex;
  position: static;
}

.contact-form {
  width: auto;
}

.contact-form.contact-page {
  width: 60%;
}

.small-text {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
}

.contact-methods-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.contact-methods-wrap.v2 {
  margin-bottom: 40px;
}

.landline {
  margin-bottom: 0;
  text-decoration: none;
}

.mobile {
  text-decoration: none;
}

.email-address {
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.copy {
  width: 60%;
}

.image {
  background-color: var(--grey);
  width: 40%;
  height: 350px;
}

.image.white {
  background-color: var(--white);
}

.image.white.crane-hire {
  border: 5px none var(--text-grey);
  box-shadow: -14px -14px 0 0 var(--grey);
  background-image: url('../images/crane-hire.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

.image.white.transport-solutions {
  box-shadow: -14px -14px 0 0 var(--grey);
  background-image: url('../images/sb-6.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

.image.white.project-assessment {
  box-shadow: -14px -14px 0 0 var(--grey);
  background-image: url('../images/sb-9.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

.image.steel-erection {
  box-shadow: -14px -14px 0 0 var(--grey);
  background-image: url('../images/sb-7.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

.image.lift-planning {
  box-shadow: -14px -14px 0 0 var(--grey);
  background-image: url('../images/sb-3.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

.image.material-handling {
  box-shadow: -14px -14px 0 0 var(--grey);
  background-image: url('../images/sb-5.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

.image.about {
  box-shadow: -14px -14px 0 0 var(--grey);
  background-image: url('../images/sb-8.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

.terms-and-conditions-copy {
  font-size: 18px;
}

.legal-copy-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-policy-copy {
  font-size: 18px;
}

.contact-details {
  grid-column-gap: 30px;
  margin-top: 40px;
  display: flex;
}

.div-block-2 {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.label {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}

.page-title {
  background-color: var(--white);
  padding: 0 0 60px;
}

.h1-page-title {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  line-height: 1.3;
}

.h1-page-title.centred {
  text-align: center;
}

.encoded-ea2 {
  display: none;
}

.image-wrap {
  background-color: var(--grey);
  border-radius: 3px;
  align-self: center;
  width: 40%;
  height: auto;
  min-height: 300px;
}

.image-wrap.hp {
  box-shadow: -14px -14px 0 0 var(--grey);
  background-image: url('../images/sb-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: auto;
  min-height: 350px;
}

.image-wrap.hp.bottom {
  background-image: url('../images/sb-4.jpg');
}

.h1-billboard {
  color: var(--white);
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-size: 60px;
  line-height: 1.5;
}

.billboard-container {
  background-color: #0000;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 30px 0;
  position: static;
  inset: auto 0% 0%;
}

.button-plain {
  color: var(--white);
  letter-spacing: .5px;
  background-color: #0000;
  border-radius: 3px;
  padding: 0;
  font-weight: 600;
  line-height: 1;
  transition: opacity .2s;
}

.button-plain:hover {
  opacity: .7;
}

.fa-icn-arrow {
  margin-left: 10px;
  font-family: "Fa solid 900", sans-serif;
}

.container-900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.container-900.flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial {
  flex-direction: column;
  margin-bottom: 40px;
  display: block;
  position: static;
}

.quote-icon {
  display: inline-block;
  position: static;
  inset: auto;
}

.fa-icn-quote {
  color: var(--grey);
  margin-top: 0;
  margin-left: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 40px;
  display: block;
}

.breadrumb-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 65px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.breadcrumb-text {
  text-align: right;
  font-size: 13px;
}

.bc-link {
  text-decoration: none;
}

.bc-link:hover {
  text-decoration: underline;
}

.bc-current {
  font-weight: 600;
  text-decoration: underline;
}

.cont {
  flex: none;
  text-decoration: none;
}

.social-icons-fooper-wrap {
  grid-column-gap: 20px;
  align-self: center;
  display: flex;
}

.icon-2 {
  display: none;
}

.dropdown-list {
  background-color: var(--black);
}

.dropdown-list.w--open {
  background-color: var(--white);
  border-radius: 3px;
  padding: 10px 20px;
}

.nav-link-dd {
  color: var(--black);
  letter-spacing: .5px;
  margin: 15px 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}

.nav-link-dd:hover {
  opacity: .7;
  padding-left: 0;
}

.nav-link-dd.w--current {
  box-shadow: 0 4px 0 -1px var(--white);
  color: var(--black);
  border-left: 2px solid #000;
  margin: 15px 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 10px;
}

.nav-link-dd.w--current:hover {
  opacity: 1;
}

.fa-icn-ph {
  font-family: "Fa solid 900", sans-serif;
}

.hp-fb-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.hp-fb-grid-container {
  background-color: var(--white);
  border-bottom: 2px solid #000;
  border-radius: 3px;
  flex-direction: column;
  align-items: center;
  padding: 30px 30px 10px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.hp-fb-grid-container:hover {
  border-bottom-color: var(--black);
  opacity: .7;
}

.fb-grid-icon {
  width: 100px;
  margin-bottom: 20px;
}

.image-2 {
  width: auto;
}

.list-wrap {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .form {
    grid-column-gap: 20px;
  }

  .text-field, .field-label, .textarea {
    font-size: 18px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .container-1200 {
    margin-top: 0;
  }

  .container-1200.flex {
    grid-column-gap: 30px;
    grid-row-gap: 0px;
    flex-direction: row;
    align-items: flex-start;
  }

  .container-1200.flex.contact-page {
    flex-direction: column;
  }

  .h2 {
    line-height: 1.3;
  }

  .paragraph {
    font-size: 18px;
  }

  .paragraph.centred {
    text-align: left;
  }

  .list-item {
    font-size: 18px;
  }

  .text-block, .button {
    font-size: 19px;
  }

  .text-link {
    font-size: 18px;
  }

  .title.small {
    font-size: 20px;
  }

  .navbar {
    position: absolute;
    inset: 0% 0% auto;
  }

  .nav-link {
    margin: 20px 0;
    font-size: 19px;
  }

  .nav-link.w--current {
    border-left: 3px solid var(--white);
    box-shadow: none;
    padding-left: 10px;
  }

  .nav-link.contact {
    text-align: center;
    margin-left: 0;
  }

  .nav-link.contact.w--current {
    color: var(--white);
    text-align: left;
  }

  .billboard {
    height: 750px;
    min-height: auto;
    padding: 0 30px;
  }

  .icon {
    color: var(--white);
    font-size: 40px;
    line-height: 1;
  }

  .menu-button {
    padding: 10px;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-menu {
    background-color: var(--black);
    margin-right: 0;
    padding: 10px 30px 30px;
  }

  .footer {
    padding-bottom: 30px;
  }

  .logo-footer {
    margin-bottom: 40px;
  }

  .footer-link {
    font-size: 18px;
  }

  .footer-link.ps {
    border-left-style: none;
    padding-left: 0;
  }

  .social-icons-footer {
    width: 32px;
    margin-left: 0;
  }

  .footer-base {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .copyright-wrap {
    border-top: 1px solid #333;
    width: 100%;
    margin-top: 20px;
    padding-top: 30px;
  }

  .footer-text {
    font-size: 18px;
  }

  .footer-text-short {
    font-size: 19px;
  }

  .footer-base-links-wrap {
    grid-row-gap: 20px;
    flex-direction: column;
    order: -1;
    align-items: flex-start;
  }

  .page-banner {
    height: 330px;
  }

  .contact-details-wrap {
    width: auto;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form.contact-page {
    width: 100%;
    margin-top: 60px;
  }

  .copy {
    width: 60%;
  }

  .image {
    order: -1;
    width: 100%;
  }

  .image.white.crane-hire, .image.white.transport-solutions, .image.white.project-assessment, .image.steel-erection, .image.lift-planning, .image.material-handling, .image.about {
    width: 40%;
    margin-bottom: 40px;
  }

  .terms-and-conditions-copy, .privacy-policy-copy, .website-disclaimer-copy {
    font-size: 18px;
  }

  .contact-details {
    grid-column-gap: 30px;
  }

  .label {
    font-size: 18px;
  }

  .page-title {
    padding-bottom: 40px;
  }

  .h1-page-title.centred {
    text-align: left;
  }

  .encoded-ea {
    display: none;
  }

  .encoded-ea2 {
    display: block;
  }

  .image-wrap {
    align-self: flex-start;
  }

  .h1-billboard {
    font-size: 50px;
  }

  .billboard-container {
    margin-top: 50px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .button-plain {
    font-size: 18px;
  }

  .container-900.flex {
    align-items: flex-start;
  }

  .breadrumb-container {
    margin-top: 0;
    margin-bottom: 15px;
  }

  .social-icons-fooper-wrap {
    grid-column-gap: 30px;
    align-self: flex-start;
  }

  .dropdown-list.w--open {
    padding: 10px 20px;
  }

  .nav-link-dd {
    margin: 20px 0;
    font-size: 19px;
  }

  .nav-link-dd.w--current {
    border-left: 3px solid var(--black);
    box-shadow: none;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
  }

  .hp-fb-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .form {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .html-embed {
    margin-bottom: 10px;
  }

  .section {
    padding: 60px 20px;
  }

  .container-1200.flex {
    flex-direction: column;
  }

  .container-1200.flex.bottom {
    margin-top: 60px;
  }

  .h1 {
    font-size: 40px;
  }

  .h2 {
    font-size: 35px;
    line-height: 1.3;
  }

  .h3 {
    font-size: 27px;
  }

  .navbar {
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    inset: 0% 0% auto;
  }

  .nav-link.contact {
    padding-left: 20px;
  }

  .billboard {
    height: 500px;
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    padding-left: 0;
  }

  .nav-menu {
    padding: 0 20px 20px;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .social-icons-footer {
    grid-column-gap: 30px;
  }

  .footer-base {
    grid-row-gap: 30px;
  }

  .copyright-wrap {
    margin-top: 10px;
  }

  .footer-text {
    display: none;
  }

  .footer-text-short {
    font-size: 18px;
    display: block;
  }

  .footer-base-links-wrap {
    grid-row-gap: 30px;
  }

  .page-banner {
    height: 280px;
  }

  .contact-details-wrap {
    border-right-style: none;
    margin-bottom: 0;
  }

  .copy-wrap.hp {
    width: auto;
  }

  .contact-form.contact-page {
    margin-top: 40px;
  }

  .copy {
    width: 100%;
  }

  .image {
    height: 280px;
  }

  .image.white.crane-hire, .image.white.transport-solutions, .image.white.project-assessment, .image.steel-erection, .image.lift-planning, .image.material-handling {
    box-shadow: none;
    width: 100%;
  }

  .image.about {
    box-shadow: none;
    background-position: 50%;
    width: 100%;
  }

  .page-title {
    padding: 0 0 40px;
  }

  .h1-page-title {
    font-size: 45px;
  }

  .image-wrap {
    width: 100%;
  }

  .image-wrap.hp {
    box-shadow: none;
    order: -1;
    min-height: 280px;
    margin-bottom: 40px;
  }

  .h1-billboard {
    font-size: 37px;
  }

  .billboard-container {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .breadrumb-container {
    margin-bottom: 0;
  }

  .hp-fb-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  .html-embed {
    perspective-origin: 0%;
    transform-origin: 0%;
    transform: scale(.8);
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container-1200.flex.bottom {
    margin-top: 50px;
  }

  .h1 {
    font-size: 35px;
  }

  .h2 {
    font-size: 27px;
  }

  .h3 {
    font-size: 26px;
  }

  .list {
    padding-left: 20px;
  }

  .button-wrap {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .nav-link.contact {
    padding-left: 20px;
  }

  .billboard {
    height: auto;
    min-height: 90vh;
    padding: 0;
    position: relative;
  }

  .menu-button, .menu-button.w--open {
    padding-left: 0;
    padding-right: 0;
  }

  .page-banner {
    height: 220px;
  }

  .image {
    height: 190px;
  }

  .terms-and-conditions-copy {
    font-size: 18px;
  }

  .contact-details {
    grid-column-gap: 20px;
  }

  .page-title {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .h1-page-title {
    font-size: 40px;
  }

  .image-wrap.hp {
    min-height: 190px;
  }

  .h1-billboard {
    margin-bottom: 0;
    font-size: 30px;
  }

  .billboard-container {
    background-color: #000000a8;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding: 20px;
    position: absolute;
    inset: auto 0% 0%;
  }

  .hp-fb-grid {
    grid-template-columns: 1fr;
  }
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba6-d9b8ed6e, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba9-d9b8ed6e, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bad-d9b8ed6e, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb1-d9b8ed6e, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb5-d9b8ed6e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-d9b8ed6e, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-d9b8ed6e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbf-d9b8ed6e {
  justify-self: start;
}

#w-node-_6ae158dd-3a53-1c51-e382-0c5d179619dc-aa0c6e78, #w-node-_6ae158dd-3a53-1c51-e382-0c5d179619df-aa0c6e78, #w-node-_6ae158dd-3a53-1c51-e382-0c5d179619e3-aa0c6e78, #w-node-_6ae158dd-3a53-1c51-e382-0c5d179619e7-aa0c6e78, #w-node-_6ae158dd-3a53-1c51-e382-0c5d179619eb-aa0c6e78 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6ae158dd-3a53-1c51-e382-0c5d179619ef-aa0c6e78, #w-node-_6ae158dd-3a53-1c51-e382-0c5d179619f3-aa0c6e78 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6ae158dd-3a53-1c51-e382-0c5d179619f5-aa0c6e78 {
  justify-self: start;
}

#w-node-_77637720-8fc5-b627-8a9b-5bdf3887f23d-ebb0fe40, #w-node-_77637720-8fc5-b627-8a9b-5bdf3887f245-ebb0fe40, #w-node-_77637720-8fc5-b627-8a9b-5bdf3887f249-ebb0fe40, #w-node-_77637720-8fc5-b627-8a9b-5bdf3887f24d-ebb0fe40, #w-node-_77637720-8fc5-b627-8a9b-5bdf3887f251-ebb0fe40 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77637720-8fc5-b627-8a9b-5bdf3887f255-ebb0fe40, #w-node-_77637720-8fc5-b627-8a9b-5bdf3887f259-ebb0fe40 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_77637720-8fc5-b627-8a9b-5bdf3887f25b-ebb0fe40 {
  justify-self: start;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba6-cdf9ba59, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba9-cdf9ba59, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bad-cdf9ba59, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb1-cdf9ba59, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb5-cdf9ba59 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-cdf9ba59, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-cdf9ba59 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbf-cdf9ba59 {
  justify-self: start;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba6-ddd0bbd1, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba9-ddd0bbd1, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bad-ddd0bbd1, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb1-ddd0bbd1, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb5-ddd0bbd1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-ddd0bbd1, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-ddd0bbd1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbf-ddd0bbd1 {
  justify-self: start;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba6-cf67e377, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba9-cf67e377, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bad-cf67e377, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb1-cf67e377, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb5-cf67e377 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-cf67e377, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-cf67e377 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbf-cf67e377 {
  justify-self: start;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba6-4aaf4ae7, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba9-4aaf4ae7, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bad-4aaf4ae7, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb1-4aaf4ae7, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb5-4aaf4ae7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-4aaf4ae7, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-4aaf4ae7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbf-4aaf4ae7 {
  justify-self: start;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba6-481c9432, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24ba9-481c9432, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bad-481c9432, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb1-481c9432, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb5-481c9432 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-481c9432, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-481c9432 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbf-481c9432 {
  justify-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-d9b8ed6e, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-d9b8ed6e, #w-node-_6ae158dd-3a53-1c51-e382-0c5d179619ef-aa0c6e78, #w-node-_6ae158dd-3a53-1c51-e382-0c5d179619f3-aa0c6e78, #w-node-_77637720-8fc5-b627-8a9b-5bdf3887f255-ebb0fe40, #w-node-_77637720-8fc5-b627-8a9b-5bdf3887f259-ebb0fe40, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-cdf9ba59, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-cdf9ba59, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-ddd0bbd1, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-ddd0bbd1, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-cf67e377, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-cf67e377, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-4aaf4ae7, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-4aaf4ae7, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bb9-481c9432, #w-node-_50e975e8-3cea-1956-68fa-b7f255e24bbd-481c9432 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}