/*
Theme Name: Brand North
Author: Brand North
Description: A Custom Theme by Brand North
Version: 3.0.0
Tags: Brand North
*/
html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

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

img.aligncenter {
  display: inline-block;
}

* {
  outline: none;
}

a {
  color: inherit;
}

p strong {
  font-weight: 600;
}

.wt h1, .wt h2, .wt h3, .wt h4, .wt h5, .wt h6, .wt p, .wt li {
  color: #ffffff;
}

li {
  font-size: var(--p-font-size);
  line-height: var(--p-line-height);
  margin-bottom: 3px;
  font-weight: var(--p-font-weight);
  color: var(--p-color);
}

ul {
  padding-left: 13px;
}
@media (max-width: 1199px) {
  ul {
    list-style-position: inside;
    padding-left: 0;
  }
}

.btn {
  display: inline-block;
  background-color: var(--button-colour);
  font-size: 14px;
  color: var(--button-text-colour);
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.4s ease;
  text-decoration: none;
  border: 1px solid white;
  text-transform: uppercase;
}

.btn:hover {
  background-color: var(--button-colour-hover);
  color: var(--button-text-colour-hover);
  transform: scale(1.1);
}

button.btn {
  display: inline-block !important;
  background-color: var(--button-colour) !important;
  font-size: 14px !important;
  color: var(--button-text-colour) !important;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  transition: all 0.4s ease !important;
  text-decoration: none !important;
  border: 1px solid white !important;
  text-transform: uppercase !important;
}

button.btn:hover {
  background-color: var(--button-colour-hover) !important;
  color: var(--button-text-colour-hover) !important;
  transform: scale(1.1) !important;
}

footer .btn {
  background-color: var(--button-colour-hover);
}

footer .btn:hover {
  background-color: var(--button-colour);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  position: relative;
  width: 100%;
  background-color: var(--main-background-colour);
  z-index: 1;
}

.top-padding {
  padding-top: var(--top-row-padding);
}

.bottom-padding {
  padding-bottom: var(--bottom-row-padding);
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-position: center center;
}

.background-image-scale {
  background-repeat: no-repeat;
  background-size: cover;
}

.background-parallax {
  background-attachment: fixed;
}

.background-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 15;
  mix-blend-mode: multiply;
}

.wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: var(--left-row-padding);
  padding-right: var(--right-row-padding);
  margin: 0 auto;
  z-index: 99;
}

.wrapper-narrow {
  position: relative;
  max-width: 900px;
  padding-left: var(--left-row-padding);
  padding-right: var(--right-row-padding);
  margin: 0 auto;
  z-index: 99;
}

.container.alternative-background-colour {
  background-color: var(--alternative-background-colour);
}

.container.secondary-alternative-background-colour {
  background-color: var(--second-alternative-background-colour);
}

header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99999;
}
header .wrapper {
  height: 120px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: center;
}
header .wrapper .logo a {
  display: inline-block;
}
header .wrapper .logo img {
  width: auto;
  height: 80px;
}
header .wrapper .cta {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
}
header .wrapper .cta p {
  color: #262362;
}
header .wrapper .cta a {
  text-decoration: none;
}
header .wrapper .cta a img {
  height: 26px;
  display: inline-block;
}

nav {
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #c3c3c3;
  z-index: 99999;
}
nav * {
  font-weight: 500 !important;
}
nav .wrapper {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
}
nav .wrapper .social {
  display: grid;
  align-items: center;
  justify-content: flex-end;
}
nav .wrapper .social i {
  color: #262362;
  transition: all 0.3s ease;
  font-size: 20px;
  padding-top: 2px;
}
nav .wrapper .social a:hover i {
  color: #262362;
}

.mobile-header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  z-index: 99999;
}
.mobile-header img {
  width: auto;
  height: 50px;
  display: inline-block;
  margin: 0 auto;
}

.mobile-navigation {
  position: fixed;
  width: 100%;
  top: 74px;
  left: 0;
  z-index: 99999;
}

