/*-----------------------------------------------------------------------
    Fonts
-----------------------------------------------------------------------*/

@import url("https://use.typekit.net/nno0cfh.css");
@import url("https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700");

/*-----------------------------------------------------------------------
    Variables
-----------------------------------------------------------------------*/

:root {
    --admin-height: 32px;
    --header-height: 100px;

    --font-primary: "Stack Sans Text", sans-serif;
    --font-secondary: "the-seasons", sans-serif;

    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    --grey: #aaaaaa;
    --grey-rgb: 170, 170, 170;

    --black: #000000;
    --black-rgb: 0, 0, 0;

    --cream: #f4efe9;
    --cream-rgb: 244, 239, 233;

    --beige: #e0d6cc;
    --beige-rgb: 224, 214, 204;

    --velvet: #2e070e;
    --velvet-rgb: 46, 7, 14;

    --red: #e6383e;
    --red-rgb: 230, 56, 62;

    --border-radius-sm: 3px;
    --border-radius-md: 30px;
    --border-radius-lg: 70px;

    --container-xs: 640px;
    --container-sm: 880px;
    --container-md: 1200px;
    --container-lg: 1360px;

    --box-shadow: 0 0 5px rgba(var(--velvet-rgb), 10%);

    --transition: 0.3s ease;
}

/* Responsive */

@media (max-width: 782px) {
    :root {
        --admin-height: 46px;
    }
}

/* @media (max-width: 990px) {
    :root {
        --header-height: 70px;
    }
} */

/*-----------------------------------------------------------------------
    Base
-----------------------------------------------------------------------*/

.moore-theme *,
.moore-theme *:before,
.moore-theme *:after {
    box-sizing: border-box;
}

.moore-theme * {
    scroll-margin-top: calc(var(--header-height));
}

body.moore-theme,
.editor-styles-wrapper {
    font-optical-sizing: auto;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    font-family: var(--font-primary) !important;
    font-size: 15px !important;
    color: var(--velvet);
    line-height: 1.5;
    font-weight: 300;
}

body.moore-theme,
.editor-styles-wrapper,
.site-main {
    background: var(--white);
}

.site-main {
    position: relative;
    transition: var(--transition) all;
    z-index: 1;
}

/*-----------------------------------------------------------------------
    Admin Bar
-----------------------------------------------------------------------*/

body.moore-theme.admin-bar {
    padding-top: var(--admin-height);
}

body.moore-theme.has-header-space {
    padding-top: var(--header-height) !important;
}

body.moore-theme.admin-bar.has-header-space {
    padding-top: calc(var(--header-height) + var(--admin-height)) !important;
}

#wpadminbar {
    top: 0;
    position: fixed;
    z-index: 20000000000000001;
}

#wpadminbar ul li.admin-bar-search {
    display: none !important;
}

/*-----------------------------------------------------------------------
    Layouts
-----------------------------------------------------------------------*/

.moore-theme *[class*="container-"],
.moore-theme *[class*="section-"],
.moore-theme *[class*="block-"],
.moore-theme *[class*="entry-"],
.moore-theme *[class*="col-"],
.moore-theme .relative {
    position: relative;
}

.moore-theme .absolute {
    position: absolute;
}

/* Flex Layout */

.moore-theme .flex-layout,
.moore-theme .flex-align-start,
.moore-theme .flex-align-center,
.moore-theme .flex-align-end,
.moore-theme .flex-justify-start,
.moore-theme .flex-justify-center,
.moore-theme .flex-justify-end,
.moore-theme .flex-justify-between {
    display: flex;
    flex-wrap: wrap;
}

.moore-theme .flex-align-start {
    align-items: flex-start;
}

.moore-theme .flex-align-center {
    align-items: center;
}

.moore-theme .flex-align-end {
    align-items: flex-end;
}

.moore-theme .flex-justify-start {
    justify-content: flex-start;
}

.moore-theme .flex-justify-center {
    justify-content: center;
}

.moore-theme .flex-justify-end {
    justify-content: flex-end;
}

.moore-theme .flex-justify-between {
    justify-content: space-between;
}

.moore-theme .flex-row-reverse {
    flex-direction: row-reverse;
}

.moore-theme .flex-column-reverse {
    flex-direction: column-reverse;
}

.moore-theme .flex-nowrap {
    flex-wrap: nowrap;
}

.moore-theme .flex-gap {
    gap: 15px;
}

/* Containers */

.moore-theme .container,
.moore-theme .container-xl,
.moore-theme .container-lg,
.moore-theme .container-md,
.moore-theme .container-sm,
.moore-theme .container-xs {
    z-index: 99;
    margin: auto;
    width: calc(100% - 60px);
}

.moore-theme .container,
.moore-theme .container-xl {
    width: 100%;
}

.moore-theme .container-lg {
    max-width: var(--container-lg);
}

.moore-theme .container-md {
    max-width: var(--container-md);
}

.moore-theme .container-sm {
    max-width: var(--container-sm);
}

.moore-theme .container-xs {
    max-width: var(--container-xs);
}

/* Padding */

.moore-theme .padding-lg,
.moore-theme .padding-lg-top {
    padding-top: 80px;
}

.moore-theme .padding-lg,
.moore-theme .padding-lg-bot {
    padding-bottom: 80px;
}

.moore-theme .padding-md,
.moore-theme .padding-md-top {
    padding-top: 40px;
}

.moore-theme .padding-md,
.moore-theme .padding-md-bot {
    padding-bottom: 40px;
}

.moore-theme .padding-sm,
.moore-theme .padding-sm-top {
    padding-top: 20px;
}

.moore-theme .padding-sm,
.moore-theme .padding-sm-bot {
    padding-bottom: 20px;
}

/* Grid Layout */

.moore-theme .grid-col-1,
.moore-theme .grid-col-2,
.moore-theme .grid-col-3,
.moore-theme .grid-col-4,
.moore-theme .grid-col-5,
.moore-theme .grid-col-6 {
    display: grid;
    gap: 30px;
}

.moore-theme .grid-col-2 {
    gap: 80px;
}

.moore-theme .grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.moore-theme .grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.moore-theme .grid-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.moore-theme .grid-col-5 {
    grid-template-columns: repeat(5, 1fr);
}

.moore-theme .grid-col-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Visibility */

.moore-theme .desktop-only {
    display: block;
}

.moore-theme .mobile-only {
    display: none;
}

/* Block Settings */

.moore-theme .block-setting-padding {
    padding-top: var(--block-padding-top);
    padding-bottom: var(--block-padding-bottom);
}

.moore-theme .block-setting-background-colour {
    background-color: var(--block-background-colour);
}

.moore-theme div[class*="block-"].has-minus-margin-top {
    margin-top: -100px;
}

/* Responsive */

