/*!
	PLEASE DO NOT EDIT STYLE.CSS - YOUR EDITS WILL BE OVERWRITTEN
	Always edit style.scss and compile (see sass-lang.com for more info)

	@author development@bronte.co.nz
*/
/*
    Variables
*/
/*
    Animations, Mixins etc.
*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.w100p {
  width: 100%;
}

.h100p {
  height: 100%;
}

.bg-white {
  background-color: #fff !important;
}

.c-white {
  color: #fff;
}

.posr {
  position: relative;
}

.z-item {
  z-index: 10;
}

.z-item-max {
  z-index: 15;
}

.last {
  margin-bottom: 0;
}

.lc > :last-child {
  margin-bottom: 0;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 15;
}

.btn,
button,
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  padding: 16px 22px;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.2s all;
  border: 0;
  font-family: "Source Sans 3", sans-serif;
  text-align: center;
  background: #000;
  color: #fff;
}
.btn:focus,
button:focus,
input[type=submit]:focus {
  outline: none;
}
.btn:hover,
button:hover,
input[type=submit]:hover {
  background: #ed1c25;
  color: #fff;
}
.btn:active,
button:active,
input[type=submit]:active {
  background: #ed1c25;
  color: #fff;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.menu-main li {
  margin-left: 30px;
}
.menu-main a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.menu-footer {
  flex-direction: column;
}
.menu-footer li {
  margin-bottom: 10px;
  position: relative;
}
.menu-footer a {
  line-height: 1.428;
  font-weight: 400;
}
.menu-header {
  gap: 24px;
}
.menu-header li {
  position: relative;
}
.menu-header li:hover > ul {
  display: block;
}
.menu-header li a {
  color: #000;
  font-weight: 700;
}
.menu-header li a:hover {
  color: #ed1c25;
}
.menu-header ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  min-width: 220px;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.menu-header ul li {
  padding: 5px 20px;
  background: #fff;
}
.menu-header ul li a {
  color: #000;
  text-decoration: none;
}
.menu-header ul li a:hover {
  color: #ed1c25;
}
.menu-mobile {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-mobile li {
  position: relative;
  padding: 10px 20px;
  border-bottom: 1px solid #959a9e;
}
.menu-mobile li a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}
.menu-mobile li a:hover {
  color: #ed1c25;
}
.menu-mobile li ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-mobile li ul li {
  padding: 10px 20px;
}
.menu-mobile li ul li a {
  color: #111111;
}
.menu-mobile li ul li a:hover {
  color: #ed1c25;
}
.menu-mobile li.open > ul {
  display: flex;
  gap: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--wp-admin--admin-bar--height); /**
* @link https://make.wordpress.org/core/2022/01/07/theme-focused-changes-and-filters-in-wordpress-5-9/#adjusting-for-fixed-header-navigation
*/
}

html,
body {
  min-height: 100vh;
}

body {
  font-family: "Source Sans 3", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #111111;
  display: flex;
  flex-direction: column;
  margin: 0;
}

a {
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

main {
  flex: 1;
}

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

p img {
  display: inline-block;
}

.text > :first-child {
  margin-top: 0;
}
.text > :last-child {
  margin-bottom: 0;
}
.text ol,
.text ul {
  line-height: inherit;
  padding-left: 20px;
}
.text li:last-child {
  margin-bottom: 0;
}
.text--red {
  color: #ed1c25;
}
.text--centre {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  font-family: "Merriweather", serif;
}

@media (min-width: 768px) {
  .alignleft,
  img.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
  }
}

@media (min-width: 768px) {
  .alignright,
  img.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
  }
}

.aligncenter,
img.aligncenter {
  margin: 1em auto;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  color: #ed1c25;
  margin-top: 24px;
  margin-bottom: 16px;
  font-family: "Merriweather", serif;
}
.wysiwyg a:not(.btn) {
  color: #ed1c25;
  font-weight: 700;
}
.wysiwyg a:not(.btn):hover {
  color: #ffa639;
}
.wysiwyg p {
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 16px;
}
.wysiwyg ul,
.wysiwyg ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.wysiwyg ul li,
.wysiwyg ol li {
  margin-bottom: 8px;
}
.wysiwyg blockquote {
  border-left: 4px solid #ed1c25;
  padding-left: 16px;
  margin: 16px 0;
  font-style: italic;
  color: #111111;
}
.wysiwyg blockquote p {
  margin: 0;
}
.wysiwyg img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px 0;
}