.top-clearer {
  position: relative;
  width: 100%;
  height: 0px;
}

@media (max-width: 1199px) {
  header {
    display: none;
  }
  nav {
    display: none;
  }
  .top-header {
    height: 10px;
  }
  .top-clearer {
    height: 74px;
  }
}
@media (min-width: 1200px) {
  .mobile-header {
    display: none;
  }
  .mobile-navigation {
    display: none;
  }
}
.arcane-clearer {
  position: relative;
  width: 100%;
  height: 120px;
}

footer {
  position: relative;
  width: 100%;
  background-color: #258694;
}
footer .main-footer {
  padding-top: 40px;
  padding-bottom: 40px;
}
footer .main-footer * {
  color: #fff;
  text-decoration: none;
}
footer .main-footer h4 {
  margin-bottom: 20px;
}
footer .main-footer .contact .contact-columns {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media (max-width: 1199px) {
  footer .main-footer .contact .contact-columns {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    text-align: center;
  }
}
footer .main-footer .social-media {
  font-size: 25px;
}
footer .main-footer .social-media a i {
  transition: all 0.3s ease;
}
footer .main-footer .social-media a:hover i {
  color: #b2b2b2;
}
footer .main-footer .wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr auto;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 1199px) {
  footer .main-footer .wrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    text-align: center;
  }
  footer .main-footer .wrapper img {
    display: inline-block;
  }
}
footer .total-footer {
  position: relative;
  border-top: 1px solid #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
}
footer .total-footer * {
  color: #fff;
  text-decoration: none;
}
footer .total-footer p {
  font-size: 12px;
}
footer .total-footer .right {
  text-align: right;
}
footer .total-footer .wrapper {
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (max-width: 1199px) {
  footer .total-footer .wrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    text-align: center;
  }
  footer .total-footer .wrapper .right {
    text-align: center;
  }
}

.news-header {
  padding-top: 40px;
  padding-bottom: 40px;
}
.news-header h1 {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .news-header h1 {
    text-align: center;
  }
}

.news-feed .wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media (max-width: 1199px) {
  .news-feed .wrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
    text-align: center;
  }
}
.news-feed .wrapper .news-stories .the-news-stories {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-row-gap: 40px;
}
@media (max-width: 1199px) {
  .news-feed .wrapper .news-stories .the-news-stories {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 599px) {
  .news-feed .wrapper .news-stories .the-news-stories {
    grid-template-columns: 1fr;
  }
}
.news-feed .wrapper .news-stories .the-news-stories .news-story {
  text-decoration: none;
}
.news-feed .wrapper .news-stories .the-news-stories .news-story .news-story-image-lead {
  position: relative;
  width: 100%;
  padding-top: 80%;
  margin-bottom: 12px;
  overflow: hidden;
}
.news-feed .wrapper .news-stories .the-news-stories .news-story .news-story-image-lead .news-story-image-lead-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.3s ease;
}
.news-feed .wrapper .news-stories .the-news-stories .news-story .news-story-image-lead .news-story-image-lead-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--button-colour);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: all 0.3s ease;
}
.news-feed .wrapper .news-stories .the-news-stories .news-story:hover .news-story-image-lead-overlay {
  opacity: 0.7;
}
.news-feed .wrapper .news-stories .the-news-stories .news-story:hover .news-story-image-lead-image {
  transform: scale(1.1);
}
.news-feed .wrapper .news-stories .post-navigation {
  margin-top: 40px;
}
.news-feed .wrapper .news-stories .page-numbers {
  border: 1px solid var(--button-colour);
  color: var(--button-colour);
  text-decoration: none;
  padding: 3px 11px;
  font-size: 16px;
  transition: all 0.2s ease;
}
.news-feed .wrapper .news-stories .page-numbers:hover {
  background-color: var(--button-colour);
  color: #ffffff;
}
.news-feed .wrapper .news-stories .page-numbers.current {
  background-color: var(--button-colour);
  color: #ffffff;
}
.news-feed .wrapper .categories-and-recents a {
  text-decoration: none;
}
.news-feed .wrapper .single-post .featured-image {
  margin-bottom: 30px;
}

