:root {
  /* new root */
  --logoBlue: #15478b;
  --logoRed: #ea4639;
  --feetGreen: #51c474;
  --bannerPhoneGrey: #6c7076;
  --backgroundBlue: #234683;
  --heroBackground: #f7f9fd;

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-1: 0 8px 28px rgba(0, 0, 0, 0.08);
  --shadow-2: 0 12px 48px rgba(0, 0, 0, 0.12);
}

* {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

.custom-btn {
  font-weight: bold;
  display: inline-block;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 25px;
  background-color: var(--feetGreen);
  text-decoration: none;
  text-align: center;
}

.custom-btn:hover {
  cursor: pointer;
  background-color: var(--logoRed);
  transition: 0.2s ease;
}

.caveat-brush-regular {
  font-family: "Caveat Brush", serif;
  font-weight: 400;
  font-style: normal;
}
h1,
h1 span,
h2,
h2 span,
h3,
h4,
h4 span,
h5 {
  font-family: "Caveat Brush", serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.5rem;
  font-size: 1rem;
}

.app-container {
  width: 1190px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 800px) {
  .app-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.banner {
  padding: 15px 0;
  display: flex;
}

.logo-wrapper {
  padding: 10px 0;
  flex: 1 1 30%;

  position: relative;
}

.logo-wrapper img {
  width: 65%;
}

.right-banner-wrapper {
  flex: 0 0 68%;
  padding: 0 10px;

  display: flex;
}

.phone-wrapper {
  flex: 0 0 40%;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.phone-wrapper a {
  position: relative;
  color: var(--bannerPhoneGrey);
  text-decoration: none;
  font-weight: 500;
}

.phone-wrapper i {
  color: var(--logoBlue);
  padding: 5px;
}

.socials-wrapper div a {
  color: var(--logoBlue);
  font-size: 2rem;
}
.socials-wrapper div a:hover {
  color: var(--logoRed);
  font-size: 2rem;
}

.socials-wrapper {
  flex: 0 0 20%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-btn {
  font-weight: bold;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: var(--logoRed);
  border: none;
  text-decoration: none;
  text-align: center;
}

.nav-btn:hover {
  cursor: pointer;
  background-color: var(--logoBlue);
  transition: 0.3s ease;
}

.banner-logo {
  width: 160px;
  position: relative;
  left: 15%;
}

.nav {
  height: 50px;
  background-color: #f8f8f8;
  display: flex;
  justify-content: stretch;
  box-shadow: 0 8px 6px -6px rgba(110, 110, 110, 0.5) !important;

  z-index: 1000;
  position: relative !important;
}

.nav-container {
  display: flex;
  justify-content: stretch;
  width: 100%;
  width: 1150px;
  margin: 0 auto;
}

#navbarMobile {
  padding-top: 15px;
  padding-bottom: 15px;
  display: None;
  position: relative;
}

.nav-mobile-btn {
  position: relative;
  top: 50% !important;
  left: 50%;
  transform: translateX(-50%);
}

.nav .custom-nav-link-wrapper {
  flex: 1 2;

  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-nav-link-wrapper a,
.custom-nav-link-wrapper .dropbtn {
  text-decoration: none;
  width: 100%;

  padding: 10px 0;
  display: inline-block;
  position: relative;
}

.custom-dropdown {
  width: 100%;
}

.custom-nav-link-wrapper .custom-nav-link,
.dropbtn {
  color: var(--logoBlue);
  font-size: 1rem;
  font-weight: bold;
  transition: 0.15s ease-in;
  width: 100%;
  text-align: center;
}

.custom-dropdown {
  position: relative;
}

.dropbtn {
  border: none;
  background-color: inherit;
  padding: 10px 0;
}

.dropbtn:hover,
.custom-dropdown {
  cursor: pointer;
}

/* dropdown stuff */

.custom-dropdown-content {
  display: none;
  background-color: #f8f8f8;
  position: absolute;
  z-index: 20;
  left: 5%;
  align-self: flex-start;
  top: 44px;
  border-radius: 7px;
  min-width: 95%;
  padding: 10px;
}

.custom-dropdown-content a {
  color: var(--logoBlue);
  text-decoration: none;
}
.custom-dropdown-content a:hover {
  color: var(--logoRed);
  text-decoration: none;
}

.custom-dropdown:hover .custom-dropdown-content {
  display: block;
}

.custom-dropdown-content:hover {
  display: block;
}

/* Animated lines */
.custom-nav-link {
  display: inline-block;
  position: relative;
  padding: 10px 0;
}

.custom-nav-link:hover {
  color: var(--logoRed);
  transition: 0.1s ease-in;
}
.custom-nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--logoRed);
  transition: transform 0.25s ease-out;
}

.custom-nav-link:hover::after {
  transform: scaleX(1);
}

.custom-nav-link::after {
  transform-origin: bottom center;
}

.custom-nav-link:hover::after {
  transform-origin: bottom center;
}

.active .custom-nav-link {
  color: var(--logoRed);
}

.active {
  color: var(--logoRed) !important;
}

.active::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}

.custom-dropdown-content:hover ~ a {
  background-color: var(--logoBlue);
}

.block {
  min-height: 200px;
  padding: 30px 5%;
  background-color: var(--backgroundBlue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.block h3 {
  font-size: 2.8rem;
  text-align: center;
  color: #fff;
}

.map {
  margin-top: 30px;
  margin-bottom: 10px;
}

footer {
  background-color: var(--backgroundBlue);
}
.footer {
  display: flex;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.3rem;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 35px;
  background-color: var(--logoRed);
  border: none;
  text-decoration: none;
  text-align: center;
}

.footer-btn:hover {
  cursor: pointer;
  background-color: var(--feetGreen);
  transition: 0.2s ease;
}

footer .flex1 {
  flex-basis: 40%;
  color: #fff;
  padding: 20px;
  gap: 20px;
}

footer .flex1 h5 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 15px;
}

footer .flex2 {
  flex-basis: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

footer .flex1 p {
  font-size: 0.8rem;
  font-weight: 500;
}

.flex2 .contact-wrapper {
  flex-basis: 70%;
  color: back;
  font-size: 0.9rem;
}

.flex2 .contact-wrapper i {
  margin-right: 15px;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--feetGreen);
}
.flex2 .contact-wrapper p {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 1rem;
}

.flex2 .location-wrapper {
  display: flex;
  align-items: center;
}

.flex2 .location-wrapper p {
  margin-bottom: 0px;
}
.flex2 .location-wrapper p span {
  display: block;
  padding: 2px 0;
}
.flex2 .downloads-wrapper {
  flex-basis: 25%;
}
.flex2 .downloads-wrapper p {
  font-weight: 500;
  color: black;
  text-decoration: underline;
  font-size: 0.9rem;
}

.downloads-btn {
  display: block;
  margin-top: 20px;
  font-weight: 500;
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: 35px;
  border: none;
  text-decoration: none;
  text-align: center;
}

.prospectus-btn {
  color: #fff;
  background-color: var(--logoRed);
}
.prospectus-btn:hover {
  background-color: var(--feetGreen);
  color: white;
}

.TC-btn {
  color: white;
  background-color: var(--feetGreen);
}
.TC-btn:hover {
  color: #fff;
  background-color: var(--logoRed);
}

.fine-print {
  padding: 10px 30px;
  text-align: center;
}

small {
  font-family: "Open Sans", serif;
}

.loader {
  border: 7px solid #f3f3f3; /* Light grey */
  border-top: 7px solid var(--log); /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.pdf {
  width: 99%;
  height: 1075px;
  margin-bottom: 50px;
}

/* Text and Image global */
.text-and-image {
  display: flex;
}

.text-and-image .text-wrapper {
  flex-basis: 50%;
  box-sizing: border-box;
  padding: 50px 50px 20px 50px;
}

.text-and-image .text-wrapper h2 {
  font-size: 3rem;
  color: var(--logoBlue);
  margin-bottom: 20px;
}
.text-and-image .text-wrapper h3 {
  color: var(--logoRed);
  margin-bottom: 20px;
}

.text-and-image .img-wrapper {
  flex-basis: 50%;
  min-height: 400px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-message {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--logoBlue);
}

@media (max-width: 1150px) {
  .app-container {
    width: 100%;
  }
  #navbar {
    display: none !important;
  }

  #navbarMobile {
    display: block;
  }
}

@media (min-width: 1921px) {
  .app-container {
    width: 60%;
  }
}

@media (max-width: 950px) {
  .footer {
    display: block;
    padding: 0 40px 30px 40px;
  }
}
@media (max-width: 700px) {
  .banner .logo-wrapper img {
    width: 120px;
  }
  footer .flex2 {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .flex2 .contact-wrapper {
    width: 100%;

    font-size: 0.9rem;
  }

  .footer-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
  }

  footer .flex2 .downloads-wrapper {
    width: 100%;

    margin-bottom: 60px;
    margin-top: 40px;
  }

  .right-banner-wrapper .phone-wrapper {
    display: none;
  }
  .right-banner-wrapper .btn-wrapper {
    flex-basis: 100%;
  }

  .nav-btn {
    padding: 10px 5px;
    font-size: 0.8rem;
  }

  .pdf {
    height: 700px;
  }
}

@media (max-width: 800px) {
  .text-and-image {
    flex-direction: column;
  }

  .text-and-image .img-wrapper {
    min-height: 250px;
  }

  .socials-wrapper {
    justify-content: space-evenly;
    flex: 35%;
  }
}
/* =========================
   Compact Cookie Banner
   Colour palette:
   --logoBlue
   --logoRed
   --feetGreen
   --bannerPhoneGrey
   --backgroundBlue
   --heroBackground
   ========================= */

.mm-cookie {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  padding: 10px;
  display: none;
}

.mm-cookie.is-open {
  display: block;
}

/* Card */
.mm-cookie__card {
  width: min(880px, 94%);
  margin: 0 auto;

  background: color-mix(in srgb, white 70%, var(--heroBackground));
  border: 1px solid color-mix(in srgb, var(--logoBlue) 18%, white);
  border-left: 6px solid var(--logoBlue);

  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);

  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

/* Title */
.mm-cookie__title {
  font-family: "Caveat Brush", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--logoBlue);
  margin-bottom: 4px;
}

