@charset "utf-8";
/* CSS Document */

.cmswrapper{
}

@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');
:root {
    --text-default: #221250;
    --colour-primary: #221250;
    --colour-secondary: #ED1847;
    --colour-dark: #221250;
    --colour-light: #f5f5f5;
    font-weight: 400;
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #FFFFFF;
    color: #221250;
    text-transform: uppercase;
    letter-spacing: .05em;
}

@media(max-width: 991px) {
    html.disable-scroll {
        overflow: hidden;
    }
}

@media(max-width:650px) {
    body {}
}

/* --- Theme --- */

.bg-primary {
    background-color: #221250 !important;
    color: #ffffff;
}

.bg-secondary {
    background-color: #ED1847 !important;
    color: #ffffff;
}

.bg-dark {
    background-color: #221250 !important;
    color: #ffffff;
}

.bg-light {
    background-color: #f5f5f5 !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-gradient {
    background: linear-gradient(271.12deg, #ED1847 -16.96%, #170656 181.85%) !important;
    color: white;
}

.text-primary {
    color: #221250;
}

.text-secondary {
    color: #ED1847;
}

/* --- Typography --- */

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 500;
    line-height: 150%;
}

h1, .h1 {
    font-size: 1.92rem;
}

h2, .h2 {
    font-size: 1.71rem;
}

h3, .h3 {
    font-size: 1.71rem;
}

p {
    font-size: 1.05rem;
    line-height: 1.5em;
    margin-top: .75em;
    margin-bottom: 1.5em;
    text-transform: none;
    font-weight: 300;
}

p:first-child {
    margin-top: 0 !important;
}

p:last-child {
    margin-bottom: 0 !important;
}

.text-xl2 {
    font-size: 1.75rem;
    margin-bottom: 1em;
}

.text-xl {
    font-size: 1.5rem;
    margin-bottom: 1em;
}

.text-lg {
    font-size: 1.25rem;
    margin-bottom: 1em;
}

.text-sm {
    font-size: .85rem;
}

.text-xs {
    font-size: .7rem;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-sm {
    font-size: small;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-danger {
    color: red;
}

.text-med-emphasis {
    opacity: 75%;
}

.text-low-emphasis {
    opacity: 50%;
}

.text-weight-light {
    font-weight: 400;
}

/* --- Article Items --- */

.article-item-listings .navbar ul>li:first-child {
    flex: 1;
}

.article-item-listings {
    margin-top: -3rem;
}

.article-item-listings .article-item, .article-item-listings .navbar {
    margin-top: 3rem;
    flex-grow: 0;
}

.article-item .article-item-image {
    display: block;
    padding-top: 50%;
    background-color: #eeeeee;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.article-item .article-item-body>*:last-child {
    margin-bottom: 0;
}

.article-item a:hover {
    opacity: 0.5;
}

@media(min-width: 991px) {
    .article-item-listings .article-item.featured {
        width: 100%;
        display: flex;
        flex-flow: row-reverse nowrap;
        align-items: center;
    }
    .article-item-listings .article-item.featured .article-item-image {
        width: 60%;
        padding: 0;
        height: 50vh;
    }
    .article-item-listings .article-item.featured .article-item-body {
        flex: 1;
        padding: 4rem;
    }
}

/* --- Animations --- */

@keyframe fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1.0;
    }
}

/* --- Buttons --- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    line-height: 1em;
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 600;
    text-align: center;
    transition: 0.2s ease;
    padding: 0 1.6em;
    gap: 1.6em;
    height: 48px;
    border: none;
    cursor: pointer;
    background-color: #221250;
    color: #ffffff;
    text-transform: uppercase;
}

input+.btn, select+.btn, h2+.btn {
    margin-top: 1rem;
}

.btn.lg {
    font-size: calc(1rem * 1.15);
}

.btn.sm {
    font-size: calc(1rem * 0.9);
}

.btn:hover, .btn:focus {
    outline: none;
    background-color: #2212509f;
}

.btn.primary {
    background-color: #E21B41;
    color: #ffffff;
}

.btn.primary:hover, .btn.primary:focus {
    background-color: #E21B419f;
}

.btn.primary:before {
    display: inline-block;
    content: url("../CMS/Images/Arrow Right White.svg");
}

.btn.primary.no-icon:before {
    display: none;
}

.btn.secondary {
    background-color: transparent;
    color: #000000;
    border: solid 1px #D0D0D0;
}

.btn.secondary:hover, .btn.secondary:focus {
    opacity: 0.75;
}

.btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    background-color: #cccccc !important;
    color: inherit !important;
}

.btn.danger {
    background-color: #660000;
    color: #ffffff;
}

.btn.danger:hover, .btn.danger:focus {
    background-color: darkred;
}

.btn.full-width {
    width: 100%;
}

.btn i.fa {
    display: inline-block;
    margin-right: 6px;
}

.main-sidebar .btn {
    width: 100%;
}

.main-sidebar .btn:not(:only-child) {
    margin-top: 1rem;
}

/* --- Cards --- */

.card {
    background-color: #ffffff;
    align-self: stretch;
    display: flex;
    flex-flow: column;
    overflow: hidden;
    height: 100%;
    border: solid 1px #D0D0D0;
    transition: 0.25s ease;
}

.card:not(.no-hover-state):hover {
    border: none;
    background-color: #221250;
    color: white;
}

.card:not(.no-hover-state):hover .btn.secondary {
    border: none;
    background: #E21B41;
    color: white;
}

.card img.card-hover-on {
    display: none;
}

.card:hover img.card-hover-off {
    display: none;
}

.card:hover img.card-hover-on {
    display: initial;
}

.card:last-child {
    margin-bottom: 0;
}

.card-body {
    padding: 2.5rem;
    width: 100%;
    height: 100%;
}

.card-body>*:last-child {
    margin-bottom: 0;
}

.card.landscape {
    flex-flow: row wrap;
}

.card.landscape.reverse {
    flex-flow: row-reverse wrap;
}

.card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card.landscape .card-image {
    width: 60%;
}

.card.landscape .card-body {
    flex: 1;
}

@media(max-width:991px) {
    .card-body {
        padding: 2rem;
    }
    .card.landscape .card-image {
        width: 100%;
        height: 25vh;
    }
    .card.landscape .card-body {
        flex: 1;
    }
    .card.transparent .card-body {
        padding: 0;
        margin-top: 2rem;
    }
}

/* --- Checkbox Lists/Radio Lists --- */

.checkbox-list {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem 2rem;
}

label.checkbox {
    display: inline-flex;
    align-items: center;
    gap: .25em;
    font-weight: 300;
}

/* -- Cookies Message -- */

.cookies_message {
    z-index: 100000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #221250;
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.cookies_message>* {
    margin: 0;
}

.cookies_message a>i.fa {
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-right: 2em;
}

.cookies_message p>a {
    text-decoration: underline;
}

/* --- Dashboard --- */

.navbar.dashboard {
    font-size: 1.25em;
    font-weight: 300;
}

.navbar.dashboard * {
    font-size: inherit;
    font-weight: inherit;
}

.navbar.dashboard ul>li:first-child {
    font-weight: bold;
}

.emailviewer {
    display: inline-block;
    width: 100%;
    line-height: 1;
    padding: 12px;
    border: solid 1px rgba(0, 0, 0, 0.4);
    border-radius: 0;
    margin: 0 0 1rem;
    outline: none;
    background- border: none;
}

.emailviewer div {
    color: White
}

/* --- Fieldsets --- */

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

fieldset legend {
    display: block;
    font-size: 1.25em;
    padding-bottom: 1em;
}

/* --- Footer --- */

footer#footer {
    background-color: #0B0D17;
    color: #D9DBE1;
    padding: 4rem 0 0;
    text-transform: none;
}

