html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  overflow-x: hidden;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
}
.cleared {
  &:before,
  &:after {
    content: "";
    display: table;
  }
  &:after {
    clear: both;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
img[hidden] {
  display: none;
}

a {
  color: inherit;
}

button,
input[type="submit"],
input[type="reset"] {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  appearance: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

@font-face {
  font-family: "Rubik Black";
  src: url("../fonts/Rubik-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Rubik Bold";
  src: url("../fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Rubik Medium";
  src: url("../fonts/Rubik-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Rubik Regular";
  src: url("../fonts/Rubik-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Rubik Medium Italic";
  src: url("../fonts/Rubik-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Rubik Light";
  src: url("../fonts/Rubik-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@keyframes slideInFromLeft {
  from {
    transform: rotate(-2deg) translateX(-100%);
  }
  to {
    transform: rotate(-2deg) translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftNoRotation {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInFromRightNoRotation {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

body {
  font-family: "Rubik Light", sans-serif;
}

.fade-in {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
  will-change: opacity, transform;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: #000;
  overflow: hidden;
  gap: 60px;
}
.inner-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 60px;
}
footer {
  padding: 160px 20px 80px 20px;
  background-color: #4562b0;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  font-size: 16px;
  align-items: center;
  align-content: center;
  justify-content: center;
  a {
    margin-left: 10px;
    display: inline-block;
    margin-right: 10px;
  }
  a:first-of-type {
    margin-left: 0;
  }
  p {
    line-height: 24px;
  }
  .inner-container {
    gap: 20px;
  }
  .copyright {
    margin-bottom: 0;
    margin-top: auto;
  }
}
.top-bar {
  width: 100%;
  height: 60px;
  background-color: #7490de;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: fixed;
  gap: 20px;
  z-index: 2000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  .contact {
    margin-right: 0;
    margin-left: auto;
    display: flex;
    gap: 40px;
  }

  div {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
  }

  .sandwich {
    margin-right: 20px;
    margin-left: auto;
    cursor: pointer;
  }

  svg {
    display: inline-block;
  }
  font-size: 14px;
  a {
    text-decoration: none;
  }
}
header {
  padding-top: 100px;
  width: auto;
  height: auto;
  display: flex;
  gap: 6px;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Rubik Light", serif;
  font-size: 30px;
  color: #4562b0;
  text-transform: uppercase;
  text-align: center;
  span {
    display: inline-block;
    font-size: 18px;
    font-family: "Rubik Bold", serif;
    line-height: 24px;
  }
  overflow: hidden;
  .logo {
    width: 75px;
    margin: 0;
    padding: 0;
  }
  p {
    margin: 0;
    padding: 0;
    text-align: left;
  }
  a {
    /*font-size: 12px !important;*/
    text-decoration: none;
  }
}

.external-reviews-link {
  background-color: #4562b0;
  color: #fff;
  padding: 10px;
  text-decoration: none;
  font-size: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  gap: 10px;
}

.checkatrade {
  background-color: #ff3f3f;
  padding: 10px;
  height: 50px;
  border-radius: 24px;
}

form {
  width: 100%;
  padding: 20px;
  border: 4px solid #4562b0;
  border-radius: 8px;
  background-color: #dfe4f1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.row {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #4562b0;
  border-radius: 8px;
  color: #4562b0;
}
input:focus,
textarea:focus {
  background-color: #95a6d2;
  color: #fff;
}
textarea {
  height: 120px;
}
button {
  background-color: #4562b0;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  width: 200px;
  margin-right: 0;
  margin-left: auto;
}
.error {
  color: red;
}
.column {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.overlay-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  z-index: 2000;
}
.overlay {
  width: 75vw;
  height: 75vh;
  z-index: 2000;
  background-color: #fff;
  position: fixed;
  top: calc(50% - 24px);
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 6px;
  }
  button {
    width: 48px;
    margin-right: 0;
    margin-left: auto;
    background-color: #fff;
    svg {
      transform: scale(2);
      fill: #4562b0;
      stroke: #4562b0;
    }
  }
}
main {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-content: center;
    color: #4562b0;
    padding: 20px;
    text-align: left;
    gap: 20px;
  }
  .cta {
    margin-top: 120px;

    li span {
      font-size: 18px;
      font-weight: bold;
    }

    p {
      font-size: 20px;
    }

    h4 {
      color: #4562b0;
    }
  }
  h1,
  h2,
  h3 {
    text-align: center;
  }
  .organisations {
    padding-top: 80px;
    padding-bottom: 80px;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    .organisations-logos {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 40px;
      align-content: center;
      align-items: center;
      justify-content: center;
      /*outline: 1px solid red;*/
      img {
        width: 150px;
        height: auto;
        object-fit: contain;
      }
    }
  }
  .testimonials {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 140px;
    align-content: center;
    align-items: center;
    justify-content: center;
    .testimonial {
      display: flex;
      flex-direction: column;
      align-content: center;
      align-items: center;
      gap: 20px;
      color: #4562b0;
      width: auto;
      justify-content: center;
      .testimonial-details {
        display: flex;
        flex-direction: row;
        align-content: center;
        align-items: center;
        gap: 20px;
        color: #4562b0;
        width: 100%;
        .person {
          width: 100%;
          font-size: 18px;
          margin-right: 0;
          margin-left: auto;
        }
        .quote {
          font-family: "Rubik Medium Italic", serif;
          width: 100%;
          font-style: italic;
          font-weight: bold;
          font-size: 20px;
          color: #4562b0;
          display: flex;
          gap: 10px;
          position: relative;
          padding-left: 36px;
          line-height: 34px;
          img {
            display: inline-block;
            width: 30px;
            margin: 0;
            padding: 0;
            object-fit: contain;
            position: absolute;
            top: -10px;
            left: 0px;
          }
        }
        .profile {
          border-radius: 50%;
          width: 100px;
        }
        div {
          width: 100%;
          display: flex;
          flex-direction: column;
          gap: 10px;
        }
        .testimonial-attachments {
          display: flex;
          flex-direction: row;
          align-content: center;
          align-items: center;
          gap: 20px;
          color: #4562b0;
          width: 100%;
          img {
            width: 75px;
            height: 75px;
            object-fit: cover;
            cursor: pointer;
            border-radius: 6px;
          }
        }
      }
    }
  }
  .profile {
    border-radius: 50%;
    width: 100px;
  }
  .thanks {
    height: calc(50vh);
  }
  .leading {
    margin-top: 20px;
    background-image: url("/images/gallery/1b4c9a_94a5256700e94881af946cb5df7ecc1e~mv2.avif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    min-height: calc(100vh - 160px);
    /*display: flex;*/
    /*gap: 40px;*/
    /*height: calc(100vh - 160px);*/
    .inner-container {
      height: 100%;
      align-items: center;
      align-content: center;
      justify-content: center;
      /*gap: 20px;*/
    }
    h1,
    h2 {
      padding: 10px;
      background-color: #fff;
    }
    h1 {
      font-family: "Rubik Bold", serif;
      transform: rotate(-2deg) translateX(-100%);
      animation: slideInFromLeft 0.3s ease-out 0.5s forwards;
    }

    h1,
    h2 {
      margin-top: 30px;
    }

    h2 {
      transform: translateX(100%);
      animation: slideInFromRight 0.3s ease-out 0.8s forwards;
    }

    .row {
      align-items: center;
      justify-content: center;
    }

    .checkatrade {
      transform: translateX(-1000%);
      animation: slideInFromRightNoRotation 0.3s ease-out 0.5s forwards;

      .score {
        display: inline-block;
        background-color: #fff;
        border-radius: 8px;
        color: #1b2951;
        padding: 10px;
        font-size: 14px;
        font-weight: bold;
        font-family: sans-serif;
      }
    }

    .google {
      transform: translateX(1000%);
      animation: slideInFromLeftNoRotation 0.3s ease-out 0.5s forwards;
      background-color: #fff;
      margin: 0;
      padding: 10px;
      border-radius: 24px;
      img {
        height: 30px;
        overflow: hidden;
      }
      color: #4562b0;

      svg {
        /*display: none;*/
        fill: #4562b0;
      }
    }
  }
  .doing,
  .working,
  .choosing {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #4562b0;
    color: #fff;
    h3 {
      color: #fff;
      padding: 10px;
    }
    .list-container {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 40px;
      width: 100%;
      align-content: center;
      align-items: center;
      justify-content: center;
    }
    .list {
      height: 200px;
      border: 1px solid #fff;
      padding: 20px;
      margin-top: 20px;
      margin-bottom: 20px;
      width: 200px;
      text-align: center;
      span {
        display: inline-block;
        margin-bottom: 20px;
        font-size: 22px;
        font-weight: bold;
        font-family: "Rubik Bold", serif;
      }
    }
  }
  .recently,
  .cta {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #4562b0;
    color: #fff;
    h3 {
      color: #fff;
      padding: 10px;
    }
    p {
      text-align: center;
    }
    label {
      color: #4562b0;
    }
    .error {
      text-align: left;
      font-size: 16px;
    }
  }
  p {
    text-align: left;
  }
  h1 {
    font-weight: bold;
    font-size: 30px;
    text-align: left;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 36px;
    color: #4562b0;
    font-family: "Rubik Bold", serif;
  }

  h4 {
    font-size: 30px;
    text-align: center;
    color: #fff;
    font-family: "Rubik Bold", serif;
  }
  ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  li {
    display: flex;
    align-items: center;
    font-size: 18px;
    span {
      font-size: 22px;
      font-weight: bold;
      margin-right: 40px;
      font-family: "Rubik Bold", serif;
    }
  }
}

.captcha {
  width: 200px;
}

.captcha-solution {
  width: 200px;
}

.overlay {
  color: #4562b0;
  h1 {
    font-size: 36px;
    color: #4562b0;
    font-family: "Rubik Bold", serif;
  }
  h2 {
    font-size: 24px;
    color: #4562b0;
  }
  .legalese {
    padding: 20px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    h3 {
      font-size: 20px;
      font-weight: bold;
    }
    p {
      font-size: 16px;
      margin: 0;
    }
  }
}

#cookieOverlayContainer {
  display: none;
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

#cookieOverlay > .column {
  background-color: #8190bb;
  color: #fff;
  z-index: 1000;
  opacity: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 18px;
  align-content: center;
  align-items: center;
  justify-content: center;
  line-height: 24px;
  padding: 20px;
}

#cookieOverlay > .column button {
  display: inline;
  background-color: #4562b0;
  border: none;
  text-decoration: none;
  color: #fff;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 20px;
  .gallery-image-container {
    width: 175px;
    height: 175px;
    img {
      width: 175px;
      height: 175px;
      object-fit: cover;
      /*border-radius: 8px;*/
      cursor: pointer;
    }
  }
  /*p {*/
  /*    text-align: center;*/
  /*}*/
}

.useful-contacts {
  font-size: 18px;
  display: none;
}

.view-more {
  text-align: center;
  font-size: 22px;
  text-decoration: none;
  font-family: "Rubik Bold", serif;
}

.checkbox {
  background-color: #9a9ea6;
  border-radius: 8px;
  padding: 10px;
  display: inline-block;
  color: #fff;
  cursor: pointer;
}

.checkbox--selected {
  background-color: #717273;
}

input::placeholder {
  color: #9b9da1;
}

input:focus::placeholder {
  color: #dcdada;
}

.hidden {
  display: none;
}

.profile-cancel-button {
  background-color: #e83535;
  width: auto;
}

.profile-row {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}

.profileContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
}

.multiple-files {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 6px dashed #4562b0;
  background-color: #c6d0ec;
  height: 200px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: relative;
  padding: 20px;
  p {
    position: absolute;
    font-size: 18px;
    text-align: center;
    opacity: 0.5;
  }
}

.multiple-files-files {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 20px;
  img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    z-index: 100;
    border-radius: 8px;
  }
}

.file-container {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  button {
    margin-left: auto;
    margin-right: auto;
  }
}

.filters-row {
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.gallery-section {
  margin-top: 60px;
}

.customers {
  margin-top: 60px;
}

.useful-contacts-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  .useful-contacts-table {
    border-collapse: collapse;
    width: 100%;
    font-family: system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    thead tr {
      background-color: #4562b0;
      color: #fff;
      text-align: left;
    }
    th {
      padding: 20px;
    }
    td {
      padding: 20px;
      border-bottom: 1px solid #e0e0e0;
    }
    tbody tr:nth-child(even) {
      background-color: #fafafa;
    }
    tbody tr:hover {
      background-color: #f0f8ff;
    }
    a {
      color: #4562b0;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
  }
}

#clearFiltersButton {
  background-color: orangered;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  width: auto;
}

.sliders {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 20px;
}

.slider-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  user-select: none;
}

.slider img {
  width: 300px;
  height: 300px;
  display: block;
  object-fit: fill;
}

.before {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
}

.after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 300px;
  height: 300px;
  clip: rect(0, 150px, 300px, 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 300px;
  background-color: #ff5a1f;
  cursor: ew-resize;
  z-index: 2000;
  transition: left 0s ease;
  touch-action: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  background-color: #363636;
  border-radius: 50%;
  border: 8px solid #ff5a1f;
}

.minimal-link {
  margin: 0;
  padding: 0;
}

button.primary {
  width: 100%;
  background-color: #ff5a1f;
  padding: 20px;
  font-weight: bold;
  font-family: "Rubik Bold", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  gap: 20px;
  svg {
    transform: scale(1.2);
  }
}

.navigation {
  background-color: #4562b0;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  font-size: 18px;

  .navigation-header {
    width: auto;
    margin-right: 0;
    margin-left: auto;
    svg {
      transform: scale(1.5);
      cursor: pointer;
      fill: #fff;
    }
  }

  .navigation-body {
    ul {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    li {
      display: flex;
      align-items: center;
      font-size: 18px;
      span {
        font-size: 20px;
        font-weight: bold;
        margin-right: 40px;
        font-family: "Rubik Bold", serif;
      }
    }

    a {
      text-decoration: none;
      font-family: "Rubik Bold", serif;
      font-size: 20px;
      color: #fff;
    }
  }
}

.navigation-hidden {
  display: none;
}

.navigation-revealed {
  display: flex;
}

@media only screen and (min-width: 960px) {
  .row {
    flex-direction: row;
    gap: 20px;
  }
  header {
    span {
      font-size: 26px;
    }
    .logo {
      width: 125px;
    }
  }
  .container {
    width: 960px;
    margin: 0 auto;
  }
  .inner-container {
    width: 960px;
    margin: 0 auto;
  }
  .top-bar {
    gap: 60px;
    font-size: 16px;
  }

  button.primary {
    width: auto;
  }
}