.centre-intro-copy {
  text-align: center;
}
.centre-intro-copy .icon {
  position: relative;
  width: 100%;
  text-align: center;
}
.centre-intro-copy .icon img {
  width: auto;
  max-height: 70px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.header-video {
  position: relative;
  width: 100%;
  height: 60vh;
}
.header-video .video-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header-video .video-block .video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.header-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: url("https://www.gmdeurotool.co.uk/wp-content/uploads/2023/09/video-overlay.png");
  background-repeat: no-repeat;
  background-position: center center;
  mix-blend-mode: multiply;
}
.header-video .wrapper {
  z-index: 10;
  height: 100%;
  display: grid;
  align-items: center;
}
.header-video .wrapper .banner-content {
  max-width: 600px;
}
@media (max-width: 1199px) {
  .header-video .wrapper .banner-content {
    justify-self: center;
    text-align: center;
  }
}
.header-video .wrapper h1 {
  color: #fff;
  font-weight: 300;
  font-size: 52px;
  line-height: 57px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .header-video .wrapper h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
.header-video .wrapper h3 {
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 30px;
}
.header-video .wrapper h1:last-child, .header-video .wrapper h3:last-child {
  margin-bottom: 0;
}

.scrolling-header-images {
  position: relative;
  width: 100%;
  height: 60vh;
  background-color: #fff;
}
.scrolling-header-images .scrolling-banners {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.scrolling-header-images .scrolling-banners .scrolling-banner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.scrolling-header-images .scrolling-banners .scrolling-banner .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.scrolling-header-images .scrolling-banners .scrolling-banner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.scrolling-header-images .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgb(38, 35, 98);
  background: linear-gradient(90deg, rgb(38, 35, 98) 0%, rgba(38, 35, 98, 0) 50%, rgba(38, 35, 98, 0) 100%);
  mix-blend-mode: multiply;
}
@media (max-width: 1199px) {
  .scrolling-header-images .overlay {
    background: rgb(38, 35, 98);
    background: linear-gradient(90deg, rgba(38, 35, 98, 0.5) 0%, rgba(38, 35, 98, 0.5) 50%, rgba(38, 35, 98, 0.5) 100%);
  }
}
.scrolling-header-images .wrapper {
  height: 100%;
  display: grid;
  align-items: center;
  z-index: 15;
}
.scrolling-header-images .wrapper .banner-content {
  max-width: 500px;
}
@media (max-width: 1199px) {
  .scrolling-header-images .wrapper .banner-content {
    justify-self: center;
    text-align: center;
  }
}
.scrolling-header-images .wrapper h1 {
  color: #fff;
  font-weight: bold;
  font-size: 39px;
  line-height: 47px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
@media (max-width: 1199px) {
  .scrolling-header-images .wrapper h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
.scrolling-header-images .wrapper h1 span {
  position: relative;
  padding-bottom: 20px;
}
.scrolling-header-images .wrapper h1 span:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 3px solid #fff;
  content: "";
}
.scrolling-header-images .wrapper h3 {
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 30px;
}
.scrolling-header-images .wrapper h1:last-child, .scrolling-header-images .wrapper h3:last-child {
  margin-bottom: 0;
}
.scrolling-header-images .slick-list, .scrolling-header-images .slick-track {
  height: 100%;
}
.scrolling-header-images .slick-dots {
  bottom: 25px;
}
.scrolling-header-images .slick-dots li {
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid #fff;
  width: 15px;
  height: 15px;
}
.scrolling-header-images .slick-dots li.slick-active button:before {
  background-color: #fff;
  opacity: 1;
}
.scrolling-header-images .slick-dots li button:before {
  content: "";
}

.static-header-banner {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #fff;
}
.static-header-banner .scrolling-banner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.static-header-banner .scrolling-banner .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.static-header-banner .scrolling-banner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.static-header-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.static-header-banner .wrapper {
  height: 100%;
  display: grid;
  align-items: center;
  z-index: 15;
}
.static-header-banner .wrapper .banner-content {
  max-width: 600px;
}
@media (max-width: 1199px) {
  .static-header-banner .wrapper .banner-content {
    justify-self: center;
    text-align: center;
  }
}
.static-header-banner .wrapper h1 {
  color: #fff;
  font-weight: 300;
  font-size: 52px;
  line-height: 57px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .static-header-banner .wrapper h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
.static-header-banner .wrapper h1 span {
  position: relative;
  padding-bottom: 20px;
}
.static-header-banner .wrapper h1 span:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 3px solid #fff;
  content: "";
}
.static-header-banner .wrapper h3 {
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 30px;
}
.static-header-banner .wrapper h1:last-child, .static-header-banner .wrapper h3:last-child {
  margin-bottom: 0;
}
.static-header-banner .flickity-page-dots {
  bottom: 20px;
}
.static-header-banner .flickity-page-dots .dot {
  background-color: transparent;
  border: 3px solid #fff;
}
.static-header-banner .flickity-page-dots .dot.is-selected {
  background-color: #fff;
}

.two-columns .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 100px;
       column-gap: 100px;
}
@media (max-width: 1199px) {
  .two-columns .wrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
    text-align: center;
  }
}
.two-columns .narrow-left {
  max-width: 900px;
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 1199px) {
  .two-columns .narrow-left {
    grid-template-columns: 1fr;
  }
}
.two-columns .narrow-right {
  max-width: 900px;
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 1199px) {
  .two-columns .narrow-right {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1199px) {
  .two-columns img {
    display: inline-block;
  }
}
.two-columns .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.two-columns .video-container iframe,
.two-columns .video-container object,
.two-columns .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.two-columns .links .sidebar-link {
  color: var(--button-text-colour);
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  background-color: var(--button-colour);
  box-sizing: border-box;
  padding: 15px 20px;
  font-size: 15px;
  margin-bottom: 10px;
  transition: all 0.4s ease;
  text-decoration: none;
}
.two-columns .links .icon {
  text-align: right;
  font-size: 20px;
}
.two-columns .links .sidebar-link:hover {
  background-color: var(--button-colour-hover);
  color: var(--button-text-colour-hover);
}
.two-columns .image img.rounded-corners {
  border-radius: 15px;
}
.two-columns .text, .two-columns .image, .two-columns .video-embed, .two-columns .video-file, .two-columns .links, .two-columns .button {
  margin-bottom: 30px;
}
.two-columns .text:last-child, .two-columns .image:last-child, .two-columns .video-embed:last-child, .two-columns .video-file:last-child, .two-columns .links:last-child, .two-columns .button:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .text-only {
    text-align: center;
  }
}