@media (max-width: 1200px) {
    .moore-theme .grid-col-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .moore-theme .grid-col-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 861px) {
    .moore-theme .grid-col-2.has-sidebar-left {
        grid-template-columns: 340px 1fr;
    }

    .moore-theme .grid-col-2.has-sidebar-right {
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 860px) {
    .moore-theme .padding-lg,
    .moore-theme .padding-lg-top {
        padding-top: 40px;
    }

    .moore-theme .padding-lg,
    .moore-theme .padding-lg-bot {
        padding-bottom: 40px;
    }

    .moore-theme .grid-col-2 {
        gap: 40px;
    }

    .moore-theme .grid-col-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .moore-theme .grid-col-3,
    .moore-theme .grid-col-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .moore-theme .grid-col-5,
    .moore-theme .grid-col-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .moore-theme .block-setting-padding {
        padding-top: calc(var(--block-padding-top) / 1.5);
        padding-bottom: calc(var(--block-padding-bottom) / 1.5);
    }

    .moore-theme div[class*="block-"].has-minus-margin-top {
        margin-top: calc(-100px / 1.5);
    }
}

@media (max-width: 770px) {
    .moore-theme .container-lg,
    .moore-theme .container-md,
    .moore-theme .container-sm,
    .moore-theme .container-xs {
        width: calc(100% - 30px);
    }

    .moore-theme .padding-md,
    .moore-theme .padding-md-top {
        padding-top: 30px;
    }

    .moore-theme .padding-md,
    .moore-theme .padding-md-bot {
        padding-bottom: 30px;
    }

    .moore-theme .grid-col-4,
    .moore-theme .grid-col-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .moore-theme .desktop-only {
        display: none;
    }

    .moore-theme .mobile-only {
        display: block;
    }
}

@media (max-width: 640px) {
    .moore-theme .grid-col-3,
    .moore-theme .grid-col-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .moore-theme .grid-col-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*-----------------------------------------------------------------------
    Typography
-----------------------------------------------------------------------*/

.moore-theme h1,
.moore-theme h1 *,
.moore-theme .h1,
.moore-theme .h1 *,
.moore-theme h2,
.moore-theme h2 *,
.moore-theme .h2,
.moore-theme .h2 *,
.moore-theme h3,
.moore-theme h3 *,
.moore-theme .h3,
.moore-theme .h3 *,
.moore-theme h4,
.moore-theme h4 *,
.moore-theme .h4,
.moore-theme .h4 *,
.moore-theme h5,
.moore-theme h5 *,
.moore-theme .h5,
.moore-theme .h5 *,
.moore-theme h6,
.moore-theme h6 *,
.moore-theme .h6,
.moore-theme .h6 *,
.moore-theme ul,
.moore-theme ol,
.moore-theme li,
.moore-theme p,
.moore-theme a {
    margin: 0;
    padding: 0;
    color: var(--velvet);
    font-weight: 200;
    text-wrap: wrap;
    word-wrap: break-word;
}

.moore-theme h1,
.moore-theme h1 *,
.moore-theme .h1,
.moore-theme .h1 * {
    font-size: 66px;
    line-height: 68px;
    font-weight: 300;
}

.moore-theme h2,
.moore-theme h2 *,
.moore-theme .h2,
.moore-theme .h2 * {
    font-size: 54px;
    line-height: 56px;
    font-weight: 300;
}

.moore-theme h3,
.moore-theme h3 *,
.moore-theme .h3,
.moore-theme .h3 * {
    font-family: var(--font-secondary);
    font-size: 45px;
    line-height: 48px;
    font-weight: 500;
}

.moore-theme h4,
.moore-theme h4 *,
.moore-theme .h4,
.moore-theme .h4 * {
    font-size: 28px;
    line-height: 32px;
    font-weight: 300;
}

.moore-theme h5,
.moore-theme h5 *,
.moore-theme .h5,
.moore-theme .h5 * {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}

.moore-theme h6,
.moore-theme h6 *,
.moore-theme .h6,
.moore-theme .h6 * {
    font-size: 12px;
    line-height: 16px;
    /* text-transform: uppercase; */
    font-weight: 400;
}

.moore-theme p,
.moore-theme li {
    font-size: 15px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.01em;
    font-weight: 200;
}

.moore-theme strong,
.moore-theme strong * {
    font-weight: 500 !important;
}

.moore-theme a,
.moore-theme a * {
    text-underline-offset: 3px !important;
    text-decoration-thickness: 1px !important;
}

.moore-theme a:hover,
.moore-theme a:focus {
    color: inherit;
}

.moore-theme ul,
.moore-theme ol,
.moore-theme li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.moore-theme code {
    padding: 10px;
    font-size: 14px;
    color: var(--white);
    background: var(--velvet);
}

.moore-theme mark {
    background: none;
}

.moore-theme hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--velvet);
}

/* Responsive */

@media (max-width: 860px) {
    .moore-theme h1,
    .moore-theme h1 *,
    .moore-theme .h1,
    .moore-theme .h1 * {
        font-size: 50px;
        line-height: 54px;
    }

    .moore-theme h2,
    .moore-theme h2 *,
    .moore-theme .h2,
    .moore-theme .h2 * {
        font-size: 45px;
        line-height: 48px;
    }

    .moore-theme h3,
    .moore-theme h3 *,
    .moore-theme .h3,
    .moore-theme .h3 * {
        font-size: 36px;
        line-height: 40px;
    }

    .moore-theme h4,
    .moore-theme h4 *,
    .moore-theme .h4,
    .moore-theme .h4 * {
        font-size: 28px;
        line-height: 32px;
    }

    .moore-theme h5,
    .moore-theme h5 *,
    .moore-theme .h5,
    .moore-theme .h5 * {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 770px) {
    .anotherlevel-theme h1 br,
    .anotherlevel-theme .h1 br,
    .anotherlevel-theme h2 br,
    .anotherlevel-theme .h2 br,
    .anotherlevel-theme h3 br,
    .anotherlevel-theme .h3 br,
    .anotherlevel-theme h4 br,
    .anotherlevel-theme .h4 br,
    .anotherlevel-theme h5 br,
    .anotherlevel-theme .h5 br {
        display: none;
    }
}

/*-----------------------------------------------------------------------
    Content Styling
-----------------------------------------------------------------------*/

/* Sizes */

.moore-theme .text-small,
.moore-theme .text-small * {
    font-size: 13px !important;
    line-height: 18px !important;
}

.moore-theme .text-sub,
.moore-theme .text-sub * {
    font-size: 11px !important;
    line-height: 14px !important;
}

/* Alignment */

.moore-theme .text-left {
    text-align: left;
}

.moore-theme .text-center {
    text-align: center;
}

.moore-theme .text-right {
    text-align: right;
}

/* Colours */

.moore-theme .text-muted {
    opacity: 40%;
}

.moore-theme .text-white,
.moore-theme .text-white *:not(.button, button, .button *, button *, [class*="text-"], [style*="color"], .gform_validation_errors *) {
    color: var(--white) !important;
    border-color: var(--white);
}

.moore-theme .text-red,
.moore-theme .text-red *:not(.button, button, .button *, button *, [class*="text-"], [style*="color"], .gform_validation_errors *) {
    color: var(--red) !important;
    border-color: var(--red);
}

/*-----------------------------------------------------------------------
    WYSIWYG Content
-----------------------------------------------------------------------*/

.wysiwyg-content {
    width: 100%;
    position: relative;
    z-index: 99;
}

.wysiwyg-content h1:not(:last-child),
.wysiwyg-content h2:not(:last-child),
.wysiwyg-content h3:not(:last-child),
.wysiwyg-content h4:not(:last-child),
.wysiwyg-content h5:not(:last-child),
.wysiwyg-content ul:not(:last-child),
.wysiwyg-content ol:not(:last-child),
.wysiwyg-content p:not(:last-child),
.wysiwyg-content img:not(:last-child),
.wysiwyg-content table:not(:last-child),
.wysiwyg-content code:not(:last-child),
.wysiwyg-content blockquote:not(:last-child) {
    margin: 0 0 20px !important;
}

.wysiwyg-content h6:not(:last-child) {
    margin: 0 0 10px !important;
}

.wysiwyg-content li:not(:last-child) {
    margin: 0 0 5px !important;
}

/* Links */

.wysiwyg-content h5 a,
.wysiwyg-content p a,
.wysiwyg-content li a,
.wysiwyg-content span a {
    text-decoration: underline;
}

.wysiwyg-content h5 a:hover,
.wysiwyg-content p a:hover,
.wysiwyg-content li a:hover,
.wysiwyg-content span a:hover {
    color: var(--red);
}

/* Lists */

.wysiwyg-content li {
    position: relative;
    text-align: left;
    padding: 0 0 0 20px;
}

.wysiwyg-content ul > li:before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 3px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: var(--velvet);
}

.wysiwyg-content ul.list-style-checkmark > li {
    padding: 0 0 0 30px;
}

.wysiwyg-content ul.list-style-checkmark > li:before {
    top: 4px;
    width: 16px;
    height: 16px;
    background: url(../img/icon-checkmark.svg) 50% no-repeat;
    background-size: 16px;
}

.wysiwyg-content ol {
    counter-reset: item;
    list-style-position: outside;
}

.wysiwyg-content ol > li:before {
    content: counter(item) ". ";
    counter-increment: item;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Blockquote */

.wysiwyg-content blockquote {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 30px;
    border-left: 2px solid var(--red);
}

/* Hr */

.wysiwyg-content hr {
    margin: 30px 0;
}

/* Images */

.wysiwyg-content img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
}

.wysiwyg-content img:not(:first-child) {
    margin-top: 40px !important;
}

.wysiwyg-content img:not(:last-child) {
    margin-bottom: 40px !important;
}

.wysiwyg-content img.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none;
}

.wysiwyg-content img.alignleft {
    float: left;
}

.wysiwyg-content img.alignright {
    float: right;
}

.wysiwyg-content img.size-full {
    width: 100% !important;
}

/*-----------------------------------------------------------------------
    Global Forms
-----------------------------------------------------------------------*/

.moore-theme form *[disabled] {
    opacity: 50%;
    pointer-events: none;
}

/* Labels */

.moore-theme label,
.moore-theme legend {
    display: block;
    margin: 5px 0;
    color: var(--velvet);
    font-size: 12px;
    line-height: 16px;
    font-weight: 300;
}

.moore-theme label a,
.moore-theme legend a {
    color: var(--velvet) !important;
    text-decoration: underline;
}

.moore-theme label .required,
.moore-theme .gravity-theme form label.gfield_required {
    font-size: inherit;
    color: var(--red);
}

