﻿@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.pageWrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Luckiest Guy', cursive;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.02em;
}
h1, h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
}
p {
    font-size: 1.1rem;
    line-height: 1.5;
}
b, strong {
    font-weight: 600;
}
em {
    font-style: italic;
}
a {
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
ul li {
    font-size: 1.1rem;
    line-height: 1.5;
}

a.siteButton {
    font-family: 'Luckiest Guy', cursive;
    font-weight: 400;
    font-style: normal;
}
a.siteButton.action {
    background-color: #64177B;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    letter-spacing: 0.03em;
}


header {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
header ul li {
    padding: 10px 20px 10px 0;
    font-size: 1.2rem;
}
header .content-RHS ul {
    justify-content: flex-end;
}
header .content-RHS ul li {
    padding: 10px 0 10px 20px;
}
header ul li i {
    font-size: 1.4rem;
}
header a:hover {
    color: #64177B;
}

.pageHeroArea {
    display: flex;
    width: 100%;
    background-color: #FFF;
    background: url('/images/content/header-background.png') center center no-repeat;
    background-size: cover;
}
.businessLogo {
    width: 90%;
    margin: 125px auto;
    max-width: 350px;
    display: block;
    padding: 60px 75px;
    background-color: rgba(255,255,255,0.9);
    border: 2px solid #000;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.centreText {
    margin: 75px auto;
    text-align: center;
}
.centreText p {
    max-width: 700px;
    margin: 0 auto 25px;
}
.centreText p:last-child {
    margin-bottom: 0;
}


.twoCol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 950px;
    margin: 0 auto 80px;
}
.twoCol article {
    width: calc(50% - 40px);
}
.twoCol .theText {
    flex-grow: 1;
}
.twoCol .theImage {
    max-width: 300px;
}
.twoCol .theImage img {
    width: 100%;
    display: block;
    margin: 0 auto 0 0;
    max-width: 300px;
}
.theText p:not(:last-child) {
    margin-bottom: 15px;
}
.theText a.siteButton {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}
.theText p + a.siteButton,
.theText p + a.siteButton + a.siteButton,
.theText ul + a.siteButton,
.theText ul + a.siteButton + a.siteButton {
    margin-top: 10px;
    display: inline-block;
}
.twoCol .theText a.siteButton + a.siteButton {
    margin-left: 10px;
}

.twoCol.imageRight .theImage {
    order: 2;
}
.twoCol.imageRight .theText {
    order: 1;
    text-align: left;
}

.twoCol ul {
    list-style: disc;
    list-style-position: outside;
    padding: 0 0 0 20px;
    margin: 0 0 20px 20px;
}
.twoCol ul li:not(:last-child) {
    margin-bottom: 5px;
}

.howToFindUs {
    display: flex;
    align-items: flex-start;
    justify-content: stretch;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto 80px;
}
.howToFindUs .theText {
    padding: 0 30px;
    width: calc(45% - 60px);
    text-align:center;
}
.howToFindUs .theText img {
    width: 80%;
    display: block;
    margin: 0 auto 30px;
    max-width: 250px;
}
.howToFindUs .theMap {
    flex-grow: 1;
    height: 450px;
}

.quoteBox {
    background-color: #E8E8E8;
    padding: 50px 20px;
    margin: 0 auto 80px;
    background: #E8E8E8 url('/images/content/header-background.png') center center no-repeat;
    background-size: cover;
    transition: all 1s ease-in-out;
    height: 0;
}
.quoteBox .theQuote {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background-color: rgba(232, 232, 232, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.quoteBox .theQuote p {
    font-size: 1.4rem;
    line-height: 2em;
    font-weight: 300;
}
.quoteBox .quotee {
    margin: 20px auto 0;
    font-style: italic;
    text-align: center;
    font-weight: 600;
}

.FAQs {
    width: 90%;
    max-width: 850px;
    margin: 0 auto;
}

.FAQs > ul > li {
    border-bottom: 1px solid #808080;
    padding: 0 0 10px 0;
    margin: 0 0 10px;
}
.FAQs .theQuestion,
.FAQs .theAnswer {
    padding: 5px;
}
.FAQs .theQuestion {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


footer .footerDetails {
    margin: 100px auto 50px;
    text-align: center;
}
footer .footerDetails .theLogo {
    width: 90%;
    max-width: 250px;
    display: block;
    margin: 0 auto 30px;
}
footer .footerDetails .addressLinks {
    font-size: 1.2rem;
    margin: 0 auto 50px;
}
footer .footerDetails .addressLinks li {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
footer .footerDetails .addressLinks li:last-child {
    margin-bottom: 0;
}

footer .postFooter {
    margin-top: 5px;
    padding: 5px;
    border-top: 1px solid #000;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .postFooter p {
    font-size: 1rem;
}
footer .content-LHS ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
footer .content-LHS ul li {
    padding: 0 5px 0 0;
    margin: 0 5px 0 0;
    border-right: 1px solid #000;
}
footer .content-LHS ul li:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}





.businessContentArea {
    padding: 50px 20px;
}
.businessContentArea h1 {
    text-align: center;
}
.businessContentArea h2 {
    margin: 50px 0 10px;
}
.businessContentArea table {
    margin: 25px auto;
    font-size: 1.1rem;
    line-height: 1.5em;
    text-align: left;
}
.businessContentArea table td {
    padding: 0 20px 10px 0;
}
.businessContentArea table th {
    font-weight: 400;
}


.termsList {
    list-style: lower-latin;
    list-style-position: outside;
    padding: 0 0 0 20px;
    margin: 25px auto -25px;
    width: 90%;
}
.termsList > li {
    margin: 0 auto 15px;
}
.termsList h3 {
    font-family: "Roboto", sans-serif;
    margin: 0 0 5px;
    font-size: 1.3rem;
    font-weight: 400;
}
.termsList li > ul {
    list-style: upper-roman;
    list-style-position: outside;
    padding: 0 0 0 20px;
    margin: 0 0 15px;
    width: 90%;
}


@-webkit-keyframes buzz-out-on-hover {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes buzz-out-on-hover {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

.buzz-out-on-hover {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.buzz-out-on-hover:hover, .buzz-out-on-hover:focus, .buzz-out-on-hover:active {
    -webkit-animation-name: buzz-out-on-hover;
    animation-name: buzz-out-on-hover;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}