footer#footer p {
    font-size: .85rem;
}

footer#footer h2 {
    text-transform: none;
    font-weight: 600;
    font-size: 1.42rem;
    margin-bottom: 1em;
}

footer#footer ul li {
    line-height: 1.5em;
}

footer#footer ul li a {}

footer#footer ul li a .footer-icon-wrapper {
    min-width: 24px;
    text-align: center;
}

footer#footer ul li a .footer-icon-wrapper img {
    max-width: 18px;
    max-height: 20px;
}

footer#footer ul li+li {
    margin-top: 1em;
}

img.footer-brand {
    width: 66%;
    max-width: 240px;
    margin-bottom: 1rem;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0 1rem;
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2rem 0;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
}

.footer-bottom ul li {
    padding: 0 1em;
    margin: 0 !important;
}

.footer-bottom ul li+li {
    border-left: solid 1px rgba(255, 255, 255, 0.1);
}

footer#footer ul li a {
    align-items: flex-start;
}

.footer-bottom .tpos-logo {}

@media(max-width: 991px) {
    .footer-bottom {
        flex-flow: column nowrap;
        gap: 2rem 0;
        align-items: flex-start;
    }
}

/* --- Form Inputs --- */

input:not([type="checkbox"]):not([type="radio"]):not([type="image"]):not([type="button"]):not([type="submit"]), select, textarea {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    line-height: 1;
    padding: 0 .75em;
    height: 48px;
    border: solid 1px #ccc;
    border-radius: 0px;
    margin: 0 0 1rem;
    background-color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    color: inherit;
    text-transform: none;
}

a.multiSelect {
    display: inline-flex !important;
    align-items: center !important;
    height: 48px !important;
    width: 100% !important;
    line-height: 1 !important;
    padding: 0 .75em !important;
    border: solid 1px #ccc !important;
    border-radius: 0px !important;
    margin: 0 !important;
    outline: none !important;
    background-color: #ffffff !important;
    font-size: inherit !important;
    background-image: url('../CMS/Images/Select-Dropdown-Icon.png') !important;
    background-position: right 12px center;
    background-size: auto 20%;
}

.multiSelectOptions {
    padding: 10px;
}

.multiSelectOptions LABEL {
    text-transform: capitalize !important;
    font-weight: 300 !important;
}

/* a.multiSelect::after {
    display: inline-block;
    content: '';
} */

a.multiSelect span {
    text-transform: capitalize !important;
    font-size: 14px !important;
    color: #221250 !important;
}

select {
    -webkit-appearance: initial;
    background-image: url('../CMS/Images/Select-Dropdown-Icon.png');
    background-position: right 12px center;
    background-size: auto 20%;
    background-repeat: no-repeat;
    cursor: pointer;
    height: 48px;
}

select option {
    background-color: white;
    color: #212529;
    font-size: 1rem;
    text-transform: capitalize;
    padding: .5em;
}

textarea {
    height: 9rem;
}

::-webkit-input-placeholder {
    /* Edge */
    color: inherit;
    opacity: 0.5;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: inherit;
    opacity: 0.5;
}

::placeholder {
    color: inherit;
    opacity: 0.5;
}

input[type="checkbox"], input[type="radio"] {
    margin-right: .5rem;
}