/* Basic Fields */

.moore-theme input:not([type="button"], [type="submit"]),
.moore-theme select,
.moore-theme textarea {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--beige);
    background: transparent;
    padding: 15px 18px !important;
    color: var(--velvet);
    font-size: 15px;
    line-height: 20px !important;
    font-weight: 300;
    text-align: left;
    text-decoration: none;
    transition: none;
    resize: none;
}

.moore-theme input:focus:not([type="button"], [type="submit"]),
.moore-theme select:focus,
.moore-theme textarea:focus {
    outline: 0;
    border-color: rgba(var(--velvet-rgb), 30%);
}

.moore-theme textarea {
    min-height: 100px;
    max-height: 200px;
}

.moore-theme ::placeholder {
    color: rgba(var(--velvet-rgb), 40%);
}

/* Select */

.moore-theme select:not([multiple="multiple"]) {
    padding-right: 45px;
}

.moore-theme select:not([multiple="multiple"]),
.moore-theme .select2-container .select2-selection {
    background: url(../img/icon-chevron-down.svg) no-repeat;
    background-size: 12px;
    background-position: center right 20px;
    cursor: pointer;
}

.moore-theme .select2,
.moore-theme .select2 * {
    margin: 0;
    padding: 0;
}

.moore-theme .select2-container .select2-selection,
.moore-theme .select2-container .select2-selection .selection__rendered {
    line-height: 20px;
}

.moore-theme .select2-container .select2-selection {
    margin: 0;
    outline: 0;
    display: block;
    height: auto;
    padding: 14px 16px;
    border: 1px solid var(--grey);
    background: transparent;
    color: var(--velvet);
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}

.moore-theme .select2-selection__rendered,
.moore-theme .select2-selection__placeholder {
    color: var(--velvet);
}

.moore-theme .select2-dropdown {
    top: 0;
    border: 1px solid var(--velvet);
    background: var(--white);
}

.moore-theme .select2-dropdown .select2-search,
.moore-theme .select2-dropdown .select2-results__option {
    padding: 5px;
}

.moore-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    background: var(--velvet);
}

.moore-theme .select2-container .select2-selection__arrow {
    display: none;
}

/* Checkbox & Radio */

.moore-theme input[type="checkbox"],
.moore-theme input[type="radio"] {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 10px 0 0;
    min-height: 25px !important;
    min-width: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    border: 1px solid var(--grey);
    border-radius: 3px;
    background: var(--white);
    box-shadow: none;
    transition: none;
    cursor: pointer;
}

.moore-theme input[type="checkbox"],
.moore-theme input[type="radio"],
.moore-theme input[type="checkbox"] + label,
.moore-theme input[type="radio"] + label {
    display: inline-block;
    vertical-align: top;
}

.moore-theme input[type="checkbox"] + label,
.moore-theme input[type="radio"] + label {
    margin: 3px 0 !important;
    font-size: 15px !important;
    line-height: 20px;
    width: calc(100% - 40px);
}

.moore-theme input[type="radio"] {
    border-radius: 25px !important;
}

.moore-theme input[type="checkbox"]:checked {
    border-color: var(--velvet);
    background: var(--velvet) url(../img/icon-checkbox.svg) 50% no-repeat;
    background-size: 16px;
}

.moore-theme input[type="radio"]:checked {
    border: 6px solid var(--velvet);
}

.moore-theme input[type="radio"]:before,
.moore-theme input[type="checkbox"]:before {
    display: none !important;
}

/*-----------------------------------------------------------------------
    Gravity Forms
-----------------------------------------------------------------------*/

.gravity-theme form .gform_body,
.gravity-theme form .gform_fields,
.gravity-theme form .gform_footer {
    margin: 0 !important;
}

.gravity-theme form .gform_fields {
    gap: 20px !important;
}

.gravity-theme form .ginput_complex {
    gap: 20px !important;
}

.gravity-theme form .ginput_complex div[class*="ginput"],
.gravity-theme form .ginput_complex span[class*="ginput"],
.gravity-theme form .ginput_complex fieldset {
    padding: 0 !important;
    margin: 0 !important;
    gap: 20px;
}

.gravity-theme .gform_required_legend {
    display: none !important;
}

/* Validation */

.gravity-theme form .gform_ajax_spinner,
.gravity-theme form .gform-loader {
    font-size: 0.1em !important;
    margin: 0 0 0 15px !important;
}

.gravity-theme .gform_validation_errors {
    outline: 0 !important;
    box-shadow: none !important;
    margin-bottom: 20px;
}

.gravity-theme form .gfield .gfield_validation_message {
    padding: 0;
    border: 0;
    background: transparent;
}

.gravity-theme .gform_validation_errors * {
    font-family: var(--font-primary);
    color: var(--red);
    font-size: 15px;
    font-weight: 400;
}

/* Labels */

.gravity-theme form .ginput_preview *,
.gravity-theme form .gform-field-label,
.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    margin: 5px 0;
    font-size: 12px !important;
    font-weight: 300 !important;
    color: var(--velvet);
}

.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    padding: 0 !important;
    font-weight: 300;
    color: rgba(var(--velvet-rgb), 50%);
}

/* Checkbox & Radio */