.bg--cream {
  background-color: #fce4cc;
}
.bg--grey {
  background-color: #959a9e;
}
.bg--red {
  background-color: #ed1c25;
}
.bg--orange {
  background-color: #ffa639;
}
.bg--light-blue {
  background-color: #A5BFE1;
}
.bg--off-white {
  background-color: #f7f7f7;
}
.bg--white {
  background-color: #fff;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.side-menu.opened {
  transform: translateX(0);
}
.side-menu .inner {
  position: relative;
  padding: 20px;
  height: 100%;
  overflow-y: auto;
}
.side-menu .button_holder {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.side-menu .menu-closer {
  top: 20px;
  right: 20px;
  background: #000;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  line-height: 20px;
}
.side-menu .menu-closer:hover {
  color: #ed1c25;
}
.side-menu .cta_section {
  margin-top: 24px;
}
.side-menu .cta_section a {
  width: 100%;
}

.opened .side-menu {
  transform: translateX(0) !important;
  pointer-events: all;
}

.menu-opener {
  display: none;
}
@media (max-width: 992px) {
  .menu-opener {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px; /* Ensure the button is a square */
    padding: 0;
    cursor: pointer;
  }
  .menu-opener span {
    display: none;
  }
  .menu-opener::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 6px 0 0 #fff, 0 12px 0 0 #fff;
  }
}

header {
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo_link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}
header .logo_link img {
  max-width: 100%;
  height: auto;
  margin-right: 10px;
}
header .menu-header,
header .cta_section {
  display: flex;
}
@media (max-width: 992px) {
  header .menu-header,
  header .cta_section {
    display: none;
  }
}

.header-top-bar {
  background: #000;
  padding: 8px 0;
}
.header-top-bar .icon-holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-top-bar .top-bar-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.header-top-bar .top-bar-buttons a {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  padding: 8px 0px;
}
.header-top-bar .top-bar-buttons a:hover {
  color: #ed1c25;
}
@media screen and (max-width: 992px) {
  .header-top-bar .top-bar-buttons a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .header-top-bar .top-bar-buttons a {
    font-size: 12px;
  }
}

.socials_icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.socials_icons a {
  background: #fff;
  font-size: 24px;
  text-decoration: none;
  padding: 4px;
  border-radius: 50%;
}
.socials_icons a img {
  width: 16px;
  height: 16px;
  display: block;
}
.socials_icons a:hover {
  background: #959a9e;
}

.announcement_banner {
  background: #ed1c25;
  color: #fff;
  padding: 16px 0;
  text-align: center;
}
.announcement_banner a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.announcement_banner a:hover {
  color: #000;
}
@media screen and (max-width: 992px) {
  .announcement_banner a {
    flex-direction: column;
  }
}

footer {
  background: #231f20;
  padding-top: 64px;
}
footer h6 {
  color: #ed1c25;
  font-family: "Merriweather", serif;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
footer .socials_icons {
  margin-bottom: 40px;
}
footer .menu-footer {
  display: flex;
  flex-wrap: wrap;
}
footer .menu-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .menu-footer a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 0px;
}
footer .menu-footer a:hover {
  color: #ed1c25;
}

.bottom_footer {
  color: #fff;
  border-top: 1px solid #959a9e;
  padding-top: 16px;
  margin-top: 16px;
  padding-bottom: 64px;
}
.bottom_footer .legal {
  text-align: center;
}
.bottom_footer .legal p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.bottom_footer .btt {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .bottom_footer .btt {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }
}
.bottom_footer .back-to-top {
  color: #fff;
}
.bottom_footer .menu-legal ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .bottom_footer .menu-legal ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

.hidden_label label {
  display: none;
}