label, .label {
    display: inline-block;
    margin-bottom: .75em;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.label .explainer-icon,
label .explainer-icon {
    margin-left: 8px;
}

/* Tooltip container */
.explainer-icon{
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.explainer-icon .explainer-icon-text {
  visibility: hidden;
  width: 200px;
  background-color: #221250;
  color: #fff;
  text-align: left;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -100px;
  font-size: 12px;
  text-transform: none;
}

/* Show the tooltip text when you mouse over the tooltip container */
.explainer-icon:hover .explainer-icon-text{
  visibility: visible;
}

label.hidden {
    visibility: hidden;
    position: absolute;
    left: -9999px;
    top: -9999px;
}

label>span.required {
    color: red;
}

label>span+textarea, label>span+select, label>span+input[type="text"] {
    margin-top: .5rem;
}

.price-slider {
    display: block;
    margin-bottom: 1.5rem;
}

.price-slider input#Price-amount, .price-slider input#Priceamount {
    background: transparent;
    padding: 0;
    border: none;
    margin: 0;
    width: auto;
    display: inline-block;
}

.input-group {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 2rem;
}

.input-group>select, .input-group>input {
    margin: 0;
    !important;
    border-radius: 0;
}

.input-group>select:not(:first-child), .input-group>input:not(:first-child) {
    border-left: none;
}

.input-group>select:first-child, .input-group>input:first-child {
    border-radius: 4px 0 0 4px;
}

.input-group>select:last-child, .input-group>input:last-child {
    border-radius: 0 4px 4px 0;
}

input:not([type="image"]):not([type="button"]):not([type="submit"]):focus, select:focus, textarea :focus {
    outline: solid 2px #9FBBC2;
}

/* --- Grid Layout --- */

.row {
    align-items: flex-start;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    max-width: none;
    padding: 0;
    flex-flow: row wrap;
    margin-left: -40px;
}

.row.spacing {
    margin-top: -3rem;
}

.row.spacing>*[class*="col"] {
    margin-top: 3rem;
}

.row.reverse {
    flex-direction: row-reverse;
}

.row.stretch {
    align-items: stretch;
}

.row.align-center {
    align-items: center;
}

.row>*[class*="col"] {
    flex-grow: 1;
    flex-shrink: 0;
    margin-left: 40px;
}

.row.grow-0>*[class*="col"] {
    flex-grow: 0;
}

.row>*[class*="col-1"] {
    width: calc(1 * 100% / 12 - 40px);
}

.row>*[class*="col-2"] {
    width: calc(2 * 100% / 12 - 40px);
}

.row>*[class*="col-3"] {
    width: calc(3 * 100% / 12 - 40px);
}

.row>*[class*="col-4"] {
    width: calc(4 * 100% / 12 - 40px);
}

.row>*[class*="col-5"] {
    width: calc(5 * 100% / 12 - 40px);
}

.row>*[class*="col-6"] {
    width: calc(6 * 100% / 12 - 40px);
}

.row>*[class*="col-7"] {
    width: calc(7 * 100% / 12 - 40px);
}

.row>*[class*="col-8"] {
    width: calc(8 * 100% / 12 - 40px);
}

.row>*[class*="col-9"] {
    width: calc(9 * 100% / 12 - 40px);
}

.row>*[class*="col-10"] {
    width: calc(10 * 100% / 12 - 40px);
}

.row>*[class*="col-11"] {
    width: calc(11 * 100% / 12 - 40px);
}

.row>*[class*="col-12"] {
    width: calc(12 * 100% / 12 - 40px);
}

@media(max-width:1280px) {
    .row>*[class*="lg-col"] {
        width: calc(100% - 40px);
    }
}

@media(max-width:991px) {
    .row>*[class*="md-col"] {
        width: calc(100% - 40px);
    }
}

@media(max-width:500px) {
    .row>*[class*="sm-col"] {
        width: calc(100% - 40px);
    }
}

@media(min-width:1000px) {
    .row>*[class*="lg-col"].sticky-top {
        position: sticky;
        top: 2rem;
    }
}

@media(min-width:991px) {
    .row>*[class*="md-col"].sticky-top {
        position: sticky;
        top: 2rem;
    }
}

@media(min-width:500px) {
    .row>*[class*="sm-col"].sticky-top {
        position: sticky;
        top: 2rem;
    }
}

/* -- Header -- */

.header-wrapper {
    background-color: #221C41;
    color: #ffffff;
    text-transform: uppercase;
}

.header-top {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    font-size: 12px;
}

.header-top-nav {
    display: flex;
    flex-flow: row nowrap;
}

.header-top-nav-left, .header-top-nav-right {
    background-color: #ECEBEB;
    padding: 12px 24px;
    color: initial;
}

.header-top-nav-right {
    background-color: #f5f5f5;
}

.header-top-nav ul {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0 18px;
}

.header-top-nav ul li {}

.header-top-nav ul li.heading {
    color: #E21B41;
}

.header-top-nav ul li:not(.heading)+li {
    border-left: solid 1px rgba(0, 0, 0, 0.1);
    padding-left: 18px;
}

.header-top-nav ul li a {
    text-decoration: underline;
}

.header-search {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0 10px;
}

.header-search input {
    flex-grow: 1;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    width: auto !important;
    min-width: 0 !important;
    font-size: inherit !important;
    margin: 0 !important;
    border-bottom: solid 1px !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    line-height: 1em !important;
    font-size: inherit !important;
    height: auto !important;
}

.header-search img {
    height: 1em;
}

.header-bottom {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem 0 2rem;
    gap: 0 30px;
}

.header-bottom .logo {
    flex-shrink: 1;
    flex-basis: 250px;
}

.header-bottom .menu-toggle {
    display: none;
}

.header-bottom-nav {
    flex-grow: 1;
    display: block;
}

.header-bottom-nav ul {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0 30px;
}

.header-bottom-nav ul+ul {}

.header-bottom-nav ul li {
    white-space: nowrap;
}

.header-bottom-nav ul li.heading {
    color: rgba(255, 255, 255, 0.25);
    font-size: .8rem;
}

.header-bottom-nav ul li a:not(.btn):not(.header-search-btn) {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0 .75em;
    width: 100%;
    padding: 1em 0;
}

.header-bottom-nav ul li a.btn {
    background-color: transparent;
    color: inherit;
    border: solid 1px #E21B41;
}

.header-bottom-nav ul li a.btn:hover {
    color: #E21B41;
    border-color: white;
}

.header-bottom-nav ul li.header-nav-dropdown {
    position: relative;
}

.header-bottom-nav ul li.header-nav-dropdown .header-nav-dropdown-list {
    display: none;
    position: absolute;
    left: 0;
    background-color: #221C41;
    z-index: 999;
    font-size: .9em;
    min-width: 300px;
}

.header-bottom-nav ul li.header-nav-dropdown:hover>.header-nav-dropdown-list {
    display: block;
}

.header-bottom-nav ul li.header-nav-dropdown .header-nav-dropdown-list a {
    padding: 1em 2em;
}

.header-bottom-nav ul li.header-nav-dropdown .header-nav-dropdown-list a:hover {
    font-weight: 600;
}

@media(max-width: 991px) {
    .header-top {
        display: none;
    }
    .header-bottom {
        flex-flow: row wrap;
        align-items: center;
    }
    .header-bottom .menu-toggle {
        display: inline-flex;
        width: 22px;
    }
    .header-bottom-nav {
        min-width: 100%;
        display: none;
    }
    .header-bottom-nav ul {
        flex-flow: column nowrap;
        align-items: stretch;
        list-style: none;
        gap: 0;
        margin: 30px 0 0;
        padding: 30px 0 0;
        border-top: solid 0.5px white;
    }
    .header-bottom-nav ul:first-child {
        border-top: none;
        padding-top: 40px;
    }
    .header-bottom-nav ul:last-child {
        padding-bottom: 40px;
    }
    .header-bottom-nav ul li a.btn {
        align-self: flex-start;
    }
    .header-bottom-nav .header-search input {
        border: none !important;
    }
    .header-bottom-nav ul li.header-nav-dropdown .header-nav-dropdown-list {
        position: relative;
        background-color: transparent;
        margin-top: 0;
        z-index: 0;
        padding: 0;
        min-width: 0;
    }
    .header-bottom-nav ul li.header-nav-dropdown .header-nav-dropdown-list a {
        padding: 10px 20px;
    }
    .header-bottom-nav>ul>li.header-nav-dropdown>a>img {
        transform: rotate(-90deg);
    }
    .header-bottom-nav>ul>li.header-nav-dropdown>a:hover>img {
        transform: rotate(0deg);
    }
}

/* -- Sign in form -- */

.sign-in-form-wrapper {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
}

.sign-in-form-wrapper .sign-in-form-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sign-in-form-wrapper .sign-in-form {
    padding: 1.5rem;
    background-color: #F5F5F5;
    width: 100%;
    max-width: 500px;
}

.sign-in-form-wrapper .sign-in-form input, .sign-in-form-wrapper .sign-in-form .btn {
    margin: 0 0 1rem !important;
}

.sign-in-form-wrapper p {
    margin: 0;
}

/* --- Images --- */

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper.square {
    padding-top: 100%;
}

.image-wrapper.landscape {
    padding-top: 66%;
}

.image-wrapper.portrait {
    padding-top: 125%;
}

.image-wrapper.shadow {
    box-shadow: 10px -10px 0px #f0f0f0;
}

.banner.light .image-wrapper.shadow {
    box-shadow: 10px -10px 0px rgba(34, 28, 65, 0.3);
}

.image-wrapper>img {
    width: 100%;
}

.image-wrapper.square>img, .image-wrapper.portrait>img, .image-wrapper.landscape>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img {
    max-width: 100%;
}

p>img {
    height: 1em;
    margin-right: .5em;
}

/* --- Layout --- */

.container {
    width: calc(100% - 80px);
    max-width: 1100px;
    margin: 0 auto;
    overflow: visible;
}

.container.fluid {
    max-width: none;
}

.container.lg {
    max-width: 1200px;
}

.container.md {
    max-width: 1000px;
}

.container.sm {
    max-width: 800px;
}

.container.xs {
    max-width: 600px;
}

main#main {}

@media(min-width: 991px) {
    .main-sidebar {
        max-width: 300px;
        flex-grow: 0;
    }
    .main-body {
        padding-right: 4rem;
    }
}

@media(max-width: 991px) {
    .main-sidebar {
        margin-top: 3rem;
    }
}

hr {
    display: block;
    clear: both;
    border: none;
    margin: 3rem 0 0;
}

.no-margin {
    margin: 0 !important;
}

@media(max-width: 991px) {
    main#main {}
    main#main .banner {}
    main section {}
}

@media(max-width: 550px) {
    .container {
        width: calc(100% - 40px);
    }
    main#main {}
    main#main .banner {}
    main section {}
}

/* --- Sections --- */

section {}

section.section {
    padding: 80px 0;
}

section.banner {
    padding: 80px 0;
    background-color: #221250;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

section.banner.light {
    background-color: #ECEBEB;
    color: inherit;
}

@media(max-width: 991px) {
    section.section {
        padding: 3rem 0;
    }
    section.banner {
        padding: 3rem 0;
    }
}

/* --- Links --- */

a {
    cursor: pointer;
    transition: 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    flex-direction: row;
    gap: 0 .75em;
    align-items: center;
}

a:hover, *>a:hover {
    cursor: pointer;
}

a.danger {
    color: red;
}

p>a {
    text-decoration: underline;
}

a>img {
    min-height: .75em;
}

/* --- Lists --- */

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.bullet-list {
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin: 2rem 0;
    text-transform: none;
    font-size: 1.05rem;
    font-weight: 300;
}

ul.bullet-list li {
    margin-left: 1em;
    padding-left: 1em;
}

ul.list-inline {
    display: flex;
    flex-flow: row wrap;
    gap: 1.5rem;
}

ul.list-inline>li {}

ul.list-unstyled {
    list-style: none;
    padding: 0;
}

ul.list-icons li {
    position: relative;
    padding-left: 2rem;
}

ul.list-inline.list-icons>li {
    padding-left: 4rem;
}

ul.list-icons li i.fa {
    position: absolute;
    left: 0;
    top: 0;
}

ul.list-tags {
    list-style: none;
    margin: -1rem 0 2rem;
    padding: 0;
}

ul.list-tags>li {
    display: inline-block;
    background-color: #ED1847;
    color: white;
    padding: .5em 1em;
    margin: 1rem .5rem 0 0;
    border-radius: 4px;
}

ul.checklist {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em 0;
}

ul.checklist li {
    display: flex;
    gap: 1rem;
}

/* --- Navbar --- */

nav.navbar {
    margin-bottom: 1.5rem;
}

nav.navbar ul {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    margin-top: -1.5rem;
    margin-left: -2rem;
    margin-bottom: 0;
    margin-right: 0;
    padding: 0;
    align-items: center;
}

nav.navbar ul>li {
    margin: 0;
    padding: 0;
    margin-left: 2rem;
    margin-top: 1.5rem;
    white-space: nowrap;
}

nav.navbar ul>li>a:not(.btn) {
    text-decoration: underline;
}

main#main nav.navbar ul>li>a:not(.btn) {
    color: #3300CC;
}

nav.navbar ul>li a:hover {
    opacity: 0.5;
}

nav.navbar ul>li>* {
    margin: 0;
}

nav.navbar ul>li>a>.fa {
    margin-right: .5em;
}

nav.navbar.space-between ul {
    justify-content: space-between;
}

/* --- Pagination --- */

.pagination {
    width: 100%;
    margin: 0;
}

.pagination-wrapper br {
    display: none;
}

.pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination ul>li+span {
    display: inherit;
    margin: inherit;
    align-items: inherit;
    justify-content: inherit;
    gap: inherit;
}

.pagination ul li {}

.pagination>ul>li:first-child a, .pagination>ul>li:last-child a {
    font-size: 0;
    color: #221250;
    position: relative;
}

.pagination>ul>li:first-child a::before {
    display: block;
    content: '\00AB';
    font-size: 1rem;
    width: 100%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.pagination>ul>li:last-child a::after {
    display: block;
    content: '\00BB';
    font-size: 1rem;
    width: 100%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.pagination ul li a:hover {}

.pagination ul li a, .pagination .pag_number a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #221250;
    width: 28px;
    height: 28px;
    color: #E21B41;
}

/* -- Skip to Content -- */

.skip-to-content {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visiblity: hidden;
    background-color: #fff;
    padding: 12px;
    z-index: -9999;
}

.skip-to-content:focus {
    left: 0;
    top: 0;
    visibility: visible;
    z-index: 9999;
}

/* -- Hide Elements -- */

@media(min-width:991px) {
    .hide-desktop {
        display: none !important;
    }
}

@media(max-width:991px) {
    .hide-mobile {
        display: none !important;
    }
}

.sr-only {
    width: 1px;
    height: 1px;
    margin: -1px;
    position: absolute;
    left: -999px;
    top: -999px;
    z-index: -999;
    opacity: 0;
    visibility: hidden;
}

/* -- Print Rules -- */

.print-only {
    display: none !important;
}

/* -- Hero Baner --*/

.hero-banner {
    padding: 100px 0;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-banner-title-wrapper {
    padding: 2rem;
    position: relative;
    width: 45%;
    color: white;
    margin-bottom: 2rem;
}

.hero-banner-title-wrapper h1 {
    position: relative;
    z-index: 1;
}

.hero-banner-title-wrapper::after {
    display: block;
    content: '';
    z-index: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
    height: 100%;
    background-color: #221C41;
    opacity: 0.7;
}

.hero-banner-sticker {
    width: 234px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(25%);
}

@media(max-width: 991px) {
    .hero-banner {
        padding: 80px 0;
    }
    .hero-banner-sticker {
        display: none;
    }
    .hero-banner-title-wrapper {
        width: 90%;
    }
    .hero-banner-title-wrapper::after {
        width: 100vw;
    }
}

/* -- Business Search -- */

.buy-a-business-wrapper {
    background-color: #ECEBEB;
}

.buy-a-business-wrapper .container {
    position: relative;
}

ul.buy-a-business-tabs {
    background-color: #ECEBEB;
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    transform: translateY(-99%);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.buy-a-business-tabs li {
    padding: 1em 2em;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.buy-a-business-tabs li:last-child {
    background-color: #D7D7D7;
}

.buy-a-business-top {
    font-size: 1rem;
}

.buy-a-business-form {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    gap: 0 1rem;
    padding: 1.5rem 0 2.5rem;
}

.buy-a-business-form-item {
    flex-grow: 1;
    width: 20%;
    position: relative;
}

.buy-a-business-form .price-range-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    gap: 0 10px;
}

.buy-a-business-form-item label {}

.buy-a-business-form-item select, .buy-a-business-form-item a.multiSelect {
    margin: 0 !important;
    border: none !important;
    height: 40px !important;
}

.buy-a-business-form-item .btn {
    width: 100%;
    height: 40px;
}

.buy-a-business-form-item .btn::before {
    display: none !important;
}

.buy-a-business-form-item .btn+a {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(200%);
    font-size: .8em;
    font-weight: bold;
}

.buy-a-business-bottom {
    background-color: #FAFAFA;
    padding: 1.25rem 0;
}

.buy-a-business-bottom ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 0 1rem;
}

.buy-a-business-bottom ul li {}

.buy-a-business-wrapper .sell-your-business {
    color: white;
    background-color: #221C41;
    padding: 1.5rem;
    display: block;
    text-align: center;
}

@media(max-width: 991px) {
    ul.buy-a-business-tabs {
        width: 100%;
    }
    .buy-a-business-tabs li:last-child {
        display: none;
    }
    .buy-a-business-form {
        flex-flow: column nowrap;
        align-items: stretch;
        gap: 1.25rem 0;
        padding: 2rem 0 2rem;
    }
    .buy-a-business-form-item {
        flex-grow: 0;
        width: 100%;
    }
    .buy-a-business-form-item .btn+a {
        position: relative;
        transform: none;
        margin: 2rem 0 0;
    }
    .buy-a-business-form .price-range-wrapper {
        gap: 0 1rem;
    }
    .buy-a-business-bottom {
        padding: 2rem 0;
    }
    .buy-a-business-bottom ul {
        flex-flow: column nowrap;
        justify-content: flex-start;
        gap: 1.5rem 0;
    }
}

/* -- Advanced Business Search -- */

.advanced-search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.advanced-search-section {
    width: 100%;
}

.advanced-search-section-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 2em;
    font-size: 1rem;
    padding: 0 2em;
    margin: 0 0 2rem;
    white-space: nowrap;
}

.advanced-search-section p.label {
    margin-bottom: 2rem;
    width: 100%;
    display: block;
}

.advanced-search-section-title::before {
    display: block;
    content: '';
    height: 100%;
    position: absolute;
    width: 100vw;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #ECEBEB;
    z-index: -1;
}

.advanced-search-section-title::after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2em 0 0 2em;
    border-color: transparent transparent transparent #ECEBEB;
    position: absolute;
    right: 0;
    transform: translateX(100%);
}

.advanced-search-button-wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem 2rem;
}