.full-width-buttons .buttons {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.full-width-buttons .buttons .button {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-top: 18%;
  overflow: hidden;
  flex-basis: 20%;
}
@media (max-width: 1199px) {
  .full-width-buttons .buttons .button {
    flex-basis: 33.33333%;
    padding-top: 30%;
  }
}
@media (max-width: 649px) {
  .full-width-buttons .buttons .button {
    flex-basis: 100%;
    padding-top: 80%;
  }
}
.full-width-buttons .buttons .button .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: 5;
}
.full-width-buttons .buttons .button .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.full-width-buttons .buttons .button .textarea {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: #fff;
  box-sizing: border-box;
  padding: 10px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  display: grid;
  align-items: center;
}
.full-width-buttons .buttons .button .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: #898989;
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
  opacity: 1;
}
.full-width-buttons .buttons .button:hover .image {
  transform: scale(1.2);
}
.full-width-buttons .buttons .button:hover .overlay {
  background-color: var(--button-colour);
}

.full-width-buttons-four .buttons {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.full-width-buttons-four .buttons .button {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-top: 18%;
  overflow: hidden;
  flex-basis: 25%;
}
@media (max-width: 1199px) {
  .full-width-buttons-four .buttons .button {
    flex-basis: 33.33333%;
    padding-top: 30%;
  }
}
@media (max-width: 649px) {
  .full-width-buttons-four .buttons .button {
    flex-basis: 100%;
    padding-top: 80%;
  }
}
.full-width-buttons-four .buttons .button .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: 5;
}
.full-width-buttons-four .buttons .button .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.full-width-buttons-four .buttons .button .textarea {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: #fff;
  box-sizing: border-box;
  padding: 10px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  display: grid;
  align-items: center;
}
.full-width-buttons-four .buttons .button .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: #898989;
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
  opacity: 1;
}
.full-width-buttons-four .buttons .button:hover .image {
  transform: scale(1.2);
}
.full-width-buttons-four .buttons .button:hover .overlay {
  background-color: var(--button-colour);
}