.gravity-theme form .gfield--type-choice .gchoice {
    margin: 10px 0 !important;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"],
.gravity-theme form .gfield--type-choice input[type="radio"],
.gravity-theme form .gfield--type-consent input[type="checkbox"] {
    display: inline-block;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"] + label,
.gravity-theme form .gfield--type-consent input[type="checkbox"] + label {
    display: inline-block;
    margin: 3px 0 !important;
    width: calc(100% - 40px) !important;
    vertical-align: top !important;
}

/* Date & Time */

.gravity-theme form .gfield--type-date .ginput_container,
.gravity-theme form .gfield--type-time .ginput_container {
    flex-basis: auto !important;
    max-width: 100% !important;
    flex: 1 !important;
}

.gravity-theme form .hour_minute_colon {
    line-height: 42px !important;
}

/* List */

.gravity-theme form .gfield_list .gfield_list_icons button {
    min-width: 16px !important;
    min-height: 16px !important;
    width: 16px !important;
    height: 16px !important;
}

/* File Upload */

.gravity-theme form .gfield--type-fileupload .gform_drop_area {
    border-color: var(--velvet) !important;
}

.gravity-theme form .gfield--type-fileupload .gform_drop_area .gform_button_select_files {
    margin: auto !important;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview {
    display: flex !important;
    align-items: center;
    margin: 10px 0 0 !important;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview * {
    order: 9;
    line-height: 18px;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview .gform_delete_file {
    order: 1;
    margin: 0;
    padding: 0;
    min-width: 0 !important;
    text-decoration: none;
}

/* eWay Credit Card */

.gravity-theme form .gfield--type-creditcard .gform_card_icon_container {
    margin-top: 0 !important;
}

.gravity-theme form .gfield--type-creditcard .ginput_cardinfo_right input {
    max-width: 100% !important;
    flex: 1;
}

/* Progress Bar */

.gravity-theme form .gf_progressbar_wrapper .gf_progressbar {
    margin: 0 0 20px !important;
}

.gravity-theme form .gf_progressbar_wrapper .gf_progressbar_title {
    font-size: 12px !important;
    margin: 0 0 10px !important;
}

.gravity-theme form .gf_progressbar,
.gravity-theme form .gf_progressbar_wrapper,
.gravity-theme form .gf_progressbar_percentage {
    border-radius: 20px !important;
}

.gravity-theme form .gf_progressbar {
    background: rgba(var(--velvet-rgb), 5%) !important;
}

.gravity-theme form .gf_progressbar_percentage {
    background: var(--velvet) !important;
}

/* Section */

.gravity-theme form .gsection {
    padding: 0 !important;
    border: 0 !important;
}

.gravity-theme .gsection h3 {
    font-size: 35px;
    line-height: 38px;
    margin: 10px 0;
}

/* Footer */

.gravity-theme form .gform-footer,
.gravity-theme form .gform-page-footer {
    padding-bottom: 0 !important;
}

.gravity-theme form .gform-footer .button,
.gravity-theme form .gform-page-footer .button {
    margin: 0 !important;
}

/*-----------------------------------------------------------------------
    Buttons
-----------------------------------------------------------------------*/

.moore-theme .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.moore-theme .button svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

/* Default Styles */

.moore-theme button,
.moore-theme button:hover,
.moore-theme button:focus,
.moore-theme .button,
.moore-theme .button:hover,
.moore-theme .button:focus {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 !important;
    outline: 0;
    width: auto;
    height: auto;
    min-width: 100px;
    min-height: 0;
    padding: 10px 15px;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: var(--border-radius-md) !important;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 13px;
    line-height: 18px !important;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    transition: var(--transition) all;
    cursor: pointer;
}

/* Hover/Focus */

.moore-theme button:hover,
.moore-theme button:focus,
.moore-theme .button:hover,
.moore-theme .button:focus {
    outline: 0;
    box-shadow: none;
    box-shadow: 0 0 30px rgba(var(--red-rgb), 25%);
}

.moore-theme .button.button-default:hover svg,
.moore-theme .button.button-default:focus svg {
    transform: scale(1.1);
}

/* Additional Styles */

.moore-theme .button.button-clear {
    color: var(--velvet);
    background: transparent;
    border-color: var(--velvet);
}

.moore-theme .button.button-clear,
.moore-theme .button.button-clear svg {
    color: var(--velvet);
}

/* Responsive */

@media (max-width: 640px) {
    .moore-theme .button-group {
        width: 100%;
    }
}

/*-----------------------------------------------------------------------
    Site Logo
-----------------------------------------------------------------------*/

.site-logo,
.site-logo img,
.site-logo svg {
    display: block;
    max-width: 275px;
    max-height: 85px;
    width: auto;
    height: auto;
    z-index: 20000;
    transition: none;
}

.site-header .site-logo,
.site-header .site-logo img,
.site-header .site-logo svg {
    max-width: 185px;
    max-height: 55px;
}

/*-----------------------------------------------------------------------
    Site Header
-----------------------------------------------------------------------*/

.site-header {
    top: 0;
    width: 100%;
    display: block;
    position: fixed;
    z-index: 2000000002;
    transition: var(--transition) background;
}

body.moore-theme.admin-bar .site-header {
    top: var(--admin-height);
}

.site-header > div[class*="container"] {
    height: var(--header-height);
    max-width: 1500px;
    transition: var(--transition) height;
}

body.moore-theme.home:not(.is-scrolled, .has-active-menu) .site-header .site-logo svg,
body.moore-theme.home:not(.is-scrolled, .has-active-menu) .site-header .site-logo svg * {
    fill: var(--white);
}

/* Scrolled */

body.moore-theme.is-scrolled:not(.has-active-menu) .site-header {
    background: var(--white);
    box-shadow: var(--box-shadow);
}

body.moore-theme.is-scrolled .site-header > div[class*="container"] {
    height: 80px;
}

body.moore-theme.is-scrolled:not(.has-active-menu) .site-header .main-menu {
    background: transparent;
}

/* Main Menu */

.site-header .main-menu,
.site-header .main-menu ul:not(.sub-menu, .mega-sub-menu) {
    display: flex;
    gap: 10px;
}

.site-header .main-menu {
    padding: 10px;
    padding-left: 18px;
    border-radius: var(--border-radius-md);
    background: rgba(139, 0, 25, 5%);
    transition: var(--transition) background;
}

.site-header .main-menu ul li,
.site-header .main-menu ul li a {
    position: relative;
}

.site-header .main-menu ul li a {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    padding: 6px 14px;
    border-radius: var(--border-radius-md);
    transition: var(--transition) all;
}

.site-header .main-menu > ul > li.current-menu-item > a,
.site-header .main-menu > ul > li.current-menu-parent > a,
.site-header .main-menu > ul > li > a:hover,
.site-header .main-menu > ul > li > a:focus {
    color: var(--white);
    background: var(--velvet);
}

.site-header .main-menu .button-clear {
    padding: 0 !important;
    height: 40px;
    width: 40px;
    min-width: 0;
}

/* Sub Menu */

.site-header .trigger-sub-menu svg {
    width: 10px;
    height: 10px;
    margin-left: 3px;
}

.site-header .main-menu ul li .sub-menu-wrap {
    width: 160px;
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    right: 50%;
    margin: 0;
    transform: translate(-50%);
    padding: 25px 0 0 0;
    pointer-events: none;
    z-index: 20000;
    transition: var(--transition) padding;
}

body.moore-theme.is-scrolled .site-header .main-menu ul li .sub-menu-wrap {
    padding: 35px 0 0 0;
}

.site-header .main-menu ul ul .sub-menu-wrap {
    padding: 0 0 0 8px;
    top: 0;
    right: auto;
    left: 100%;
    transform: translate(0);
}

.site-header .main-menu ul li:hover > .sub-menu-wrap {
    opacity: 1;
    pointer-events: all;
}

.site-header .main-menu ul.sub-menu {
    padding: 5px 10px;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.site-header .main-menu ul.sub-menu li a {
    padding: 10px 5px;
}

.site-header .main-menu ul.sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(var(--velvet-rgb), 10%);
}

.site-header .main-menu ul.sub-menu > li.current-menu-item > a,
.site-header .main-menu ul.sub-menu > li.current-menu-parent > a,
.site-header .main-menu ul.sub-menu > li > a:hover,
.site-header .main-menu ul.sub-menu > li > a:focus {
    color: var(--red);
}

/* Mega Menu */

.site-header .main-menu ul li.has-service-mega-menu {
    position: inherit;
}

.site-header .main-menu ul li.has-service-mega-menu .sub-menu-wrap {
    display: none !important;
}

.site-header .main-menu ul li .mega-menu-wrap {
    max-width: var(--container-lg);
    width: calc(100vw - 30px);
    opacity: 0;
    display: block;
    position: absolute;
    left: 50%;
    right: 50%;
    margin: 0;
    transform: translate(-50%);
    padding: 25px 0 0 0;
    pointer-events: none;
    z-index: 20000;
    transition: var(--transition) padding;
}

body.moore-theme.is-scrolled .site-header .main-menu ul li .mega-menu-wrap {
    padding: 35px 0 0 0;
}

.site-header .main-menu ul li:hover > .mega-menu-wrap {
    opacity: 1;
    pointer-events: all;
}

.site-header .main-menu ul li .mega-menu-wrap .mega-menu {
    width: 100%;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    display: flex;
}

.site-header .main-menu ul li .mega-menu-wrap .mega-menu > div[class*="col-"] {
    padding: 0 30px;
    flex: auto;
}

.site-header .main-menu ul li .mega-menu-wrap .mega-menu > div[class*="col-"]:not(:last-child) {
    border-right: 1px solid var(--beige);
}

.site-header .main-menu ul li .mega-menu-wrap .mega-menu > div[class*="col-"] .col-title a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.site-header .main-menu ul li .mega-menu-wrap .mega-menu > div[class*="col-"] .col-title a svg {
    width: 18px;
    min-width: 18px;
    height: 18px;
}

.site-header .main-menu ul li .mega-menu-wrap .mega-menu ul > li.current-menu-item > a,
.site-header .main-menu ul li .mega-menu-wrap .mega-menu ul > li.current-menu-parent > a,
.site-header .main-menu ul li .mega-menu-wrap .mega-menu ul > li > a:hover,
.site-header .main-menu ul li .mega-menu-wrap .mega-menu ul > li > a:focus {
    color: var(--red);
}

.site-header .trigger-menu {
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
}

.site-header .icon-hamburger {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.2s ease;
    transition-delay: 0.2s;
}

.site-header .icon-hamburger span {
    display: block;
    position: absolute;
    background: var(--velvet);
}

.site-header .icon-hamburger span:nth-child(1),
.site-header .icon-hamburger span:nth-child(2) {
    width: 2px;
    height: 8px;
    left: 50%;
    transform: translate(-50%, 0);
}

.site-header .icon-hamburger span:nth-child(1) {
    bottom: calc(50% + 2px);
}

.site-header .icon-hamburger span:nth-child(2) {
    top: calc(50% + 2px);
}

.site-header .icon-hamburger span:nth-child(3),
.site-header .icon-hamburger span:nth-child(4) {
    width: 8px;
    height: 2px;
    top: 50%;
    transform: translate(0, -50%);
}

.site-header .icon-hamburger span:nth-child(3) {
    left: calc(50% + 2px);
}

.site-header .icon-hamburger span:nth-child(4) {
    right: calc(50% + 2px);
}

body.moore-theme.has-active-menu .site-header .icon-hamburger span:nth-child(1),
body.moore-theme.has-active-menu .site-header .icon-hamburger span:nth-child(2) {
    animation: hamburger_height_in 0.6s forwards;
}

body.moore-theme:not(.has-active-menu) .site-header .icon-hamburger span:nth-child(1),
body.moore-theme:not(.has-active-menu) .site-header .icon-hamburger span:nth-child(2) {
    animation: hamburger_height_out 0.6s forwards;
}

body.moore-theme.has-active-menu .site-header .icon-hamburger span:nth-child(3),
body.moore-theme.has-active-menu .site-header .icon-hamburger span:nth-child(4) {
    animation: hamburger_width_in 0.6s forwards;
}

body.moore-theme:not(.has-active-menu) .site-header .icon-hamburger span:nth-child(3),
body.moore-theme:not(.has-active-menu) .site-header .icon-hamburger span:nth-child(4) {
    animation: hamburger_width_out 0.6s forwards;
}

body.moore-theme.has-active-menu .site-header .icon-hamburger {
    transform: rotate(45deg);
    transition-delay: 0.2s;
}

@keyframes hamburger_height_in {
    0% {
        height: 8px;
    }
    30% {
        height: 2px;
    }
    80% {
        height: 2px;
    }
    100% {
        height: 8px;
    }
}

@keyframes hamburger_height_out {
    0% {
        height: 8px;
    }
    30% {
        height: 2px;
    }
    80% {
        height: 2px;
    }
    100% {
        height: 8px;
    }
}

@keyframes hamburger_width_in {
    0% {
        width: 8px;
    }
    30% {
        width: 2px;
    }
    80% {
        width: 2px;
    }
    100% {
        width: 8px;
    }
}

@keyframes hamburger_width_out {
    0% {
        width: 8px;
    }
    30% {
        width: 2px;
    }
    80% {
        width: 2px;
    }
    100% {
        width: 8px;
    }
}

/* Responsive Menu */

.site-responsive-menu {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    top: 0;
    padding: calc(var(--header-height) + 50px) 0 50px;
    background: var(--cream);
    overflow-y: auto;
    z-index: 0;
}

body.admin-bar .site-responsive-menu {
    top: var(--admin-height);
}

.site-responsive-menu div[class*="container"] {
    opacity: 0;
    transition: var(--transition) all;
}

.site-responsive-menu .button-group {
    margin-top: 40px;
}

/* Responsive Menu: Menu */

.site-responsive-menu .main-menu ul li,
.site-responsive-menu .main-menu ul li a {
    position: relative;
}

.site-responsive-menu .main-menu ul li a {
    display: block;
    padding: 15px 0;
    padding-left: 35px;
    font-size: 30px;
    line-height: 34px;
    font-weight: 300;
}

.site-responsive-menu .main-menu ul > li.current-menu-item > a,
.site-responsive-menu .main-menu ul > li.current-menu-parent > a,
.site-responsive-menu .main-menu ul > li > a:hover,
.site-responsive-menu .main-menu ul > li > a:focus {
    color: var(--red);
}

/* Responsive Menu: Sub Menu */

.site-responsive-menu .main-menu ul li .trigger-sub-menu,
.site-responsive-menu .main-menu ul li .trigger-sub-menu svg {
    width: 24px;
    height: 24px;
    color: var(--red);
}

.site-responsive-menu .main-menu ul li .trigger-sub-menu {
    margin: 3px 0;
    position: absolute;
    left: 0;
}

.site-responsive-menu .main-menu ul.sub-menu {
    padding: 10px 0;
}

.site-responsive-menu .main-menu ul.sub-menu li a {
    padding-top: 0;
    font-size: 24px;
    line-height: 30px;
}

.site-responsive-menu ul li.menu-item-has-children ul.sub-menu,
.site-responsive-menu ul li.menu-item-has-children .sub-menu-wrap {
    display: none;
}

.site-responsive-menu ul li.menu-item-has-children.has-active-sub-menu > a > .trigger-sub-menu svg {
    transform: rotate(135deg);
}

.site-responsive-menu ul.sub-menu,
.site-responsive-menu ul.sub-menu li,
.site-responsive-menu ul.sub-menu li a,
.site-responsive-menu ul li.menu-item-has-children.has-active-sub-menu > .sub-menu-wrap {
    display: block !important;
}

/* Responsive */

@media (min-width: 991px) {
    .site-header .trigger-menu,
    .site-responsive-menu {
        display: none !important;
    }
}

@media (max-width: 990px) {
    .site-header > div[class*="container"] {
        height: 80px;
    }

    .site-header .main-menu {
        padding: 0;
        background: transparent;
    }

    .site-header .main-menu ul,
    .site-header .main-menu .button {
        display: none !important;
    }

    .site-header .trigger-menu {
        display: block !important;
    }

    body.has-active-menu .site-main {
        transform: translateX(-100%);
    }

    body.has-active-menu .site-responsive-menu div[class*="container"] {
        opacity: 1;
    }
}

/*-----------------------------------------------------------------------
    Site Search
-----------------------------------------------------------------------*/

.site-search {
    background: var(--white);
    position: fixed;
    left: 0;
    right: 0;
    z-index: 200;
    display: none;
    top: var(--header-height);
    border-bottom: 1px solid var(--grey);
}

body.moore-theme.admin-bar .site-search {
    top: calc(var(--header-height) + var(--admin-height));
}

.site-search *[class*="container"] {
    padding: 20px 0;
}

.site-search .close-search {
    margin-left: 15px;
    cursor: pointer;
}

.site-search .close-search,
.site-search .close-search svg {
    display: block;
    width: 14px;
    height: 14px;
}

.moore-theme form.search-form {
    display: flex;
    gap: 15px;
}

.moore-theme form.search-form,
.moore-theme form.search-form > input {
    flex: 1;
}

/* Responsive */

@media (max-width: 990px) {
    .site-search {
        display: none !important;
    }
}

/*-----------------------------------------------------------------------
    Site Footer
-----------------------------------------------------------------------*/

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .footer-main {
    padding: 30px 20px;
    margin: 0 20px;
    background: var(--velvet);
    border-radius: var(--border-radius-sm);
}

.site-footer .footer-main a,
.site-footer .footer-main p,
.site-footer .footer-main li,
.site-footer .footer-main h6,
.site-footer .footer-main .social-icons svg {
    color: var(--white);
}

.site-footer .footer-main .col-1,
.site-footer .footer-main .col-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.site-footer .footer-main .col-1 {
    width: 330px;
    padding-right: 60px;
    margin-right: 60px;
    border-right: 1px solid rgba(var(--white-rgb), 10%);
    display: flex;
    flex-direction: column;
}

.site-footer .col-1 .site-logo + p {
    margin-top: auto;
}

.site-footer .footer-main .col-2 {
    flex: 1;
}

.site-footer .footer-main .col-2 > .flex-layout:not(:last-child) {
    margin-bottom: 30px;
}

.site-footer .footer-main .col-2 > .flex-layout {
    gap: 30px 40px;
}

/* Footer Menu */

.site-footer .footer-menu {
    max-width: 180px;
}

.site-footer ul,
.site-footer ul li {
    display: block;
}

.site-footer h6 {
    margin-bottom: 15px;
}

.site-footer h6 + ul li {
    margin-top: 10px;
}

.site-footer ul li,
.site-footer ul li a {
    font-size: 14px;
    line-height: 18px !important;
}

.site-footer ul.sub-menu {
    display: none;
}

/* Copyright */

.site-footer .footer-copyright {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer .footer-copyright,
.site-footer .footer-copyright .flex-layout {
    gap: 5px;
}

.site-footer .footer-copyright span {
    width: 2px;
    height: 2px;
    background: var(--velvet);
    border-radius: var(--border-radius-sm);
    opacity: 40%;
}

/* Responsive */

@media (max-width: 770px) {
    .site-footer .footer-main {
        margin: 0 10px;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-main > .flex-layout,
    .site-footer .footer-main .col-2 > .flex-layout,
    .site-footer .footer-copyright {
        flex-direction: column;
    }

    .site-footer .footer-main .flex-layout,
    .site-footer .footer-main .button-group,
    .site-footer .footer-copyright,
    .site-footer .footer-copyright .flex-layout {
        align-items: center;
        justify-content: center;
    }

    .site-footer .footer-main .col-1,
    .site-footer .footer-main .col-2 {
        width: 100%;
        margin: auto;
        text-align: center;
    }

    .site-footer .footer-main .col-1 {
        margin: 0 auto;
        padding-right: 0;
        border-right: 0;
    }

    .site-footer .footer-main .site-logo {
        margin: auto;
        display: block;
    }

    .site-footer .footer-main .col-1 p.text-small {
        margin-top: 30px;
    }
}

/*-----------------------------------------------------------------------
    Site Breadcrumbs
-----------------------------------------------------------------------*/

.site-breadcrumbs {
    margin: 0 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--cream);
}

.site-breadcrumbs .flex-layout {
    align-items: center;
    gap: 8px;
}

.site-breadcrumbs svg {
    width: 10px;
    height: 10px;
    color: var(--red);
}

.site-breadcrumbs a {
    font-weight: 300;
    opacity: 75%;
    transition: none;
}

.site-breadcrumbs a:hover,
.site-breadcrumbs a:focus {
    text-decoration: underline;
}

/*-----------------------------------------------------------------------
    Media
-----------------------------------------------------------------------*/

.moore-theme img {
    max-width: 100%;
    height: auto;
    display: block;
}

.moore-theme svg {
    transition: var(--transition) all;
}

.moore-theme .image-square,
.moore-theme .image-portrait,
.moore-theme .image-landscape {
    width: 100%;
    background: var(--cream);
    position: relative;
    object-fit: cover;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

.moore-theme .image-square {
    aspect-ratio: 1 / 1;
}

.moore-theme .image-portrait {
    aspect-ratio: 4 / 5;
}

.moore-theme .image-landscape {
    aspect-ratio: 3 / 2;
}

/* Background Elements */

.moore-theme .background-image,
.moore-theme .background-parallax,
.moore-theme .background-parallax img,
.moore-theme .background-video,
.moore-theme div[class*="background-"].has-overlay:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.moore-theme .background-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.moore-theme .background-parallax {
    overflow: hidden;
}

.moore-theme .background-parallax img {
    margin: auto;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.moore-theme .background-video,
.moore-theme .background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moore-theme div[class*="background-"].has-overlay:before {
    content: "";
    background: rgba(var(--velvet-rgb), 75%);
    z-index: 9;
}

/* Video Embed */

.moore-theme .responsive-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.moore-theme .responsive-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*-----------------------------------------------------------------------
    Animations
-----------------------------------------------------------------------*/

.moore-theme .anim-in {
    transition: 1s ease all;
}

/*-----------------------------------------------------------------------
    Swiper
-----------------------------------------------------------------------*/

body.wp-admin .moore-theme .swiper-carousel-wrap {
    pointer-events: none;
}

.moore-theme .swiper-carousel-wrap {
    min-width: 100%;
    overflow: hidden;
}

.moore-theme .swiper .swiper-slide {
    width: auto;
    height: auto;
}

/* Pagination */

.moore-theme .swiper-pagination {
    top: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.moore-theme .swiper-pagination span {
    opacity: 100%;
    margin: 0 3px;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background: var(--grey);
    transition:
        var(--transition) width,
        var(--transition) background;
}

.moore-theme .swiper-pagination span.swiper-pagination-bullet-active {
    width: 40px;
    background: var(--velvet);
}

/* Navigation */

.moore-theme .swiper-navigation div[class*="swiper-nav-"] {
    position: absolute;
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    border: 1px solid var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition) border-color;
}

.moore-theme .swiper-navigation .swiper-nav-prev {
    left: 0;
}

.moore-theme .swiper-navigation .swiper-nav-next {
    right: 0;
}

.moore-theme .swiper-navigation div[class*="swiper-nav-"] svg {
    display: block;
    width: 12px;
    height: 12px;
    color: var(--red);
}

.moore-theme .swiper-navigation .swiper-nav-prev:hover,
.moore-theme .swiper-navigation .swiper-nav-next:hover {
    border-color: rgba(var(--velvet-rgb), 20%);
}

/* Responsive */

@media (max-width: 770px) {
    .moore-theme .swiper-pagination,
    .moore-theme .swiper-navigation {
        margin-top: 20px;
    }

    .moore-theme .swiper-navigation {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .moore-theme .swiper-navigation div[class*="swiper-nav-"] {
        position: relative;
        top: 0;
    }
}

/*-----------------------------------------------------------------------
    Tables
-----------------------------------------------------------------------*/

.moore-theme table {
    border-collapse: collapse;
    width: 100%;
}

.moore-theme table,
.moore-theme table tr,
.moore-theme table th,
.moore-theme table td {
    border-color: var(--grey);
}

.moore-theme table th,
.moore-theme table td {
    padding: 10px;
    text-align: left;
    border: 1px solid var(--grey);
}

.moore-theme table th,
.moore-theme table th * {
    font-weight: 500;
}

.moore-theme table .button {
    width: fit-content !important;
    margin: 5px 5px 5px 0 !important;
}

/*-----------------------------------------------------------------------
    Social Icons
-----------------------------------------------------------------------*/

.moore-theme .social-icons {
    gap: 10px;
}

.moore-theme .social-icons a,
.moore-theme .social-icons div,
.moore-theme .social-icons svg {
    margin: 0;
    display: block;
}

.moore-theme .social-icons a,
.moore-theme .social-icons div {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    border: 1px solid rgba(var(--red-rgb), 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.moore-theme .social-icons svg {
    width: 16px;
    height: 16px;
    color: var(--red);
}

.moore-theme .social-icons a:hover,
.moore-theme .social-icons div:hover {
    box-shadow: 0 0 20px rgba(var(--red-rgb), 25%);
}

/*-----------------------------------------------------------------------
    Clipboard Copy
-----------------------------------------------------------------------*/

.moore-theme .copy-to-clipboard {
    position: relative;
    cursor: pointer;
}

.moore-theme .copy-to-clipboard .tooltip {
    background: var(--velvet);
    padding: 5px 8px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    white-space: nowrap;
    color: var(--white);
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -140%);
    transition: var(--transition) all;
}

.moore-theme .copy-to-clipboard .tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--velvet) transparent transparent transparent;
}

.moore-theme .copy-to-clipboard:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/*-----------------------------------------------------------------------
    Popups
-----------------------------------------------------------------------*/

.moore-theme .trigger-popup,
.moore-theme .close-popup {
    cursor: pointer;
    z-index: 20000;
}

.moore-theme .popup-wrap {
    display: none;
}

.moore-theme .popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--velvet-rgb), 80%);
    z-index: 20000000000;
}

/* Containers */

.moore-theme .popup-overlay > *[class*="container"] {
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
    padding: 40px;
    background: var(--white);
}

/* Close Button */

.moore-theme .popup-overlay .close-popup:not(.button) {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
}

.moore-theme .popup-overlay .close-popup svg {
    width: 16px;
    height: 16px;
}

/*-----------------------------------------------------------------------
    Pagination
-----------------------------------------------------------------------*/

.moore-theme .archive-pagination {
    margin: auto;
    margin-top: 40px;
    width: fit-content;
}

.moore-theme .archive-pagination a {
    margin: 0 10px;
    font-size: 12px;
    text-align: center;
}

.moore-theme .archive-pagination a:hover,
.moore-theme .archive-pagination a.is-current {
    text-decoration: underline;
}

.moore-theme .post-pagination .button,
.moore-theme .post-pagination .button:hover,
.moore-theme .post-pagination .button:focus {
    padding: 0 !important;
    min-width: 0 !important;
    border: 0 !important;
}

.moore-theme .post-pagination .pagination-next .button svg {
    transform: rotate(-180deg);
}

/*-----------------------------------------------------------------------
    Categories & Tags
-----------------------------------------------------------------------*/

.moore-theme .group-tags span,
.moore-theme .group-categories a {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}

.moore-theme .group-categories {
    gap: 10px;
}

.moore-theme .group-categories a {
    padding: 8px 15px;
    border-radius: var(--border-radius-md);
    color: var(--velvet);
}

.moore-theme .group-categories a:hover,
.moore-theme .group-categories a.is-current {
    background: var(--velvet);
    color: var(--white);
}

.moore-theme .group-tags span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.moore-theme .group-tags span svg {
    width: 12px;
    height: 12px;
}

/*-----------------------------------------------------------------------
    Single - Post
-----------------------------------------------------------------------*/

.single-post .post-title .inner-title-meta {
    margin: 40px 0 25px;
    display: flex;
    align-items: center;
}

.single-post .post-title .inner-title-meta span:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid var(--red);
}

.single-post .post-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.single-post .post-author .inner-author-image {
    width: 60px;
    height: auto;
    border-radius: 60px;
    background: var(--red);
}

.single-post .post-author .inner-author-content h6 span {
    font-weight: 400;
    opacity: 75%;
}

/* Responsive */

@media (max-width: 860px) {
    .single-post .post-title h1 {
        font-size: 36px;
        line-height: 40px;
    }
}

/*-----------------------------------------------------------------------
    Single - Staff
-----------------------------------------------------------------------*/

.block-staff-intro div[class*="container-"] {
    padding: 10px;
}

.block-staff-intro div[class*="container-"],
.block-staff-intro div[class*="container-"] .image-square {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.block-staff-intro .col-2 {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.block-staff-intro .col-2 .wysiwyg-content {
    margin-bottom: 30px;
}

.block-staff-intro .col-2 .social-icons {
    margin-top: auto;
}

.block-staff-intro .col-2 .social-icons a {
    border-color: var(--white);
    background: var(--white);
}

/* Responsive */

@media (min-width: 861px) {
    .block-staff-intro .grid-col-2 {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }
}

/*-----------------------------------------------------------------------
    Block - Default
-----------------------------------------------------------------------*/

div[class*="block-"] .inner-block-head {
    margin-bottom: 40px;
}

div[class*="block-"] .inner-block-head .container-xs {
    max-width: 480px;
}

div[class*="block-"].has-outer-margin {
    margin: 20px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

div[class*="block-"].has-background-pattern:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/background-emblem.svg) 50% no-repeat;
    background-size: cover;
}

/* Responsive */

@media (max-width: 770px) {
    div[class*="block-"].has-outer-margin {
        margin: 10px;
    }
}

/*-----------------------------------------------------------------------
    Entry - Default
-----------------------------------------------------------------------*/

.moore-theme *[class^="entry-"] {
    display: block;
    position: relative;
    text-decoration: none;
    transition: var(--transition) all;
}

.moore-theme *[class^="entry-"]:not(.entry-accordion) .inner-entry-content {
    padding: 10px 0;
}

.moore-theme *[class^="entry-"]:not(.entry-accordion) .inner-entry-content > *:not(:last-child) {
    margin: 0 0 20px !important;
}

/*-----------------------------------------------------------------------
    Block - Articles
-----------------------------------------------------------------------*/

.moore-theme .listing-posts {
    gap: 30px;
}

.moore-theme .entry-post {
    padding: 30px;
    background-color: rgba(var(--velvet-rgb), 15%);
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
}

.moore-theme .entry-post {
    transition: var(--transition) background-color;
}

.moore-theme .entry-post h4,
.moore-theme .entry-post .group-tags span,
.moore-theme .entry-post .button {
    transition: var(--transition) all;
}

.moore-theme .entry-post .inner-entry-content {
    margin-top: auto;
    padding: 0 !important;
}

.moore-theme .entry-post .group-tags {
    margin-bottom: 40px;
}

.moore-theme .entry-post .button-clear {
    width: fit-content;
    padding: 0 !important;
    border: 0 !important;
    margin-top: 20px;
}

.moore-theme .entry-post .button-clear svg {
    color: var(--red);
}

/* Hover */

.moore-theme .entry-post:hover {
    background-color: var(--red);
}

.moore-theme .entry-post:hover h4,
.moore-theme .entry-post:hover .group-tags span,
.moore-theme .entry-post:hover .button,
.moore-theme .entry-post:hover .button svg {
    color: var(--white);
}

/* Responsive */

@media (max-width: 990px) {
    .block-articles .grid-col-2.has-sidebar-left {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .moore-theme .listing-posts {
        gap: 15px;
    }

    .moore-theme .entry-post {
        padding: 20px;
    }

    .moore-theme .entry-post h4 {
        font-size: 24px;
        line-height: 28px;
    }
}

/*-----------------------------------------------------------------------
    Block - Split Content
-----------------------------------------------------------------------*/

.block-split-content .col-1.col-image img {
    border-top-left-radius: var(--border-radius-lg);
}

.block-split-content .col-2.col-image img {
    border-top-right-radius: var(--border-radius-lg);
}

/* Responsive */

@media (max-width: 860px) {
    .block-split-content .col-content {
        order: 9;
    }

    .block-split-content .col-image {
        order: 1;
    }
}

/*-----------------------------------------------------------------------
    Block - Accordion
-----------------------------------------------------------------------*/

.moore-theme .entry-accordion {
    display: block;
    margin: 0;
    height: auto;
    padding: 25px 20px;
}

.moore-theme .entry-accordion:before,
.moore-theme .entry-accordion:last-child:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(var(--velvet-rgb), 45%);
    transition: 1s ease all;
    transition-delay: calc(var(--i) * 0.25s);
}

.moore-theme .entry-accordion:last-child:after {
    top: auto;
    bottom: 0;
    transition-delay: calc((var(--i) + 1) * 0.25s);
}

.moore-theme .listing-accordion.is-visible .entry-accordion:before,
.moore-theme .listing-accordion.is-visible .entry-accordion:after,
.wp-block .moore-theme .listing-accordion .entry-accordion:before,
.wp-block .moore-theme .listing-accordion .entry-accordion:after {
    width: 100%;
}

.moore-theme .entry-accordion .inner-entry-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    transition: var(--transition) all;
    cursor: pointer;
}

.moore-theme .entry-accordion .inner-entry-title h5 {
    flex: 1;
}

.moore-theme .entry-accordion .inner-entry-title svg {
    min-width: 20px;
    min-height: 20px;
    margin: 5px 0;
    color: var(--red);
}

.moore-theme .entry-accordion.is-active .inner-entry-title svg {
    transform: rotate(135deg);
}

.moore-theme .entry-accordion .inner-entry-content {
    display: none;
}

.moore-theme .entry-accordion .wysiwyg-content {
    margin-top: 15px;
    padding: 0 35px;
}

/* Responsive */

@media (max-width: 860px) {
    .moore-theme .entry-accordion .inner-entry-title svg {
        margin: 1px 0;
    }
}

/*-----------------------------------------------------------------------
    Block - Image Gallery
-----------------------------------------------------------------------*/

.block-image-gallery .carousel-gallery img {
    width: auto;
    height: 50vw;
    min-height: 320px;
    max-height: 550px;
}

.block-image-gallery .carousel-gallery .swiper-navigation .swiper-nav-prev {
    left: 60px;
}

.block-image-gallery .carousel-gallery .swiper-navigation .swiper-nav-next {
    right: 60px;
}

/*-----------------------------------------------------------------------
    Block - Video
-----------------------------------------------------------------------*/

.block-video video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/*-----------------------------------------------------------------------
    Block - Separator
-----------------------------------------------------------------------*/

.block-separator .container-xl {
    max-width: calc(100% - 40px);
}

.block-separator .separator {
    display: block;
    margin: 0 auto;
    width: 0;
    height: 1px;
    background: var(--block-background-colour);
}

.block-separator .separator.is-visible,
.wp-block .block-separator .separator {
    width: 100%;
}

.block-editor .block-separator {
    padding: 5px 0;
}

/*-----------------------------------------------------------------------
    Block - Hero Banner
-----------------------------------------------------------------------*/

.block-hero-banner .block-setting-padding,
.block-hero-banner .background-image {
    width: 50%;
}

.block-hero-banner .block-setting-padding {
    margin-left: auto;
}

.block-hero-banner .background-image {
    overflow: hidden;
    right: auto;
    border-top-right-radius: var(--border-radius-lg);
}

.block-hero-banner .background-image.has-overlay:before {
    background: linear-gradient(160deg, rgba(var(--velvet-rgb), 60%), transparent 40%) !important;
}

.block-hero-banner .wysiwyg-content h1 {
    font-family: var(--font-secondary);
    font-weight: 500 !important;
}

.block-hero-banner .wysiwyg-content p {
    font-size: 18px !important;
}

/* Responsive */

@media (min-width: 991px) {
    .block-hero-banner .block-setting-padding {
        padding-left: 40px;
        padding-right: 40px;
    }

    .block-hero-banner div[class*="container-"] {
        max-width: 550px;
    }
}

@media (max-width: 990px) {
    .block-hero-banner > div[class*="block-setting-"] {
        display: flex;
        flex-direction: column;
    }

    .block-hero-banner .block-setting-padding,
    .block-hero-banner .background-image {
        width: 100%;
    }

    .block-hero-banner .block-setting-padding {
        order: 9;
        padding-top: 0 !important;
        padding-bottom: 60px;
    }

    .block-hero-banner .block-setting-padding:after {
        display: none !important;
    }

    .block-hero-banner .background-image {
        order: 1;
        position: relative;
        height: 120vw;
        min-height: 360px;
        border-radius: 0;
    }

    .block-hero-banner .background-image.has-overlay:before {
        background: linear-gradient(160deg, rgba(var(--velvet-rgb), 80%), transparent 50%) !important;
    }

    .block-hero-banner .background-image.has-overlay:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 30%;
        background: linear-gradient(to top, var(--cream), transparent);
    }
}

/*-----------------------------------------------------------------------
    Block - Page Banner
-----------------------------------------------------------------------*/

.block-page-banner .background-image {
    opacity: 10%;
}

/*-----------------------------------------------------------------------
    Block - About
-----------------------------------------------------------------------*/

.block-about .col-1 h1 {
    padding: 5px 0 5px 25px;
    border-left: 2px solid var(--red);
}

/*-----------------------------------------------------------------------
    Block - Statistics
-----------------------------------------------------------------------*/

.moore-theme .entry-statistic .inner-entry-number {
    display: flex;
    align-items: flex-end;
}

.moore-theme .entry-statistic .inner-entry-number span {
    font-size: 76px;
    line-height: 76px;
    font-weight: 200;
    letter-spacing: -0.05em;
}

.moore-theme .entry-statistic .inner-entry-number span.prefix {
    margin-right: 5px;
}

.moore-theme .entry-statistic .inner-entry-number span.suffix {
    font-size: 40px;
    line-height: 56px;
    color: var(--red);
    margin-left: 5px;
}

.moore-theme .entry-statistic h5 {
    margin: 10px 0;
}

.moore-theme .entry-statistic span.icon-star {
    display: block;
    width: 30px;
    height: 30px;
    mask-image: url(../img/icon-star.svg);
    mask-size: contain;
    background: var(--red);
    margin: -20px 0 12px 4px;
}

.moore-theme .text-white .entry-statistic span.icon-star {
    background: var(--white);
}

.block-statistics div[class*="container-"] {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.block-statistics.has-minus-margin-top:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100px;
    z-index: -9;
    background: var(--cream);
}

.wp-block .block-statistics.has-minus-margin-top:after {
    top: 0;
    z-index: 9;
}

/* Layout 1 */

.block-statistics.has-layout-1 .background-parallax {
    width: 45%;
    right: auto;
}

.block-statistics.has-layout-1 .listing-statistics {
    width: 55%;
    margin-left: auto;
    padding: 40px;
}

.block-statistics.has-layout-1 .entry-statistic {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.block-statistics.has-layout-1 .entry-statistic:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.block-statistics.has-layout-1 .entry-statistic:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cream);
    transition: 1s ease all;
    transition-delay: calc(var(--i) * 0.5s);
}

.block-statistics.has-layout-1 .listing-statistics.is-visible .entry-statistic:not(:last-child):after,
.wp-block .block-statistics.has-layout-1 .listing-statistics .entry-statistic:not(:last-child):after {
    width: 100%;
}

.block-statistics.has-layout-1 .entry-statistic .col-1 {
    width: 45%;
    min-width: 210px;
}

.block-statistics.has-layout-1 .entry-statistic h5 {
    font-size: 15px;
    line-height: 1.5;
}

/* Layout 2 */

.block-statistics.has-layout-2 div[class*="container-"]:not([style*="--block-background-colour: var(--none)"]) {
    padding: 35px;
}

.block-statistics.has-layout-2 .listing-statistics {
    gap: 30px 80px;
}

.block-statistics.has-layout-2 .entry-statistic:not(:nth-child(3n)):after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    right: -40px;
    top: 0;
    bottom: 0;
    border-right: 1px solid var(--red);
}

/* Responsive */

@media (max-width: 990px) {
    .moore-theme .entry-statistic .inner-entry-number span {
        font-size: 64px;
        line-height: 64px;
    }

    .block-statistics.has-layout-1 .background-parallax,
    .block-statistics.has-layout-1 .listing-statistics {
        width: 100%;
    }

    .block-statistics.has-layout-1 .background-parallax {
        position: relative;
        height: 50vw;
        min-height: 400px;
    }

    .block-statistics.has-layout-1 .listing-statistics {
        padding: 30px;
    }

    .block-statistics.has-layout-1 .entry-statistic {
        display: block;
    }

    .block-statistics.has-layout-1 .entry-statistic .col-1 {
        width: 100%;
    }
}

/*-----------------------------------------------------------------------
    Block - Services
-----------------------------------------------------------------------*/

.moore-theme .entry-service {
    padding: 10px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
}

.moore-theme .entry-service .inner-entry-image.image-square {
    aspect-ratio: 5 / 4;
}

.moore-theme .entry-service .inner-entry-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-top-left-radius: var(--border-radius-sm);
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moore-theme .entry-service .inner-entry-icon:before,
.moore-theme .entry-service .inner-entry-icon:after {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    -webkit-mask: radial-gradient(circle 4px at 0 0, transparent 4px, black 0);
    background: var(--white);
}

.moore-theme .entry-service .inner-entry-icon:before {
    top: -4px;
    right: 0;
}

.moore-theme .entry-service .inner-entry-icon:after {
    bottom: 0;
    left: -4px;
}

.moore-theme .entry-service,
.moore-theme .entry-service .inner-entry-content {
    display: flex;
    flex-direction: column;
}

.moore-theme .entry-service .inner-entry-content {
    flex: 1;
    padding: 25px 20px !important;
}

.moore-theme .block-services .entry-service .inner-entry-content h4:not(:last-child) {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--font-secondary);
    margin-bottom: 25px !important;
}

