:root {
  --dark-blue: #000080;
  --link-color: #105484;
  --link-font: "Carrois Gothic";
  --text-font: "Inter";
}

@font-face {
  font-family: "Carrois Gothic";
  font-style: normal;
  font-weight: 400;
  src: url("https://pscm.uk/fonts/CarroisGothic-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("https://pscm.uk/fonts/Inter.ttf");
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100svh;
  font-family: var(--text-font), sans-serif;
  background-color: #c4c4c4;
}

a {
  font-family: var(--link-font), sans-serif;
  text-decoration: none;
  font-variant: small-caps;
  user-select: none;
}

h1,
h2,
h3,
h4,
h5,
button,
a {
  font-family: var(--link-font);
  font-weight: 500;
}

dl,
ol,
ul {
  margin-bottom: unset;
}

/* Move reCAPTCHA v3 badge to the left */

.grecaptcha-badge {
  position: fixed !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  bottom: 0 !important;
  right: 0 !important;
  visibility: hidden;
}

/* Back to top button */
#myBtn {
  position: fixed; /* Fixed/sticky position */
  width: 28px;
  height: 28px;
  bottom: 80px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 20px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #f5f5f5; /* Set a background color */
  cursor: pointer; /* Add a mouse pointer on hover */
  border-radius: 50px; /* Rounded corners */
  font-size: 14px; /* Increase font size */
}

#myBtn {
  display: none; /* Hidden by default */
}

#myBtn:hover {
  background-color: #0077ff; /* Add a dark-grey background on hover */
}

#myBtn:hover i {
  color: #fff;
}