.full-width-buttons-three .buttons {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.full-width-buttons-three .buttons .button {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-top: 20%;
  overflow: hidden;
  flex-basis: 33.33333%;
}
@media (max-width: 649px) {
  .full-width-buttons-three .buttons .button {
    flex-basis: 100%;
    padding-top: 80%;
  }
}
.full-width-buttons-three .buttons .button .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: 5;
}
.full-width-buttons-three .buttons .button .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.full-width-buttons-three .buttons .button .textarea {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: #fff;
  box-sizing: border-box;
  padding: 10px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  display: grid;
  align-items: center;
}
.full-width-buttons-three .buttons .button .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: #898989;
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
  opacity: 1;
}
.full-width-buttons-three .buttons .button:hover .image {
  transform: scale(1.2);
}
.full-width-buttons-three .buttons .button:hover .overlay {
  background-color: var(--button-colour);
}

.internal-buttons .top-wrapper {
  margin-bottom: 50px;
}
.internal-buttons .buttons {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.internal-buttons .buttons .the-button {
  position: relative;
  width: 100%;
  flex-basis: calc(33.33333% - 10px);
  margin: 5px;
}
@media (max-width: 1199px) {
  .internal-buttons .buttons .the-button {
    flex-basis: calc(50% - 10px);
  }
}
@media (max-width: 649px) {
  .internal-buttons .buttons .the-button {
    flex-basis: calc(100% - 10px);
  }
}
.internal-buttons .buttons .the-button h4 {
  margin-top: 10px;
  text-align: center;
}
.internal-buttons .buttons .the-button p {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
.internal-buttons .buttons .the-button p:last-child {
  margin-bottom: 40px;
}
.internal-buttons .buttons .btn {
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 30px;
  display: table;
}
.internal-buttons .buttons .button {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-top: 70%;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  overflow: hidden;
}
.internal-buttons .buttons .button .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: 5;
}
.internal-buttons .buttons .button .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.internal-buttons .buttons .button .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: var(--button-colour);
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
  opacity: 0;
}
.internal-buttons .buttons .button:hover .image {
  transform: scale(1.2);
}
.internal-buttons .buttons .button:hover .overlay {
  opacity: 1;
}

.values .top-wrapper {
  margin-bottom: 50px;
}
.values .buttons {
  position: relative;
  width: 100%;
  --columns:4;
  --gap:10px;
  --gap-count:calc( var(--columns) - 1 );
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
@media (max-width: 1023px) {
  .values .buttons {
    --columns: 3;
  }
}
@media (max-width: 599px) {
  .values .buttons {
    --columns: 2;
  }
}
@media (max-width: 375px) {
  .values .buttons {
    --columns: 1;
  }
}
.values .buttons .the-button {
  position: relative;
  width: 100%;
  flex-basis: calc(100% / var(--columns) - var(--gap) / var(--columns) * var(--gap-count));
}
.values .buttons .the-button h4 {
  margin-top: 10px;
  text-align: center;
}
.values .buttons .the-button p {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
.values .buttons .btn {
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 30px;
  display: table;
}
.values .buttons .button {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-top: 70%;
  display: block;
  overflow: hidden;
}
.values .buttons .button .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: 5;
}
.values .buttons .button .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.values .buttons .button .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: var(--button-colour);
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
  opacity: 0;
}