.moore-theme .entry-service .inner-entry-content p {
    margin: auto 0 0;
}

/* Hover */

.moore-theme .entry-service,
.moore-theme .entry-service .inner-entry-icon,
.moore-theme .entry-service .inner-entry-icon:before,
.moore-theme .entry-service .inner-entry-icon:after {
    transition: var(--transition) background;
}

.moore-theme .entry-service:hover,
.moore-theme .entry-service:hover .inner-entry-icon,
.moore-theme .entry-service:hover .inner-entry-icon:before,
.moore-theme .entry-service:hover .inner-entry-icon:after {
    background: var(--beige);
}

.moore-theme .entry-service .background-image {
    transition: var(--transition) transform;
}

.moore-theme .entry-service:hover .background-image {
    transform: scale(105%);
}

.moore-theme .entry-service:hover .inner-entry-content h4 {
    text-decoration: underline;
}

/*-----------------------------------------------------------------------
    Block - Values
-----------------------------------------------------------------------*/

.moore-theme .listing-values,
.block-values .grid-col-2 {
    gap: 30px;
}

.block-values .grid-col-2 .col-1 .image-square {
    border-top-right-radius: var(--border-radius-lg);
}

.block-values .inner-block-head .wysiwyg-content {
    max-width: 340px;
}