.advanced-search-button-wrapper .btn {
    margin: 0;
}

.advanced-search-business-type-wrapper {
    border: solid 1px #EDEDED;
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    overflow: hidden;
}

.advanced-search-business-type-column {
    width: 50%;
}

.advanced-search-business-type-overflow {
    overflow: auto;
    height: 250px;
    padding: 1.5rem;
}

.advanced-search-business-type-column:first-child {
    border-right: solid 1px;
    border-color: inherit;
}

.advanced-search-business-type-column-heading {
    background: #221250;
    color: white;
    padding: .5em 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    widows: 100%;
    margin: 0;
}

.advanced-search-business-type-wrapper label.checkbox {
    margin-bottom: 1rem;
    width: 100%;
}

.price-range-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.price-range-wrapper:not(:last-child) {
    margin-bottom: 2rem;
}

.price-range-wrapper select, .price-range-wrapper>div:not(.divider-line) {
    width: auto;
    flex-grow: 1;
    width: 100%;
}

.price-range-wrapper .divider-line {
    width: 100px;
    border-top: solid 1px;
}

.price-range-wrapper label {
    font-size: .7rem;
}

@media(max-width: 991px) {
    .advanced-search-button-wrapper .btn {
        width: 100%;
    }
    .advanced-search-business-type-column-heading {
        padding: .5rem;
    }
    .advanced-search-business-type-overflow {
        padding: .5rem;
    }
}