.three-images .the-images {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 20px;
}
@media (max-width: 1199px) {
  .three-images .the-images {
    grid-template-columns: 1fr;
  }
}
.three-images .the-images .image {
  position: relative;
  width: 100%;
  padding-top: 85%;
  overflow: hidden;
}
.three-images .the-images .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
@media (min-width: 1200px) {
  .three-images .the-images {
    margin-left: -5%;
  }
  .three-images .the-images .image {
    width: 130%;
  }
}

.downloads .title {
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .downloads .title {
    text-align: center;
  }
}
.downloads .the-downloads {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-row-gap: 50px;
  text-align: center;
}
@media (max-width: 1199px) {
  .downloads .the-downloads {
    grid-template-columns: 1fr;
  }
}
.downloads .the-downloads .download img {
  display: inline-block;
  margin-bottom: 10px;
}

.logo-slider .title {
  margin-bottom: 50px;
  text-align: center;
}
.logo-slider .the-logos {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 35px;
}
.logo-slider .the-logos .logo {
  box-sizing: border-box;
  display: grid;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 1199px) {
  .logo-slider .the-logos .logo {
    width: 50%;
  }
}
@media (max-width: 399px) {
  .logo-slider .the-logos .logo {
    width: 100%;
  }
}
.logo-slider .slick-track {
  display: flex;
}
.logo-slider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.logo-slider .slick-dots li {
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid var(--button-colour);
  width: 15px;
  height: 15px;
}
.logo-slider .slick-dots li.slick-active button:before {
  background-color: var(--button-colour);
  opacity: 1;
}
.logo-slider .slick-dots li button:before {
  content: "";
}