.moore-theme .entry-value .inner-entry-title {
    display: flex;
    gap: 10px;
}

/* Responsive */

/*-----------------------------------------------------------------------
    Block - Staff
-----------------------------------------------------------------------*/

.moore-theme .entry-staff {
    padding: 10px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--cream);
    transition: var(--transition) box-shadow;
}

.moore-theme .entry-staff .inner-entry-image.image-square {
    aspect-ratio: 8 / 9;
}

.moore-theme .entry-staff .inner-entry-content {
    padding: 25px 20px !important;
    text-align: center;
}

/* Hover */

.moore-theme .entry-staff:hover {
    box-shadow: 0 0 20px rgba(var(--red-rgb), 15%);
}

/*-----------------------------------------------------------------------
    Block - Reviews
-----------------------------------------------------------------------*/

.block-reviews .swiper-slide {
    padding: 0 80px;
}

.block-reviews .swiper-navigation *[class*="swiper-nav-"] {
    position: absolute;
    top: calc(50% - 20px);
}

.block-reviews .inner-block-head > svg,
.moore-theme .entry-review .inner-entry-meta > svg {
    color: var(--red);
}

.block-reviews .inner-block-head > svg {
    margin-bottom: 10px;
}

.moore-theme .entry-review .inner-entry-meta > svg {
    height: 10px;
    width: auto;
    margin: 5px;
}