.gform_submission_error {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.gfield_validation_message {
  position: relative;
  top: 4px;
  font-size: 14px;
  color: #ed1c25;
}

.gform_footer {
  display: flex;
  align-items: center;
  padding-top: 30px;
}
.gform_footer img {
  position: absolute;
  right: -20px;
  top: 40px;
}

.gform_fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.gfield {
  padding: 0 12px;
  width: 100%;
  margin-bottom: 10px;
}

.gform_fields > .gfield:last-child {
  margin-bottom: 6px;
}

.gfield_label {
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
  line-height: 18px;
  font-weight: 300;
  color: #111111;
}

.gfield--width-half {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .gfield--width-half {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

select,
textarea,
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password] {
  border: 1px solid #959a9e;
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 0;
  height: 40px;
  padding: 0 12px 0 12px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  color: #000;
  background: #f7f7f7;
}
select:focus,
textarea:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus {
  outline: none;
}

.gfield_required {
  padding-left: 2px;
}

textarea {
  height: 88px;
  resize: none;
  padding-top: 8px;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

.gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
}

.ginput_container_checkbox {
  margin-top: 8px;
}

.gfield-choice-input {
  display: none;
}
.gfield-choice-input + label {
  position: relative;
  padding-left: 34px;
  line-height: 26px;
  cursor: pointer;
}
.gfield-choice-input + label:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: -4px;
}
.gfield-choice-input:checked + label:after {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  width: 16px;
  height: 18px;
}

.gchoice {
  margin-right: 10px;
}

select {
  -webkit-appearance: none;
  background: transparent no-repeat calc(100% - 22px) 50%;
  font-size: 16px;
  font-family: "Source Sans 3", sans-serif;
  padding-right: 15px;
  border: 0;
}

.gf_login_links {
  margin-top: 16px;
}
.gf_login_links a {
  color: #111111;
  font-size: 16px;
}
.gf_login_links a:hover {
  color: #ed1c25;
}

.gform_button {
  background: #ed1c25 !important;
}
.gform_button:hover {
  background: #ffa639 !important;
}

.certificate-page {
  background-color: #f5f5f5;
}

.certificate-error {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificate-error .error-message {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.certificate-error .error-message h1 {
  color: #d32f2f;
  margin-bottom: 20px;
}
.certificate-error .error-message p {
  margin-bottom: 20px;
  color: #666;
}

.certificate-container {
  max-width: 210mm;
  margin: 0 auto;
  padding: 40px 20px;
}

.certificate-print-button {
  text-align: center;
  margin-bottom: 30px;
}
.certificate-print-button button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background-color: #ed1c25;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.certificate-print-button button:hover {
  background-color: rgb(198.2775510204, 15.7224489796, 23.5836734694);
}
.certificate-print-button button svg {
  width: 20px;
  height: 20px;
}

.certificate-content {
  position: relative;
  background: white;
  padding: 40px 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 800px;
}

.certificate-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid #ed1c25;
  pointer-events: none;
  border-radius: 4px;
}
.certificate-border::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid #ffa639;
  border-radius: 2px;
}