.latest-news-feed .text {
  margin-bottom: 50px;
  text-align: center;
}
.latest-news-feed .home-latest-news {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 999px) {
  .latest-news-feed .home-latest-news {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 599px) {
  .latest-news-feed .home-latest-news {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.latest-news-feed .home-latest-news .home-news-story {
  text-decoration: none;
}
.latest-news-feed .home-latest-news .home-news-story-image {
  position: relative;
  width: 100%;
  padding-top: 80%;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all ease 0.2s;
}
.latest-news-feed .home-latest-news .home-news-story-image-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.latest-news-feed .home-latest-news h3 {
  margin-bottom: 8px;
}
.latest-news-feed .home-latest-news .home-news-story-link {
  margin-top: 10px;
}
.latest-news-feed .home-latest-news .home-news-story-link {
  text-transform: uppercase;
  color: var(--button-colour);
  font-weight: 800;
  font-size: 16px;
}
.latest-news-feed .home-latest-news .home-news-story-image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--button-colour);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all ease 0.2s;
  mix-blend-mode: multiply;
}
.latest-news-feed .home-latest-news .home-news-story:hover .home-news-story-image-overlay {
  opacity: 0.7;
}
.latest-news-feed .home-latest-news .home-news-story .home-news-story-image-image {
  transition: all ease 0.2s;
}
.latest-news-feed .home-latest-news .home-news-story:hover .home-news-story-image-image {
  transform: scale(1.1);
}

.accordion-strip .accs {
  position: relative;
}
.accordion-strip .accs .acc {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.accordion-strip .accs .acc .acc-btn {
  background-color: var(--button-colour);
  box-sizing: border-box;
  padding: 10px 20px;
  text-align: left;
  color: var(--button-text-colour);
  font-weight: normal;
  font-size: 21px;
  line-height: 31px;
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  transition: all 0.8s ease;
}
.accordion-strip .accs .acc .acc-btn .acc-btn-icon {
  display: grid;
  align-items: center;
  text-align: right;
}
.accordion-strip .accs .acc .acc-btn .icon-hide {
  display: none;
}
.accordion-strip .accs .acc .acc-panel {
  display: none;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 20px;
  padding-bottom: 0px;
  text-align: left;
}
.accordion-strip .accs .acc .acc-panel h2 {
  text-transform: none;
  font-size: 23px;
  line-height: 28px;
}
.accordion-strip .accs .acc .acc-panel .accordion-text-with-image {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  padding-bottom: 40px;
}
@media (max-width: 1023px) {
  .accordion-strip .accs .acc .acc-panel .accordion-text-with-image {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    text-align: center;
  }
}
.accordion-strip .accs .acc .acc-panel .accordion-text-with-video {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  padding-bottom: 40px;
}
@media (max-width: 1023px) {
  .accordion-strip .accs .acc .acc-panel .accordion-text-with-video {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    text-align: center;
  }
}
.accordion-strip .accs .acc .acc-panel .accordion-text-only {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 5fr 1fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  padding-bottom: 40px;
}
@media (max-width: 1023px) {
  .accordion-strip .accs .acc .acc-panel .accordion-text-only {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    text-align: center;
  }
}
.accordion-strip .accs .acc .acc-panel .accordion-four-columns {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding-bottom: 40px;
}
@media (max-width: 1023px) {
  .accordion-strip .accs .acc .acc-panel .accordion-four-columns {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 40px;
    text-align: center;
  }
}
@media (max-width: 699px) {
  .accordion-strip .accs .acc .acc-panel .accordion-four-columns {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    text-align: center;
  }
}
.accordion-strip .accs .acc .acc-panel .accordion-links-panel {
  padding-bottom: 40px;
}
.accordion-strip .accs .acc .acc-panel .accordion-links-panel .acc-links {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 1023px) {
  .accordion-strip .accs .acc .acc-panel .accordion-links-panel .acc-links {
    grid-template-columns: 1fr;
  }
}
.accordion-strip .accs .acc .acc-panel .accordion-links-panel .acc-links .acc-link {
  color: var(--button-text-colour);
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  background-color: var(--button-colour);
  box-sizing: border-box;
  padding: 15px 20px;
  font-size: 15px;
  transition: all 0.4s ease;
}
.accordion-strip .accs .acc .acc-panel .accordion-links-panel .acc-links .acc-link .icon {
  text-align: right;
  font-size: 20px;
}
.accordion-strip .accs .acc .acc-panel .accordion-links-panel .acc-links .acc-link:hover {
  color: var(--button-colour-hover);
  background-color: var(--button-text-colour-hover);
}
.accordion-strip .accs .acc-open .acc-btn {
  background-color: var(--button-colour-hover);
  color: var(--button-text-colour-hover);
}

table {
  border-collapse: collapse;
}
@media (max-width: 1199px) {
  table {
    margin: 0 auto;
  }
}

th {
  color: #000;
}

td {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  height: 40px;
  vertical-align: middle;
}

td.part-no, th.part-no {
  width: 170px;
}

td.specification, th.specification {
  width: 245px;
}

.people {
  text-align: center;
}
.people .the-people {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.people .the-people .person {
  flex-grow: 1;
  flex-basis: min-content;
}
@media (max-width: 1199px) {
  .people .the-people .person {
    flex-basis: 100%;
  }
}
.people .the-people .person .image {
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
}
.people .the-people .person .button {
  margin-top: 10px;
}
.people .the-people .person .button .btn {
  font-size: 11px;
}

.profile h1 {
  margin-bottom: 0;
}

.the-profile-content .wrapper {
  display: grid;
  grid-template-columns: 1fr 4fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (max-width: 1199px) {
  .the-profile-content .wrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}
.the-profile-content .wrapper .image img {
  margin: 0 auto;
}

.wpforms-field {
  padding-bottom: 0 !important;
}

.g-recaptcha {
  display: inline-block !important;
}/*# sourceMappingURL=style.css.map */