/* -- Business Search Results -- */

.business-search-results-top {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.business-search-results-top .advanced-search-section-title {
    margin: 0;
}

.business-search-results-top label {
    margin: 0;
}

.business-search-results-top select {
    width: 150px;
    height: 28px;
    border: solid 1px #221250;
    color: #E21B41;
    margin: 0;
}

.business-search-results-bottom {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.business-search-results-item-wrapper {
    padding: 2rem 0;
}

.business-search-results-item-wrapper:nth-of-type(even) {
    background-color: #F5F5F5;
}

.business-search-results-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
}

.business-search-results-image {
    width: 25%;
    flex-grow: 0;
    flex-shrink: 0;
    padding-top: 25%;
    position: relative;
}

.business-search-results-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.business-search-results-details {
    flex-grow: 1;
}

.business-search-results-details h3 {}

.business-search-results-details p {
    margin: 0;
    font-size: .88rem;
}

.business-search-results-highlights {
    border-top: solid 1px #221250;
    border-bottom: solid 1px #221250;
    padding: 1rem 0;
    margin: 1rem 0;
    display: inline-flex;
    flex-flow: row nowrap;
    gap: 3rem;
    min-width: 50%;
    max-width: 100%;
}

.business-search-results-highlights li {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 25%;
    white-space: nowrap;
    flex-grow: 1;
}

.business-search-results-highlights li:first-child {
    font-weight: bold;
}

.business-search-results-button-wrapper {
    margin: 1rem 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

@media(max-width: 991px) {
    .business-search-results-top {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: space-between;
    }
    .business-search-results-top .advanced-search-section-title {
        margin: 0 0 0 -2rem;
        width: 100%;
    }
    .business-search-results-item {
        flex-flow: column nowrap;
        gap: 2rem;
    }
    .business-search-results-image {
        width: 100%;
        padding-top: 50%;
    }
}

/* -- Trending Sectors --*/

.trending-sectors-wrapper {
    margin: 40px 0;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 2rem;
}

.trending-sectors-wrapper ul {
    flex-grow: 1;
    border-left: solid 1px #D9D9D9;
    padding-left: 40px;
}

.trending-sectors-wrapper ul:first-child {
    border: none !important;
    padding: 0 !important;
}

.trending-sectors-wrapper ul li {
    margin-bottom: 1.5em;
    white-space: nowrap;
}

.trending-sectors-wrapper ul li:last-child {
    margin-bottom: 0;
}

@media(max-width: 991px) {
    .trending-sectors-wrapper {
        margin: 2rem 0;
        flex-flow: column nowrap;
        gap: 2rem 0;
    }
    .trending-sectors-wrapper ul {
        border-left: none;
        border-top: solid 1px #D9D9D9;
        padding-left: 0;
        padding-top: 2rem;
    }
}

/* -- Featured Businesses --*/

.featured-businesses-wrapper {
    color: white;
    padding: 0;
    background-color: #170655;
    border-top: solid 4rem white;
    margin-bottom: 4rem;
}

.featured-businesses-wrapper .bx-wrapper {
    margin-top: -4rem;
    height: 100%;
}

ul.featured-businesses-slider {
    height: 100%;
}

ul.featured-businesses-slider li.slide {
    height: 100%;
}

ul.featured-businesses-slider .featured-business {
    display: flex;
    align-items: stretch;
    height: 100%;
}

ul.featured-businesses-slider .featured-business .featured-business-details {
    width: 40%;
    padding: 2rem;
    background-color: #170655;
    margin-top: 4rem !important;
}

ul.featured-businesses-slider .featured-business .featured-business-details p {
    text-transform: uppercase;
    font-size: .9rem;
    margin: 1.2em 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

ul.featured-businesses-slider .featured-business .featured-business-details p:first-child {
    display: inline-block;
    padding: .5em 1em;
    border: solid 1px white;
    font-weight: 600;
}

ul.featured-businesses-slider .featured-business .featured-business-details h2 {
    height: 3.6em;
    line-height: 1.2em;
    overflow: hidden;
    text-overflow: ellipsis;
}

ul.featured-businesses-slider .featured-business .featured-business-image {
    width: 60%;
    position: relative;
}

ul.featured-businesses-slider .featured-business .featured-business-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    border-radius: 999px !important;
}

@media(max-width: 991px) {
    ul.featured-businesses-slider .featured-business {
        gap: 0;
        flex-direction: column;
    }
    ul.featured-businesses-slider .featured-business .featured-business-details {
        width: 100%;
        padding: 2rem 0;
        order: 2;
        margin: 0 !important;
    }
    ul.featured-businesses-slider .featured-business .featured-business-image {
        width: 100%;
        margin-top: 2rem;
        height: 50vh;
        order: 1;
    }
}

/* -- Testimonials -- */

.testimonial-wrapper {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    gap: 2rem;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.testimonial {
    color: white;
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    flex: 1 1 400px;
}

.testimonial-content {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 55%;
    gap: 1rem 0;
    background-color: #170655;
    margin-top:40px !important;
}

.testimonial-content .testimonial-mark {
    width: 44px;
}

.testimonial-content .testimonial-mark:nth-of-type(2) {
    align-self: flex-end;
}

.testimonial-content .testimonial-rating {}

.testimonial-content p {
    margin: 0;
    font-size: .85rem;
}

.testimonial-author {
    border-top: solid 1px rgba(255, 255, 255, 0.25);
    padding-top: .5rem;
}

.testimonial-author p {
    font-size: 1rem;
    letter-spacing: .1em;
}

.testimonial-author p:last-child {
    font-size: 10px;
}

.testimonial-image {
    max-width: 45%;
    flex-grow: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 768px){
    .testimonial {
        flex-direction: column-reverse;
    }
    .testimonial-content {
        width: 100%;
        max-width: none;
        margin: 0!important;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .testimonial-image {
        width: calc(100% - 40px);
        height: 50vw;
        max-width: none;
        margin: 0 auto -20px;
        z-index: 2;
    }
    .testimonial-container {
        width: 100% !important;
        margin: 0;
    }
    .testimonial-container h2 {
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }
}

/*-- Valuation Form --*/

.valuation-form-section-wrapper {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    padding: 0;
    background-color: #221250;
    color: white;
}

.valuation-form-section-left {
    width: 50vw;
    padding: 4rem;
}

.valuation-form-wrapper {
    background-color: #ECEBEB;
    width: 50vw;
    color: #221C41;
}

.row .valuation-form-wrapper {
    width: 100%;
    position: relative;
    margin-top: -60%;
}

@media(max-width: 991px) {
    .row .valuation-form-wrapper {
        margin-top: 0;
    }
}

.valuation-form-section-wrapper ul {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em 0;
}

.valuation-form-section-wrapper ul li {
    display: flex;
    gap: 1rem;
}

.valuation-form-section-wrapper .tel-no-cta {
    font-size: 2rem;
    gap: 1em;
    padding: .5em 1em;
    border: solid 1px rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.valuation-form-top {
    background-color: #372961;
    color: white;
    padding: 2rem;
}

.valuation-form-top h3 {
    font-size: 1.5rem;
}

.valuation-form-top p {
    text-transform: uppercase;
    margin: 0;
}

.valuation-form-body {
    padding: 3rem 2rem;
}

.valuation-form-body p {
    margin: 0;
}

.valuation-form {
    display: flex;
    flex-flow: column nowrap;
    gap: 2rem;
    align-items: flex-start;
}

.valuation-form>div {
    width: 100%;
}

.valuation-form .form-row {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    column-gap: 2rem;
}

.valuation-form .form-row+.form-row {
    margin-top: .5rem;
}

.valuation-form .form-row label {
    width: 33%;
    white-space: nowrap;
}

.valuation-form .form-row .qq-uploader-selector {
    height: 48px; /* Same height as buttons */
}

@media(max-width: 991px) {
    .valuation-form-section-wrapper {
        flex-flow: column nowrap;
    }
    .valuation-form-section-left {
        width: 100%;
        padding: 3rem 2rem;
    }
    .valuation-form-wrapper {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .valuation-form .form-row {
        flex-flow: row wrap;
    }
    .valuation-form .form-row label {
        width: 100%;
        white-space: nowrap;
    }
}

/* -- Title Banner -- */

.title-banner-wrapper {
    padding: 3rem 0;
    background-color: #170655;
    color: white;
    background-size: cover;
    background-position: center;
}

.title-banner-wrapper h1 {}

.title-banner-wrapper p {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.title-banner-wrapper p:before {
    display: block;
    width: 140px;
    content: '';
    border-top: solid 1px #E21B41;
    margin: .5em 0;
}

/* -- Breadcrumbs -- */

.breadcrumbs-wrapper {
    padding: 1rem 0;
    background-color: #D9D9D9;
}

.breadcrumbs-wrapper ul.breadcrumbs {
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    font-size: .88rem;
}

.breadcrumbs-wrapper ul.breadcrumbs li:not(:first-child) {
    border-left: solid 1px #E21B41;
    padding-left: 1rem;
}

.breadcrumbs-wrapper ul.breadcrumbs li:last-child {
    font-weight: bold;
}

/* -- Request a quote banner -- */

.request-a-quote-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.request-a-quote-checklist li {
    display: flex;
    flex: 1 1 250px;
    gap: 1rem;
    text-transform: none;
    font-size: 1.1rem;
}

/* -- Sidebar widgets -- */

.main-sidebar {
    align-self: stretch;
}

.main-sidebar > div:last-child {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    padding: 1.5rem;
    margin: 3rem 0;
    position: relative;
    background: linear-gradient(297.03deg, #ED1847 -46.62%, #170656 92.75%);
    color: white;
}

.sidebar-widget.sticky {
    position: sticky;
    top: 1rem;
}

.sidebar-widget::after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3rem 0 0 3rem;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(270deg);
}

.sidebar-widget-title {
    color: #221C41;
    display: inline-flex;
    padding: 0 1em;
    height: 2em;
    text-transform: uppercase;
    font-weight: bold;
    background-color: white;
    margin-bottom: 1rem;
    position: relative;
    align-items: center;
}

.sidebar-widget-title::after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2em 0 0 2em;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    right: 0;
    transform: translateX(100%);
}

.sidebar-widget p {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.sidebar-widget-bullet-list {
    display: flex;
    flex-flow: row wrap;
    gap: .5rem;
    margin: 1rem 0 1.5rem;
    padding-top: 1rem;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    font-size: .75rem;
}

.sidebar-widget-bullet-list li {
    flex-basis: 40%;
    flex-grow: 1;
}

.sidebar-profile-wrapper {
    padding-top: 35%;
}

.sidebar-profile-top {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background-color: #221250;
    color: white;
    padding: 1rem;
}

.sidebar-profile-top p {
    text-transform: uppercase;
    margin: 0;
}

.sidebar-profile-top p:nth-of-type(2) {
    font-weight: bold;
    font-size: .88rem;
}

.sidebar-profile-picture {
    width: 90%;
    padding-top: 90%;
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    background-color: #fafafa;
    margin-top: -50%;
    margin-bottom: 2rem;
}

@media(max-width: 991px) {
    .sidebar-profile-wrapper {
        /* margin-top: 50%; */
    }
    .sidebar-profile-picture {
        margin-top: -50%;
    }
}

.sidebar-profile-picture img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-profile-bottom {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background-color: #F6F5F5;
    padding: .5rem;
}

.sidebar-profile-bottom p {
    margin: 0;
    color: #E21B41;
    font-weight: 600;
}

/* -- Our Offices -- */

.office-card-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.office-card-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
}

.office-card-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    left: 0;
    top: 0;
}

.office-card-title {
    background: #221250;
    color: white;
    padding: .5rem 1.5rem;
}

.office-card-title h2 {
    font-size: 1rem;
}

.office-card-details {
    padding: 1.5rem;
    background-color: #ECEBEB;
    padding-bottom: 0;
    flex-grow: 1;
}

.office-card-details ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-card-details ul li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-transform: none;
}

.office-card-details ul li img {
    height: 1em;
    width: 2em;
    flex-shrink: 0;
}

.office-card-details a {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: solid 1px #221250;
    padding: 1rem 0;
}

.office-card-details a:hover {
    font-weight: bold;
}

.office-address {
    background: #F6F5F5;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.office-address.phone {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.office-address img {
    height: 2em;
}

.office-address p {
    margin: 0;
}

/* -- Meet the team -- */

.team-member-wrapper {}

.team-member-wrapper .team-member-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #f5f5f5;
    margin: 0 0 1rem;
}

.team-member-wrapper .team-member-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: top;
}

.team-member-wrapper h2 {
    font-size: .88rem;
}

.team-member-wrapper p {
    font-size: .88rem;
    margin: .5em 0;
}

/* -- Latest News -- */

.news-listing-wrapper {
    text-align: center;
    border-bottom: solid 5px #221C41;
    padding-bottom: 1.5rem;
}

.news-listing-image {
    margin: 0;
    position: relative;
    width: 100%;
    padding-top: 50%;
    background: #fafafa;
}

.news-listing-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.news-listing-details {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    color: #221C41;
    background: #F7F7F7;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    padding: .5rem 1rem;
    text-transform: none;
}

.news-listing-title {
    margin: 0;
    font-size: .95rem;
    font-weight: bold;
    margin: 1.5em 0;
    padding: 0 1rem;
}

.news-listing-date {
    flex-grow: 1;
}

.news-listing-author {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: solid 1px;
}

/* -- News Article -- */

.news-article-wrapper {}

.news-article-title {
    margin: 0;
    border-bottom: solid .5px;
    padding: 0 0 2rem;
}

.news-article-credits {
    margin: 2rem 0;
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    font-weight: bold;
}

.news-article-credits li {}

.news-article-body {
    overflow: auto;
    margin: 2rem 0;
}

.news-article-image {
    float: right;
    width: 50%;
    height: 300px;
    margin: 0 0 2rem 2rem;
}

@media(max-width: 991px) {
    .news-article-image {
        float: none;
        width: 100%;
        margin: 0 0 2rem;
    }
}

/* -- Dashboard -- */

.dashboard-wrapper .card-body img {
    margin-bottom: 1.5rem;
}

.dashboard-wrapper .card-body h2 {
    font-size: 1.22rem;
    font-weight: bold;
}

.dashboard-wrapper .card-body * {
    margin: 0;
}

.dashboard-wrapper .card-body .btn {
    margin-top: 1.5rem;
}

/* -- Sector categories -- */

.sector-banner {
    padding: 20vw 4rem 4rem;
    background-color: #000;
    color: white;
    background-position: center;
    background-size: cover;
}

.cat-boxes {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    width: 100%;
    color: white;
}

.cat-boxes .col-md-3 {
    width: 25%;
}

@media(max-width: 991px) {
    .sector-banner {
        padding: 20vw 2rem 2rem;
    }
    .cat-boxes {
        display: flex;
        flex-flow: row wrap;
        align-items: stretch;
        width: 100%;
        color: white;
    }
    .cat-boxes .col-md-3 {
        width: 50%;
    }
}

.cat-boxes .col-md-3 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
    text-align: center;
}

.cat-boxes .col-md-3 a img {
    max-height: 50px;
}

.cat-boxes .col-md-3 a h2 {
    font-size: 1rem;
}

.cat-boxes .cafe {
    background: #00aeef;
    background: rgba(0, 174, 239, 1);
}

.cat-boxes .cafe:hover {
    background: #00aeef;
    background: rgba(0, 174, 239, 0.6);
}

.cat-boxes .takeaway {
    background: #fbb040;
    background: rgba(251, 176, 64, 1);
}

.cat-boxes .takeaway:hover {
    background: #fbb040;
    background: rgba(251, 176, 64, 0.6);
}

.cat-boxes .postoffice {
    background: #54c0a7;
    background: rgba(84, 192, 167, 1);
}

.cat-boxes .postoffice:hover {
    background: #54c0a7;
    background: rgba(84, 192, 167, 0.6);
}

.cat-boxes .fish-chips {
    background: #5c5aa7;
    background: rgba(92, 90, 167, 1);
}

.cat-boxes .fish-chips:hover {
    background: #5c5aa7;
    background: rgba(92, 90, 167, 0.6);
}

.cat-boxes .hairdressers {
    background: #991b38;
    background: rgba(153, 27, 65, 1);
}

.cat-boxes .hairdressers:hover {
    background: #991b38;
    background: rgba(153, 27, 65, 0.6);
}

.cat-boxes .toys {
    background: #df4493;
    background: rgba(223, 68, 147, 1);
}

.cat-boxes .toys:hover {
    background: #df4493;
    background: rgba(223, 68, 147, 0.6);
}

.cat-boxes .restaurant {
    background: #7d2983;
    background: rgba(125, 41, 131, 1);
}

.cat-boxes .restaurant:hover {
    background: #7d2983;
    background: rgba(125, 41, 131, 0.6);
}

.cat-boxes .newsagent {
    background: #f05229;
    background: rgba(240, 82, 41, 1);
}

.cat-boxes .newsagent:hover {
    background: #f05229;
    background: rgba(240, 82, 41, 0.6);
}

.cat-boxes .off-licence {
    background: #d46d57;
    background: rgba(212, 109, 87, 1);
}

.cat-boxes .off-licence:hover {
    background: #d46d57;
    background: rgba(212, 109, 87, 0.6);
}

.cat-boxes .hotels {
    background: #ecc21b;
    background: rgba(236, 194, 27, 1);
}

.cat-boxes .hotels:hover {
    background: #ecc21b;
    background: rgba(236, 194, 27, 0.6);
}

.cat-boxes .kennels {
    background: #c0c0c0;
    background: rgba(192, 192, 192, 1);
}

.cat-boxes .kennels:hover {
    background: #c0c0c0;
    background: rgba(192, 192, 192, 0.6);
}

.cat-boxes .prestige {
    background: #242447;
    background: rgba(36, 36, 71, 1);
}

.cat-boxes .prestige:hover {
    background: #242447;
    background: rgba(36, 36, 71, 0.6);
}

/*CAFES*/

.cat-boxes.cafes-holder .cafes {
    background: #00abe9;
}

.cat-boxes.cafes-holder .buying {
    background: #1eb7ec;
}

.cat-boxes.cafes-holder .selling {
    background: #85cef2;
}

.cat-boxes.cafes-holder .finance {
    background: #86a6bf;
}

/*TAKEAWAYS*/

.cat-boxes.takeaways-holder .takeaways {
    background: #f1b356;
}

.cat-boxes.takeaways-holder .buying {
    background: #f5cf5c;
}

.cat-boxes.takeaways-holder .selling {
    background: #f1b356;
}

.cat-boxes.takeaways-holder .finance {
    background: #e0c24e;
}

/*POST OFFICE*/

.cat-boxes.postoffice-holder .postoffice {
    background: #70bda9;
}

.cat-boxes.postoffice-holder .buying {
    background: #f5cf5c;
}

.cat-boxes.postoffice-holder .selling {
    background: #f1b356;
}

.cat-boxes.postoffice-holder .finance {
    background: #e0c24e;
}

/*POST OFFICE*/

.cat-boxes.postoffice-holder .postoffice {
    background: #70bda9;
}

.cat-boxes.postoffice-holder .buying {
    background: #84c4b2;
}

.cat-boxes.postoffice-holder .selling {
    background: #3fa59d;
}

.cat-boxes.postoffice-holder .finance {
    background: #70bda9;
}

/*FISH & CHIPS*/

.cat-boxes.fish-holder .fish {
    background: #5b5ca2;
}

.cat-boxes.fish-holder .buying {
    background: #8a6ca8;
}

.cat-boxes.fish-holder .selling {
    background: #8888bc;
}

.cat-boxes.fish-holder .finance {
    background: #2b3b8c;
}

/*HAIRDRESSERS*/

.cat-boxes.hairdresser-holder .hairdresser {
    background: #8d293a;
}

.cat-boxes.hairdresser-holder .buying {
    background: #d95b88;
}

.cat-boxes.hairdresser-holder .selling {
    background: #aa475e;
}

.cat-boxes.hairdresser-holder .finance {
    background: #c8375d;
}

/*DELIS*/

.cat-boxes.delis-holder .delis {
    background: #cf5391;
}

.cat-boxes.delis-holder .buying {
    background: #e9a3b4;
}

.cat-boxes.delis-holder .selling {
    background: #db437b;
}

.cat-boxes.delis-holder .finance {
    background: #c8375d;
}

/*RESTAURANTS*/

.cat-boxes.restaurant-holder .restaurant {
    background: #743380;
}

.cat-boxes.restaurant-holder .buying {
    background: #a874ab;
}

.cat-boxes.restaurant-holder .selling {
    background: #8b4994;
}

.cat-boxes.restaurant-holder .finance {
    background: #8f589c;
}

/*NEWSAGENT*/

.cat-boxes.newsagent-holder .restaurant {
    background: #df5e39;
}

.cat-boxes.newsagent-holder .buying {
    background: #e78f7a;
}

.cat-boxes.newsagent-holder .selling {
    background: #df5e39;
}

.cat-boxes.newsagent-holder .finance {
    background: #ea983d;
}

/*BAKERY*/

.cat-boxes.bakery-holder .bakery {
    background: #c8e6f3;
}

.cat-boxes.bakery-holder .buying {
    background: #a0bcc6;
}

.cat-boxes.bakery-holder .selling {
    background: #c8e6f3;
}

.cat-boxes.bakery-holder .finance {
    background: #b5d0d7;
}

/*PUBS*/

.cat-boxes.pubs-holder .pubs {
    background: #303c48;
}

.cat-boxes.pubs-holder .buying {
    background: #5f727c;
}

.cat-boxes.pubs-holder .selling {
    background: #7a919f;
}

.cat-boxes.pubs-holder .finance {
    background: #516270;
}

/*BUTCHERS*/

.cat-boxes.butchers-holder .butchers {
    background: #c8375d;
}

.cat-boxes.butchers-holder .buying {
    background: #b03233;
}

.cat-boxes.butchers-holder .selling {
    background: #e3785b;
}

.cat-boxes.butchers-holder .finance {
    background: #e8aec7;
}

/*SWEETS SHOP*/

.cat-boxes.sweets-holder .sweets {
    background: #c16690;
}

.cat-boxes.sweets-holder .buying {
    background: #a7466e;
}

.cat-boxes.sweets-holder .selling {
    background: #d78db1;
}

.cat-boxes.sweets-holder .finance {
    background: #aa427e;
}

/*PRESTIGE*/

.cat-boxes.prestige-holder .prestige {
    background: #262649;
}

.cat-boxes.prestige-holder .buying {
    background: #2d2f70;
}

.cat-boxes.prestige-holder .selling {
    background: #071b32;
}

.cat-boxes.prestige-holder .finance {
    background: #262568;
}

/*HOTELS*/

.cat-boxes.hotels-holder .hotels {
    background: #ecc21c;
}

.cat-boxes.hotels-holder .buying {
    background: #f7c63b;
}

.cat-boxes.hotels-holder .selling {
    background: #f4d984;
}

.cat-boxes.hotels-holder .finance {
    background: #efd275;
}

/*KENNELS*/

.cat-boxes.kennels-holder .kennels {
    background: #c1c1c0;
}

.cat-boxes.kennels-holder .buying {
    background: #414042;
}

.cat-boxes.kennels-holder .selling {
    background: #a7a9ac;
}

.cat-boxes.kennels-holder .finance {
    background: #d1d3d4;
}

/*OFF-LICENCE*/

.cat-boxes.off-licence-holder .off-licence {
    background: #d36c57;
}

.cat-boxes.off-licence-holder .buying {
    background: #c04430;
}

.cat-boxes.off-licence-holder .selling {
    background: #efa69a;
}

.cat-boxes.off-licence-holder .finance {
    background: #f8e0db;
}

/* -- Crown Background -- */

.bg-crown {
    position: relative;
    overflow: hidden;
}

.bg-crown > * {
    z-index: 1;
}

img.bg-crown-left, img.bg-crown-right {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 66%;
    transform: translateY(33%) translateX(-33%);
}

img.bg-crown-right {
    right: 0;
    left: auto;
    width: 66%;
    transform: translateY(33%) translateX(33%);
}

/* -- Business Details -- */

.business-details-images-wrapper, .business-details-images-wrapper > div {
    display: flex;
    flex-flow: row wrap;
}

.business-details-images-wrapper img {
    width: 25%;
    height: 7vw;
    min-height: 15vh;
    object-fit: cover;
    border: solid .25rem white;
}

.business-details-images-wrapper img:first-child {
    width: 100%;
    height: 20vw;
    min-height: 33vh;
}

@media(max-width: 991px){

.business-details-images-wrapper, .business-details-images-wrapper > div {
display: flex;
flex-flow: row wrap;
}

.business-details-images-wrapper img {
width: 100%;
height: 33vh;
border: none;
margin-bottom: .5rem;
}

.business-details-images-wrapper img:first-child {
width: 100%;
height: 33vh;
min-height: none;
}

}

.business-details-card {

}

.business-details-card p {
    margin: .5em 0;
}

.business-details-card p+a.btn {
    margin-top: 2rem;
}

/* BX Slider overrides */

.bx-wrapper .bx-prev,
.bx-wrapper .bx-next {
    display: block !important;
    width: 18px !important;
    height: 36px !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.bx-wrapper .bx-prev{
    background-image: url("../CMS/Images/Slider Arrow Left.svg") !important;
}
.bx-wrapper .bx-next{
    background-image: url("../CMS/Images/Slider Arrow Right.svg") !important;
}

.bx-wrapper .bx-viewport {
    height: auto !important;
}