.certificate-header {
  text-align: center;
  margin-bottom: 30px;
}
.certificate-header .lw-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.certificate-header .lw-logo img {
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.certificate-body {
  position: relative;
  z-index: 1;
  text-align: center;
}

.certificate-title {
  font-size: 28px;
  font-weight: 700;
  color: #ed1c25;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certificate-seal {
  margin: 30px auto;
  max-width: 200px;
}
.certificate-seal img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.certificate-text {
  margin: 30px 0;
}

.certificate-intro {
  font-size: 18px;
  font-style: italic;
  color: #ffa639;
  margin-bottom: 20px;
}

.company-logo {
  margin: 30px auto;
  max-width: 400px;
}
.company-logo img {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.company-name {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 30px 0;
  line-height: 1.3;
}

.certificate-description {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 700px;
  margin: 30px auto;
}

.accreditation-date {
  margin: 30px 0;
  padding: 15px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.accreditation-date p {
  margin: 5px 0;
  font-size: 15px;
  color: #666;
}
.accreditation-date p strong {
  color: #ed1c25;
}
.accreditation-date .date-value {
  font-size: 18px;
  font-weight: 600;
  color: #ed1c25;
  margin-top: 8px;
}

.certificate-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, #ed1c25 0%, #ffa639 100%) 1;
}
.certificate-footer .footer-text {
  font-size: 14px;
  font-weight: 600;
  color: #ed1c25;
  margin-bottom: 5px;
}
.certificate-footer .footer-website {
  font-size: 14px;
  color: #ffa639;
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }
  body.certificate-page {
    background: white;
    margin: 0;
    padding: 0;
  }
  .no-print,
  .certificate-print-button {
    display: none !important;
  }
  .certificate-container {
    width: 210mm;
    height: 297mm;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .certificate-content {
    box-shadow: none;
    border-radius: 0;
    padding: 40px;
    page-break-inside: avoid;
    width: 100%;
    height: 100%;
  }
  .certificate-border {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  .lw-logo img,
  .company-logo img {
    max-width: 100%;
    height: auto;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .certificate-title,
  .certificate-seal svg,
  .accreditation-date strong,
  .footer-text {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .accreditation-date {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .certificate-border {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
@media (max-width: 768px) {
  .certificate-content {
    padding: 40px 30px;
  }
  .certificate-border {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  .certificate-title {
    font-size: 24px;
  }
  .company-name {
    font-size: 28px;
  }
  .certificate-description {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .certificate-container {
    padding: 20px 10px;
  }
  .certificate-content {
    padding: 30px 20px;
  }
  .certificate-title {
    font-size: 20px;
  }
  .company-name {
    font-size: 24px;
  }
}
/*
	Page-specific styling. Please use as little as possible to ensure DRYness.
*/
.s-page_hero_large.textured {
  background-image: url("../images/textured_back_1.png");
  background-size: auto;
  background-repeat: repeat;
  background-position: top;
}
.s-page_hero_large .breadcrumb {
  color: #ed1c25;
  font-size: 18px;
  margin-bottom: 16px;
  display: inline-block;
}
.s-page_hero_large .text {
  padding: 40px 0px;
}
.s-page_hero_large .text.center {
  text-align: center;
}
.s-page_hero_large .text h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
  font-family: "Merriweather", serif;
}
@media (max-width: 768px) {
  .s-page_hero_large .text h1 {
    font-size: 36px;
  }
}
.s-page_hero_large .text p {
  font-size: 20px;
  line-height: 1.5;
  color: #000;
}
.s-page_hero_large .text .buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .s-page_hero_large .text .buttons a {
    width: 100%;
  }
}
.s-page_hero_large .image {
  padding: 40px 0px;
}
.s-page_hero_large.size--medium {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-page_hero_large.has_bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.s-pattern_divider {
  background-image: url("../images/textured_back_1.png");
  background-size: auto;
  background-repeat: repeat;
  background-position: top;
  height: 275px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .s-pattern_divider {
    height: 200px;
  }
}
.s-pattern_divider.remove-top-margin {
  margin-top: 0;
}
.s-pattern_divider.remove-bottom-margin {
  margin-bottom: 0;
}

.s-3_coloured_ctas {
  display: grid;
}
.s-3_coloured_ctas.buttons_1 {
  grid-template-columns: 1fr;
}
.s-3_coloured_ctas.buttons_2 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .s-3_coloured_ctas.buttons_2 {
    grid-template-columns: 1fr;
  }
}
.s-3_coloured_ctas.buttons_3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .s-3_coloured_ctas.buttons_3 {
    grid-template-columns: 1fr;
  }
}
.s-3_coloured_ctas .button_holder {
  padding: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.s-3_coloured_ctas .button_holder.red {
  background: #ed1c25;
}
.s-3_coloured_ctas .button_holder.orange {
  background: #ffa639;
}
.s-3_coloured_ctas .button_holder.grey {
  background: #959a9e;
}
.s-3_coloured_ctas .button_holder.cream {
  background: #fce4cc;
  color: #000;
}
.s-3_coloured_ctas .button_holder:hover {
  background: #231f20;
  color: #fff;
}

.s-two_cols {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-two_cols h2,
.s-two_cols h3,
.s-two_cols h4,
.s-two_cols h5,
.s-two_cols h6 {
  max-width: 490px;
}
.s-two_cols img {
  width: 100%;
  height: auto;
  display: block;
}

.s-large_card {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-large_card .card {
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.s-testimonial_slider {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-testimonial_slider h2 {
  color: #ed1c25;
}
.s-testimonial_slider p {
  font-size: 36px;
  line-height: 1.2;
  color: #000;
  margin-top: 0;
}
.s-testimonial_slider cite {
  font-size: 18px;
  line-height: 1.2;
  color: #111111;
}
.s-testimonial_slider span {
  font-size: 18px;
  line-height: 1.2;
  color: #ed1c25;
}
.s-testimonial_slider .testimonial-slide {
  padding: 40px;
  background: #fff;
  border: 1px solid #c6c6c6;
}
.s-testimonial_slider .logo_holder {
  display: flex;
  justify-content: center;
  align-items: center;
}
.s-testimonial_slider .logo_holder img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
}

.s-3_coloured_divider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0px;
}
.s-3_coloured_divider span {
  height: 20px;
  display: block;
  margin: 0;
}
.s-3_coloured_divider span:nth-child(1) {
  background: #ed1c25;
}
.s-3_coloured_divider span:nth-child(2) {
  background: #ffa639;
}
.s-3_coloured_divider span:nth-child(3) {
  background: #959a9e;
}

.s-accredited-employer {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-accredited-employer .logo-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
}
.s-accredited-employer a {
  border: 1px solid #959a9e;
  padding: 8px;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  aspect-ratio: 1;
  min-height: 200px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .s-accredited-employer a {
    min-height: 150px;
  }
}
.s-accredited-employer a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease-in-out;
}
.s-accredited-employer a:hover {
  border: 1px solid #ed1c25;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.s-accredited-employer a:hover img {
  transform: scale(0.95);
}
.s-accredited-employer .logo-name {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: #111111;
  padding: 0 8px;
  font-weight: 500;
  margin-bottom: 12px;
}
.s-accredited-employer .filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.s-accredited-employer .filters .facetwp-type-dropdown {
  margin-bottom: 0;
}
.s-accredited-employer .filters .facetwp-type-dropdown .facetwp-dropdown {
  color: #000;
  border: 1px solid #959a9e;
  text-align: center;
}

.s-accredited_employer_info {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-accredited_employer_info .info__description {
  margin-bottom: 16px;
  margin-top: 24px;
  border-top: 1px solid #959a9e;
}
.s-accredited_employer_info .back_link {
  display: flex;
  gap: 8px;
  color: #ed1c25;
  font-size: 18px;
}
.s-accredited_employer_info .back_link svg {
  fill: #ed1c25;
}
.s-accredited_employer_info .back_link:hover {
  color: #ffa639;
}
.s-accredited_employer_info .back_link:hover svg {
  fill: #ffa639;
}
.s-accredited_employer_info .info__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.s-accredited_employer_info .info__logo img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
}
.s-accredited_employer_info .website {
  margin-top: 40px;
}

.s-login-form {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-login-form .gform_footer {
  padding-top: 0;
}
.s-login-form .cta_card {
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .s-login-form .cta_card {
    margin-top: 24px;
  }
}
.s-login-form .cta_card h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #ed1c25;
  font-family: "Merriweather", serif;
  margin-bottom: 16px;
}
.s-login-form .cta_card p {
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}

.s-account_section {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-account_section .sidebar-section {
  margin-bottom: 24px;
}
.s-account_section .sidebar-section h3 {
  font-size: 16px;
  line-height: 1.2;
  color: #ed1c25;
  font-family: "Merriweather", serif;
  margin-bottom: 16px;
}
.s-account_section .sidebar-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.s-account_section .sidebar-section ul li {
  margin-bottom: 8px;
}
.s-account_section .sidebar-section ul li a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
}
.s-account_section .sidebar-section ul li a:hover {
  color: #ed1c25;
}

.s-logo_slider {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-logo_slider .swiper-slide {
  max-width: 150px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.s-wysiwyg {
  margin-top: 40px;
  margin-bottom: 40px;
}

.s-form {
  margin-top: 80px;
  margin-bottom: 40px;
}

.s-logo_grid {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-logo_grid .logo-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.s-logo_grid a, .s-logo_grid .logo-container {
  border: 1px solid #959a9e;
  padding: 8px;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  aspect-ratio: 1;
  min-height: 200px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .s-logo_grid a, .s-logo_grid .logo-container {
    min-height: 150px;
  }
}
.s-logo_grid a img, .s-logo_grid .logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease-in-out;
}
.s-logo_grid a:hover, .s-logo_grid .logo-container:hover {
  border: 1px solid #ed1c25;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.s-logo_grid a:hover img, .s-logo_grid .logo-container:hover img {
  transform: scale(0.95);
}
.s-logo_grid .logo-container {
  cursor: default;
}
.s-logo_grid .logo-container:hover {
  border: 1px solid #959a9e;
  box-shadow: none;
}
.s-logo_grid .logo-container:hover img {
  transform: none;
}
.s-logo_grid .logo-name {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: #111111;
  padding: 0 8px;
  font-weight: 500;
  margin-bottom: 12px;
}

.s-team_members {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-team_members .section-title {
  margin-bottom: 40px;
}
.s-team_members .section-title h2 {
  color: #ed1c25;
  font-family: "Merriweather", serif;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 768px) {
  .s-team_members .section-title h2 {
    font-size: 28px;
  }
}
.s-team_members .team-member {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.s-team_members .team-member .member-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.s-team_members .team-member .member-info {
  padding: 24px;
}
.s-team_members .team-member .member-info .member-name {
  font-size: 24px;
  line-height: 1.2;
  color: #111111;
  font-family: "Merriweather", serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.s-team_members .team-member .member-info .member-position {
  font-size: 18px;
  line-height: 1.4;
  color: #ed1c25;
  margin-bottom: 16px;
  font-weight: 500;
}
.s-team_members .team-member .member-info .member-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.s-team_members .team-member .member-info .member-contact .contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.s-team_members .team-member .member-info .member-contact .contact-link svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.s-team_members .team-member .member-info .member-contact .contact-link span {
  word-break: break-all;
}
.s-team_members .team-member .member-info .member-contact .contact-link:hover {
  color: #ed1c25;
}
.s-team_members .team-member .member-info .member-contact .contact-link:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

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