/* Description */
.mm-cookie__desc {
  color: var(--bannerPhoneGrey);
  font-size: 0.9rem;
  line-height: 1.35rem;
  margin-bottom: 8px;
}

/* Link */
.mm-cookie__link {
  color: var(--logoBlue);
  font-weight: 600;
  text-decoration: none;
}

.mm-cookie__link:hover {
  color: var(--backgroundBlue);
}

/* Toggles */
.mm-cookie__toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.mm-cookie__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;

  border-radius: 999px;
  background: color-mix(in srgb, white 75%, var(--heroBackground));
  border: 1px solid color-mix(in srgb, var(--logoBlue) 15%, white);

  color: var(--bannerPhoneGrey);
  font-weight: 600;
  font-size: 0.8rem;

  user-select: none;
}

.mm-cookie__toggle input {
  accent-color: var(--feetGreen);
}

/* Actions */
.mm-cookie__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

/* Buttons */
.mm-cookie__btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

/* Primary = Red CTA */
.mm-cookie__btn--primary {
  background: var(--logoRed);
  color: #fff;
}

.mm-cookie__btn--primary:hover {
  background: color-mix(in srgb, var(--logoRed) 80%, black);
}

/* Secondary = Blue */
.mm-cookie__btn--secondary {
  background: var(--backgroundBlue);
  color: #fff;
}

.mm-cookie__btn--secondary:hover {
  background: color-mix(in srgb, var(--backgroundBlue) 75%, black);
}

/* Ghost */
.mm-cookie__btn--ghost {
  background: transparent;
  color: var(--logoBlue);
  border: 2px solid color-mix(in srgb, var(--logoBlue) 40%, white);
}

.mm-cookie__btn--ghost:hover {
  background: color-mix(in srgb, white 75%, var(--heroBackground));
}

/* Mobile */
@media (max-width: 820px) {
  .mm-cookie__card {
    grid-template-columns: 1fr;
    width: 96%;
    padding: 12px;
  }

  .mm-cookie__actions {
    justify-content: center;
    padding-top: 0;
  }

  .mm-cookie__btn {
    width: 100%;
    padding: 9px 12px;
  }
}