.moore-theme .entry-review .inner-entry-content {
    padding: 30px 0;
}

/* Responsive */

@media (max-width: 770px) {
    .block-reviews .swiper-slide {
        padding: 0;
    }
}

/*-----------------------------------------------------------------------
    Block - Logo Slider
-----------------------------------------------------------------------*/

.block-logo-slider .carousel-logos .swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
    align-items: center;
}

.block-logo-slider .carousel-logos .swiper-slide img {
    max-width: 300px;
    max-height: 60px;
}

/* Responsive */

@media (max-width: 770px) {
    .block-logo-slider .carousel-logos .swiper-slide img {
        max-width: 230px;
        max-height: 40px;
    }
}

/*-----------------------------------------------------------------------
    Block - Contact Form
-----------------------------------------------------------------------*/

.block-contact-form .col-2 {
    padding: 40px;
    border-radius: var(--border-radius-sm);
    background: rgba(var(--beige-rgb), 20%);
}

.moore-theme .entry-contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.moore-theme .entry-contact-detail .inner-entry-icon {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.moore-theme .entry-contact-detail .inner-entry-icon svg {
    color: var(--white);
}

.moore-theme .entry-contact-detail p a {
    text-decoration: underline;
}

.moore-theme .entry-contact-detail a:hover {
    color: var(--red);
}

.moore-theme .entry-contact-detail br {
    display: none;
}

/* Actionstep Form */

.block-contact-form .AdvancedForm {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.block-contact-form .AdvancedForm .FormField {
    width: 100%;
}

.block-contact-form .AdvancedForm .FormField.form-field-half {
    width: calc(50% - 10px);
}

/* Responsive */

@media (min-width: 990px) {
    .block-contact-form .grid-col-2 {
        grid-template-columns: 440px 1fr;
    }
}