.backdrop {
  background-image: url("https://pscm.uk/images/fit-outs/bar-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.overlay {
  height: 115svh;
  padding-block: 20px;
  background-color: rgba(0, 0, 0, 0.5);
}

.logo,
.nav-links {
  display: none;
}

header,
main {
  width: 90svw;
  margin: 0 auto;
  margin-top: 20px;
}

header {
  margin-bottom: 20px;
}

img {
  border-radius: 10px;
  max-width: 100%;
}

i {
  cursor: pointer;
}

h1 {
  text-align: center;
  color: #555;
}

p {
  margin-top: 20px;
}

.mobile-cookie-message,
.mobile-nav-links {
  position: fixed;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 10000;
}

header nav .nav.nav-links ul li a {
  color: var(--link-color);
}

header nav .nav.nav-links ul li a:hover,
header nav .nav.nav-links ul li a.current {
  padding-bottom: 5px;
  border-bottom: solid 5px var(--link-color);
  border-radius: 2px;
}

.mobile-nav-links ul {
  list-style-type: none;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 10px;
  padding-bottom: 5px;
  -webkit-box-shadow: 0px -2px 10px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -2px 10px 1px rgba(0, 0, 0, 0.2);
}

.mobile-nav-links li a {
  display: block;
  color: var(--link-color);
  padding: 15px;
  text-decoration: none;
}

.mobile-nav-links li a i {
  font-size: 1.5rem;
}

.mobile-nav-links .active {
  color: var(--dark-blue);
  transform: translateY(-5px) scale(1.2);
}

.mobile-nav-links .active i {
  border-bottom: solid 2px var(--dark-blue);
}

.call-us-container {
  background-color: var(--dark-blue);
  color: #f5f5f5;
  height: 60px;
  display: flex;
  align-items: center;
}

.call-us {
  width: 90svw;
  margin: 0 auto;
  text-align: center;
}

.call-us a {
  padding: 5px 10px;
  margin: 10px;
  background-color: #f5f5f5;
  color: var(--link-color);
  border-radius: 25px;
}

.call-us i {
  margin-inline: 5px;
}

.mobile-logo {
  display: flex;
  justify-content: center;
}

.container {
  border-radius: 15px;
  transform: translateY(100svh);
  animation: fadein 500ms 1s forwards;
}

.hero-section {
  display: flex;
  flex-direction: column-reverse;
}

.hero-text {
  color: #333;
  padding-inline: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.hero-text p {
  font-weight: 400;
  margin-block: 10px;
}

.hero-text a {
  padding: 10px 20px;
  background-color: var(--link-color);
  color: #f5f5f5;
  border-radius: 25px;
  margin-bottom: 20px;
  border: solid 2px #f5f5f5;
}

.hero-text h1 {
  font-size: 26px;
  letter-spacing: 5px;
  color: var(--dark-blue);
  text-shadow: 2px 2px #c4c4c4;
  text-align: center;
}

.hero-text ul {
  margin-left: 18px;
  margin-bottom: 20px;
}

.hero-form {
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  color: #333;
  width: fit-content;
}

.hero-form form {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.hero-form .required {
  color: #ff0000;
}

.hero-form form small {
  font-size: 10px;
}

form span {
  margin-block: 20px;
  text-align: center;
  font-size: 12px;
  color: #555;
}

.hero-text h2,
.hero-form h2 {
  font-size: 18px;
  font-variant: small-caps;
  font-weight: 400;
  letter-spacing: 5px;
  text-align: center;
}

.hero-form h2 {
  color: var(--dark-blue);
  letter-spacing: unset;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-form label {
  font-size: smaller;
}

.hero-form input,
.hero-form textarea {
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #d9d9d9;
  border: none;
  padding-left: 5px;
}

.hero-form input {
  padding-block: 5px;
}

.hero-form input#email {
  margin-bottom: 0px;
}

.hero-form small {
  margin-bottom: 20px;
}

.hero-form textarea,
.contact-us-form textarea {
  height: 100px;
  resize: none;
  border-radius: 5px;
}

.hero-form button {
  background-color: #0077ff;
  color: #f5f5f5;
  font-variant: small-caps;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}

.hero-form button:hover,
.about-us-btns a:hover {
  filter: brightness(120%);
}

.hero-form button:hover {
  filter: brightness(120%);
}

.mobile-image {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.hero-text a {
  text-align: center;
  width: 100%;
}

.recent-work {
  display: none;
}

.mobile-recent-work {
  background-color: var(--link-color);
  height: 650px;
  max-height: 100svh;
  padding: 20px;
}

.mobile-recent-work h3 {
  color: #f5f5f5;
  text-align: center;
  margin-bottom: 20px;
}

.mobile-recent-work button,
.recent-work button {
  border: none;
  outline: none;
  background-color: unset;
  color: #f5f5f5;
}

.mobile-recent-work button i {
  font-size: 2rem;
}

.mobile-recent-work-container,
.recent-work-container {
  width: 100%;
  max-width: 1200px;
  font-size: 24px;
  display: grid;
  grid-template-columns: 25px 1fr 25px;
  margin: 0 auto;
  column-gap: 20px;
}

.mobile-recent-work-container .previous-btn-container,
.mobile-recent-work-container .project-container,
.mobile-recent-work-container .next-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
}

.project-container,
.project-description-container {
  position: relative;
  background-color: #105484;
  color: #f5f5f5;
  margin-top: 5px;
}

.mobile-recent-work-container .project,
.mobile-recent-work-container .project-description {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: #105484;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}

.project-image img {
  border: solid 5px #f5f5f5;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.project-description-container {
  grid-column: 2;
  font-size: 14px;
  color: #f5f5f5;
}

.mobile-recent-work-container .project-description {
  flex-direction: column;
  margin-top: 30px;
}

.mobile-recent-work-container .project-description-container h4 {
  text-align: center;
}

.project-description p {
  margin-block: 5px;
}

.project-description a {
  display: flex;
  justify-content: center;
  color: #f5f5f5;
  border: solid 2px #f5f5f5;
  border-radius: 25px;
  padding: 10px 20px;
  margin-top: 10px;
  font-weight: bold;
}

.build-project,
.build,
.build-project1,
.build1 {
  z-index: 9;
}

.build .bi-bricks,
.fit-out .bi-shop-window,
.build1 .bi-bricks {
  margin-right: 5px;
}

.mobile-recent-work-container .fit-out-project img {
  max-width: 100%;
}

.mobile-cookie-message {
  padding-inline: 20px;
  background-color: #f5f5f5;
  color: #555;
  font-size: 10px;
  font-family: sans-serif;
  line-height: 1.5;
  margin-bottom: 65px;
  padding-bottom: 30px;
}

.message-header {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.cookie-icon {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.mobile-cookie-message img {
  width: 24px;
}

.cookie-accept-btn {
  margin-top: 20px;
}

.cookie-accept-btn a,
.cookie-accept-btn span {
  padding: 10px 20px;
  border: solid 1px #105484;
  border-radius: 5px;
  color: #105484;
  font-variant: small-caps;
}

#mobile-cookie-accept {
  background-color: #105484;
  color: #f5f5f5;
  margin-right: 10px;
  user-select: none;
  cursor: pointer;
}

.footer {
  background-color: #f5f5f5;
  padding: 20px;
  font-family: sans-serif;
  color: #555;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}

.footer img {
  max-width: 75%;
  margin: 0 auto;
}

.footer span {
  font-size: 12px;
  text-align: center;
}

.footer a {
  text-decoration: none;
  font-variant: small-caps;
}

.footer-logo,
.location-text {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 0;
}

.mobile-call-us,
.footer-call-us {
  padding: 10px 20px;
  background-color: #105484;
  color: #f5f5f5;
  border-radius: 25px;
  border: solid 2px #f5f5f5;
  margin: 0 auto;
  margin-bottom: 20px;
}

.nav-links,
.privacy-links {
  display: none;
}

.copyright-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-bottom: 80px;
}

.copyright-info a {
  color: var(--link-color);
}

/* ABOUT US PAGE */
.about-us-container {
  display: flex;
  flex-direction: column-reverse;
  color: var(--dark-blue);
  font-size: 14px;
  margin-bottom: 20px;
}

.about-us-container img {
  border: solid 5px #f5f5f5;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  height: 10%;
}

.about-us-btns {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-block: 20px;
}

.about-us-btns a {
  padding: 10px 20px;
  background-color: var(--link-color);
  color: #f5f5f5;
  border-radius: 25px;
  font-weight: bold;
}

/* BUILDS PAGE */
.builds-container,
.fit-outs-container {
  color: var(--dark-blue);
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.builds-container h2,
.fit-outs-container h2,
.builds-container h3,
.fit-outs-container h3 {
  color: #333;
}

.builds-container h3,
.fit-outs-container h3 {
  font-size: smaller;
}

.builds {
  margin-top: 20px;
  display: flex;
  flex-direction: column-reverse;
  column-gap: 20px;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.builds-text hr {
  margin-block: 10px;
  border: solid 1px rgba(0, 0, 128, 0.2);
  border-radius: 25px;
}

.builds-image {
  position: relative;
  cursor: pointer;
}

.gallery-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  color: #f5f5f5;
  font-weight: bold;
}

.modal-content img {
  width: 100%;
  margin: 0 auto;
  border: solid 5px #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 1000;
  opacity: 0.8;
}

.btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  z-index: 1000;
}

.carousel-item {
  position: relative;
}

.image-caption {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 0;
  right: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #f5f5f5;
  width: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.image-caption i {
  margin-right: 5px;
}

.image-location {
  font-size: smaller;
}

/* FIT OUTS PAGE */
.fit-outs-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.fit-outs-container hr {
  margin-top: -2px;
}

.nav-link {
  color: var(--link-color);
  font-weight: bold;
  letter-spacing: 2px;
}

.fit-outs-container #myTab .active {
  color: var(--dark-blue);
  border-bottom: solid 5px var(--dark-blue);
}

#myTab {
  display: flex;
  justify-content: center;
}

#baynes {
  margin-right: 50px;
}

#clansman {
  color: var(--link-color);
}

/* CONTACT US PAGE */
.contact-us-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  color: var(--dark-blue);
}

.contact-us-form {
  margin-bottom: 20px;
}

.contact-us-form form {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  background-color: #d9d9d9;
  padding: 20px;
  margin-top: 10px;
  border-radius: 10px;
}

.contact-us-container input {
  border-radius: 5px;
  outline: none;
  border: solid 1px #7d7c7c;
  padding: 5px;
  margin-bottom: 10px;
}

.contact-us-container small {
  font-size: 11px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.contact-us-container form .required {
  color: #ff0000;
}

.contact-us-form form button {
  padding: 10px 20px;
  border-radius: 10px;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: #0077ff;
  color: #f5f5f5;
  font-variant: small-caps;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 5px;
  margin-top: 20px;
}

.contact-phone {
  border: solid 1px var(--dark-blue);
  border-radius: 25px;
  padding: 10px 20px;
}

.contact-phone:hover {
  background-color: var(--dark-blue);
  color: #f5f5f5;
}

.form-privacy-link {
  color: var(--link-color);
}

.prefer-to-speak-to-us {
  text-align: center;
}

/* PRIVACY POLICY PAGE */
.pp-container {
  display: flex !important;
  flex-direction: column !important;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

span.last-updated {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pp-container ul {
  list-style-type: none;
}

.pp-container h1,
.pp-container h2,
.pp-container h3,
.pp-container h4 {
  color: #333;
}

.privacy-contacts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* THANK YOU PAGE */
.thank-you-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.thank-you-container h2 {
  text-align: center;
  color: var(--dark-blue);
}

.thank-you-container span {
  background: var(--link-color);
  color: #f5f5f5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.mobile-thank-you-image {
  display: block;
}

.thank-you-image {
  display: none;
}

@media screen and (min-width: 600px) {
  .cookie-icon h5 {
    font-size: 1.5rem;
  }

  a {
    transition: all 0.5s ease-in-out;
  }

  header,
  main {
    width: 99svw;
    margin: 0 auto;
    margin-block: 20px;
  }

  img {
    max-width: unset;
  }

  .mobile-nav-links {
    display: none;
  }

  .call-us {
    width: 1200px;
    margin: 0 auto;
    text-align: right;
  }

  .call-us a {
    padding: 5px 10px;
    margin: 10px;
    background-color: #f5f5f5;
    border-radius: 25px;
  }

  .call-us a:hover {
    background-color: var(--link-color);
    color: #f5f5f5;
  }

  .footer-call-us:hover {
    filter: brightness(125%);
  }

  .call-us i {
    margin-inline: 5px;
  }

  header img {
    filter: unset;
  }

  .backdrop {
    background-color: rgba(0, 0, 0, 0.45);
  }

  .container {
    background-color: rgba(0, 0, 0, 0.65);
  }

  nav,
  .container {
    width: 1200px;
    margin: 0 auto;
    color: #f5f5f5;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  nav ul {
    list-style-type: none;
    display: flex;
    gap: 50px;
  }

  .backdrop nav a {
    color: #f5f5f5;
  }

  .backdrop nav .nav-links a.current,
  .backdrop nav .nav-links a:hover {
    padding-bottom: 5px;
    border-bottom: solid 5px #f5f5f5;
    border-radius: 2px;
  }

  .logo,
  .nav-links {
    display: flex;
  }

  .mobile-logo,
  .mobile-image {
    display: none;
  }

  .hero-section {
    display: flex;
    flex-direction: row;
    padding: 20px;
  }

  .hero-text,
  .hero-form {
    max-width: 600px;
  }

  .hero-text,
  .hero-text h1,
  .hero-text h2 {
    color: #f5f5f5;
    text-align: left;
  }

  .hero-text {
    padding-bottom: 10px;
  }

  .hero-text p {
    font-weight: 400;
  }

  .hero-text a {
    padding: 10px 20px;
    background-color: var(--link-color);
    color: #f5f5f5;
    border-radius: 25px;
    margin-bottom: 20px;
    border: solid 2px #f5f5f5;
  }

  .hero-text h1 {
    font-size: 40px;
    letter-spacing: 5px;
    text-shadow: 2px 2px #555;
  }

  .hero-text ul {
    margin-left: 18px;
    margin-bottom: 20px;
  }

  .hero-form {
    width: 450px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 15px;
    color: #333;
  }

  .hero-form form {
    display: flex;
    flex-direction: column;
    padding: 0px 20px 20px 20px;
  }

  .hero-form .required {
    color: #ff0000;
  }

  .hero-form form small {
    font-size: 10px;
  }

  .hero-form form button {
    font-family: var(--link-font), sans-serif;
  }

  .hero-text h2,
  .hero-form h2 {
    font-size: 24px;
    font-variant: small-caps;
    font-weight: 400;
    letter-spacing: 5px;
  }

  .hero-form h2 {
    color: var(--dark-blue);
    letter-spacing: unset;
    text-align: center;
    font-weight: 600;
  }

  .hero-form label,
  .contact-us-form label {
    font-size: smaller;
  }

  .hero-form input,
  .hero-form textarea {
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
  }

  .hero-form input {
    padding-block: 5px;
  }

  .hero-form input#email {
    margin-bottom: 0px;
  }

  .hero-form small {
    margin-bottom: 20px;
  }

  .hero-form textarea {
    height: 100px;
    resize: none;
  }

  .hero-form button {
    background-color: #0077ff;
    color: #f5f5f5;
    font-variant: small-caps;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 5px;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
  }

  .hero-form button:hover,
  .about-us-btns a:hover {
    filter: brightness(120%);
  }

  .mobile-call-us {
    display: none;
  }

  .mobile-recent-work {
    display: none;
  }

  .recent-work {
    display: block;
    background-color: var(--link-color);
    padding: 20px;
    height: 470px;
  }

  .recent-work h3 {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 50px;
    margin-bottom: 20px;
    color: #f5f5f5;
  }

  .recent-work button i {
    font-size: 2rem;
  }

  .recent-work button i:hover {
    color: #fff;
  }

  .recent-work-container {
    display: flex;
    height: 360px;
    justify-content: center;
    font-size: 18px;
  }

  .previous-btn-container,
  .next-btn-container {
    align-self: center;
  }

  .project-description-container {
    align-self: stretch;
    font-size: 18px;
  }

  .project-description-container h4,
  .project h4 {
    margin-bottom: 20px;
  }

  .project-container {
    position: relative;
    width: 100%;
  }

  .project {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    column-gap: 20px;
    background-color: var(--link-color);
  }

  .project-description a {
    width: fit-content;
    align-self: flex-end;
  }

  .message-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer {
    flex-direction: row;
  }

  .footer-logo {
    display: block;
  }

  .nav-links,
  .privacy-links {
    display: flex;
  }

  .footer .nav-links a,
  .footer .privacy-links a {
    color: var(--link-color);
  }

  .footer .nav-links a.current,
  .footer .privacy-links a.current {
    color: var(--dark-blue);
    font-weight: bold;
  }

  .footer .nav-links a:visited,
  .footer .privacy-links a:visited {
    color: var(--link-color);
  }

  .footer ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }

  .footer li {
    margin-block: 10px;
  }

  .footer i {
    margin-right: 5px;
  }

  .copyright-info {
    display: none;
  }

  .mobile-cookie-message {
    margin-bottom: 0;
  }

  /* ABOUT US PAGE */
  .about-us-container {
    max-width: 1200px;
    column-gap: 20px;
    margin: 0 auto;
    margin-bottom: 20px;
    flex-direction: row;
    font-size: 18px;
  }

  .about-us-container img {
    height: 100%;
  }

  .about-us-btns {
    justify-content: flex-start;
    column-gap: 20px;
  }

  .about-us-container h1 {
    text-align: left;
  }

  .about-us-btns a {
    padding: 10px 20px;
    background-color: var(--link-color);
    color: #f5f5f5;
    border-radius: 25px;
    font-weight: bold;
  }

  /* BUILDS PAGE */
  .builds-container h1 {
    text-align: left;
  }

  .sterling-aberdeen,
  .fort-william,
  .fit-outs-sterling-glasgow,
  .baynes,
  .holiday-homes,
  .sprinkle-tops,
  .cobbs-glasgow {
    flex-direction: row;
  }

  .sterling-glasgow,
  .letterfinlay,
  .sterling-dunfermline,
  .gift-shop,
  .clansman,
  .cobbs-dunfermline,
  .cobbs-aberdeen {
    flex-direction: row-reverse;
  }

  /* FIT OUTS PAGE */
  .fit-outs-container h1 {
    text-align: left;
  }

  #myTab {
    justify-content: flex-start;
  }

  #baynes {
    margin-right: 0px;
  }

  .carousel-item img {
    max-height: 90svh;
  }

  /* CONTACT US PAGE */
  .contact-us-container {
    flex-direction: row;
  }

  .contact-us-container h1 {
    text-align: left;
  }

  /* PRIVACY POLICY PAGE */
  .pp-container h1 {
    text-align: left;
  }

  span.last-updated {
    justify-content: flex-start;
  }

  /* THANK YOU PAGE */
  .mobile-thank-you-image {
    display: none;
  }

  .thank-you-image {
    display: block;
  }
}

@keyframes fadein {
  0% {
    transform: translateY(100svh);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
