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

@import url("https://use.typekit.net/ues8ugg.css");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;1,400;1,500");

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

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

    --font-primary: "acumin-pro", sans-serif;
    --font-secondary: "ivymode", sans-serif;
    --font-tertiary: "IBM Plex Mono", sans-serif;

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

    --linen: #fcf9f6;
    --linen-rgb: 252, 249, 246;

    --light-beige: #efe9e2;
    --light-beige-rgb: 239, 233, 226;

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

    --taupe: #c7b4a2;
    --taupe-rgb: 199, 180, 162;

    --chocolate: #403433;
    --chocolate-rgb: 64, 52, 51;

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

    --red: #ff1414;
    --red-rgb: 255, 20, 20;

    --border-radius-sm: 4px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;

    --container-xs: 580px;
    --container-sm: 720px;
    --container-md: 1040px;
    --container-lg: 1315px;

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

    --transition: 0.25s ease;
}

/* Responsive */

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

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

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

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

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

body.chasingmotion-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: 17px !important;
    color: var(--black);
    line-height: 1.4;
    font-weight: 300;
}

body.chasingmotion-theme,
.editor-styles-wrapper,
.site-responsive-menu,
.site-main {
    background: var(--linen);
}

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

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

body.chasingmotion-theme:not(.home) {
    padding-top: var(--header-height) !important;
}

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

body.chasingmotion-theme.admin-bar.home {
    padding-top: var(--admin-height) !important;
}

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

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

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

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

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

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chasingmotion-theme h1,
.chasingmotion-theme h1 *,
.chasingmotion-theme .h1,
.chasingmotion-theme .h1 *,
.chasingmotion-theme h2,
.chasingmotion-theme h2 *,
.chasingmotion-theme .h2,
.chasingmotion-theme .h2 *,
.chasingmotion-theme h3,
.chasingmotion-theme h3 *,
.chasingmotion-theme .h3,
.chasingmotion-theme .h3 *,
.chasingmotion-theme h4,
.chasingmotion-theme h4 *,
.chasingmotion-theme .h4,
.chasingmotion-theme .h4 * {
    color: var(--chocolate);
    font-family: var(--font-secondary);
}

.chasingmotion-theme h1,
.chasingmotion-theme h1 *,
.chasingmotion-theme .h1,
.chasingmotion-theme .h1 * {
    font-size: 45px;
    line-height: 50px;
}

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

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

.chasingmotion-theme h4,
.chasingmotion-theme h4 *,
.chasingmotion-theme .h4,
.chasingmotion-theme .h4 * {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.6px;
    color: var(--black);
}

.chasingmotion-theme h5,
.chasingmotion-theme h5 *,
.chasingmotion-theme .h5,
.chasingmotion-theme .h5 * {
    font-size: 16px;
    line-height: 23px;
    font-family: var(--font-tertiary);
    font-weight: 400;
    text-transform: uppercase;
}

.chasingmotion-theme h6,
.chasingmotion-theme h6 *,
.chasingmotion-theme .h6,
.chasingmotion-theme .h6 * {
    font-size: 12px;
    line-height: 18px;
    font-family: var(--font-tertiary);
    text-transform: uppercase;
}

.chasingmotion-theme p,
.chasingmotion-theme li {
    font-size: 17px !important;
    line-height: 26px !important;
    font-weight: 300;
}

.chasingmotion-theme strong,
.chasingmotion-theme strong * {
    font-weight: 600 !important;
}

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

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

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

.chasingmotion-theme mark {
    background: none;
}

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

/* Responsive */

@media (max-width: 990px) {
    .chasingmotion-theme h1,
    .chasingmotion-theme h1 *,
    .chasingmotion-theme .h1,
    .chasingmotion-theme .h1 * {
        font-size: 40px;
        line-height: 48px;
    }
}

@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;
    }
}

@media (max-width: 550px) {
    .chasingmotion-theme h2,
    .chasingmotion-theme h2 *,
    .chasingmotion-theme .h2,
    .chasingmotion-theme .h2 * {
        font-size: 35px;
        line-height: 40px;
    }

    .chasingmotion-theme h3,
    .chasingmotion-theme h3 *,
    .chasingmotion-theme .h3,
    .chasingmotion-theme .h3 * {
        font-size: 30px;
        line-height: 35px;
    }
}

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

/* Sizes */

.chasingmotion-theme .text-small,
.chasingmotion-theme .text-small * {
    font-size: 14px !important;
}

.chasingmotion-theme .text-sub,
.chasingmotion-theme .text-sub * {
    font-size: 10px !important;
}

/* Alignment */

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

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

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

/* Colours */

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

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

/*-----------------------------------------------------------------------
    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 h6: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 15px !important;
}

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

/* Links */

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

.wysiwyg-content a:hover {
    color: rgba(var(--black-rgb), 60%);
}

/* Lists */

.wysiwyg-content ul,
.wysiwyg-content ol {
    display: inline-block;
}

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

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

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

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

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

.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 {
    padding-top: 33px;
    position: relative;
}

.wysiwyg-content blockquote:before {
    content: "";
    width: 22px;
    height: 20px;
    top: 0;
    left: 0;
    background-image: url("../img/icon-quote.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
}

/* 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
-----------------------------------------------------------------------*/

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

/* Labels */

.chasingmotion-theme label,
.chasingmotion-theme legend {
    font-size: 12px !important;
    line-height: 16px;
    font-weight: 400 !important;
    color: var(--black);
    font-family: var(--font-tertiary);
    text-transform: uppercase;
}

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

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

/* Basic Fields */

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

.chasingmotion-theme textarea {
    min-height: 80px;
    max-height: 100px;
}

.chasingmotion-theme ::placeholder {
    color: rgba(var(--black-rgb), 50%);
}

.chasingmotion-theme input:not([type="button"], [type="submit"]):focus,
.chasingmotion-theme select:focus,
.chasingmotion-theme textarea:focus {
    outline: none;
}

/* Select */

.chasingmotion-theme select:not([multiple="multiple"]) {
    padding-right: 25px;
    background: url(../img/icon-chevron-down.svg) no-repeat;
    background-size: 12px;
    background-position: center right;
    cursor: pointer;
}

/* Checkbox & Radio */

.chasingmotion-theme input[type="checkbox"],
.chasingmotion-theme input[type="radio"] {
    position: relative;
    display: inline-block;
    margin: 0 8px 0 0;
    padding: 0 !important;
    min-height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    border: 1px solid var(--beige) !important;
    background: transparent;
    box-shadow: none;
    transition: none;
    cursor: pointer;
}

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

.chasingmotion-theme input[type="checkbox"] + label,
.chasingmotion-theme input[type="radio"] + label {
    margin: 5px 0 !important;
    width: calc(100% - 40px);
}

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

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

.chasingmotion-theme input[type="radio"]:checked {
    border: 5px solid var(--black) !important;
}

.chasingmotion-theme input[type="radio"]:before,
.chasingmotion-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: 24px 22px !important;
}

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

.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);
    font-size: 16px;
    color: var(--red);
}

/* 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 {
    font-size: 12px !important;
    line-height: 16px;
    font-weight: 400 !important;
    color: var(--black);
    font-family: var(--font-tertiary);
    text-transform: uppercase;
}

.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(--black-rgb), 50%);
}
.gform_wrapper.gravity-theme .gfield_required {
    color: var(--black) !important;
}

/* Checkbox & Radio */

.gravity-theme form .gfield--type-choice .gchoice {
    margin: 0 !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: rgba(var(--black-rgb), 30%) !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;
}

/* Product */

.gravity-theme form .ginput_product_price_wrapper {
    width: 100%;
    margin: 0 0 10px;
}

/* 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(--black-rgb), 5%) !important;
}

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

/* Footer */

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

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

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

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

.chasingmotion-theme .button svg {
    width: 8px;
    height: 8px;
    color: var(--black);
    margin: 3px 0;
}

/* Default Styles */

.chasingmotion-theme button:not([class*="f-"]),
.chasingmotion-theme button:not([class*="f-"]):hover,
.chasingmotion-theme button:not([class*="f-"]):focus,
.chasingmotion-theme .button,
.chasingmotion-theme .button:hover,
.chasingmotion-theme .button:focus {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    margin: 0;
    outline: 0;
    width: auto;
    height: auto;
    min-height: 0 !important;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 18px !important;
    font-family: var(--font-primary);
    color: var(--black);
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    border: 1px solid var(--black);
    border-radius: var(--border-radius-sm) !important;
    transition: var(--transition) all;
    cursor: pointer;
}

/* Hover/Focus */

.chasingmotion-theme button:not([class*="f-"]):hover,
.chasingmotion-theme button:not([class*="f-"]):focus,
.chasingmotion-theme .button:hover,
.chasingmotion-theme .button:focus {
    outline: 0;
    box-shadow: none;
    background: var(--black);
}

.chasingmotion-theme button:not([class*="f-"]):hover,
.chasingmotion-theme button:not([class*="f-"]):focus,
.chasingmotion-theme button:not([class*="f-"]):hover svg,
.chasingmotion-theme button:not([class*="f-"]):focus svg,
.chasingmotion-theme .button:hover,
.chasingmotion-theme .button:focus,
.chasingmotion-theme .button:hover svg,
.chasingmotion-theme .button:focus svg {
    color: var(--white) !important;
}

/* Additional Style */

.chasingmotion-theme .button.button-link {
    border: 0 !important;
    padding: 0 0 2px !important;
    background: none !important;
}

.chasingmotion-theme .button.button-link,
.chasingmotion-theme .button.button-link svg {
    color: var(--black) !important;
}

.chasingmotion-theme .button.button-link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
    transform: scaleX(1);
    transform-origin: right;
    transition: var(--transition) all;
}

.chasingmotion-theme .button.button-link:hover:after {
    animation: underline 0.5s ease forwards;
}

@keyframes underline {
    0% {
        transform: scaleX(1);
        transform-origin: right;
    }
    45% {
        transform: scaleX(0);
        transform-origin: right;
    }
    50% {
        transform: scaleX(0);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Responsive */

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

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

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

.site-footer .site-logo,
.site-footer .site-logo img,
.site-footer .site-logo svg {
    max-width: 145px;
    max-height: 120px;
}

/* Responsive */

@media (max-width: 990px) {
    .site-logo,
    .site-logo img,
    .site-logo svg {
        max-width: 115px;
        max-height: 60px;
    }
}

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

.site-header {
    top: 0;
    width: 100%;
    display: block;
    position: fixed;
    background: var(--white);
    border-bottom: 1px solid var(--beige);
    z-index: 2000000002;
    transition: var(--transition) all;
}

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

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

/* Main Menu */

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

.site-header .main-menu ul li a {
    display: block;
    padding: 10px;
    color: rgba(var(--black-rgb), 30%);
    text-transform: uppercase;
    font-weight: 400;
    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:hover > a,
.site-header .main-menu ul li:focus > a {
    color: var(--black);
}

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

/* Sub Menu */

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

.site-header .main-menu ul li.menu-item-has-children:hover > a .trigger-sub-menu svg,
.site-header .main-menu ul li.menu-item-has-children:hover > a .trigger-sub-menu svg {
    transform: rotate(90deg);
}

.site-header .main-menu ul.sub-menu {
    padding: 15px 18px;
    background: var(--white);
    overflow: hidden;
}

.site-header .main-menu ul.sub-menu li:not(:last-child) {
    margin-bottom: 5px;
}

.site-header .main-menu ul.sub-menu li a {
    padding: 0;
}

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

.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;
}

/* Hamburger */

.site-header .icon-hamburger {
    width: 24px;
    height: 15px;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.site-header .icon-hamburger span,
.site-header .icon-hamburger span:before,
.site-header .icon-hamburger span:after {
    display: block;
    position: absolute;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--black);
    transition: all background 0s 0.3s;
}

.site-header .icon-hamburger span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.site-header .icon-hamburger span:before {
    content: "";
    top: -6px;
    transition-property: top, transform;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.site-header .icon-hamburger span:after {
    content: "";
    width: 16px;
    bottom: -6px;
    transition-property: bottom, width, transform;
    transition-duration: 0.3s, 0.3s, 0.3s;
    transition-delay: 0.3s, 0s, 0s;
}

body.chasingmotion-theme.has-active-menu .site-header .icon-hamburger span {
    background: none;
}

body.chasingmotion-theme.has-active-menu .site-header .icon-hamburger span:before {
    top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.3s;
}

body.chasingmotion-theme.has-active-menu .site-header .icon-hamburger span:after {
    width: 24px;
    bottom: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0s, 0.3s;
}

/* Clear Header */

body.chasingmotion-theme.home:not(.is-scrolled) .site-header {
    background: transparent;
    border-color: transparent;
}

body.chasingmotion-theme.home:not(.is-scrolled) .site-header .site-logo svg {
    color: var(--linen);
}

body.chasingmotion-theme.home:not(.is-scrolled) .site-header .main-menu > ul > li > a {
    color: rgba(var(--white-rgb), 60%);
}

body.chasingmotion-theme.home:not(.is-scrolled) .site-header .main-menu > ul > li.current-menu-item > a,
body.chasingmotion-theme.home:not(.is-scrolled) .site-header .main-menu > ul > li.current-menu-parent > a,
body.chasingmotion-theme.home:not(.is-scrolled) .site-header .main-menu > ul > li:hover > a,
body.chasingmotion-theme.home:not(.is-scrolled) .site-header .main-menu > ul > li:focus > a {
    color: var(--white);
}

body.chasingmotion-theme.home:not(.is-scrolled, .has-active-menu) .site-header .icon-hamburger span,
body.chasingmotion-theme.home:not(.is-scrolled, .has-active-menu) .site-header .icon-hamburger span:before,
body.chasingmotion-theme.home:not(.is-scrolled, .has-active-menu) .site-header .icon-hamburger span:after {
    background: var(--white);
}

/* Responsive Menu */

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

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

.site-responsive-menu,
.site-responsive-menu div[class*="container-"] {
    display: flex;
    flex-direction: column;
}

.site-responsive-menu div[class*="container-"] {
    flex: 1;
    gap: 40px;
    padding: 100px 0;
}

.site-responsive-menu .main-menu {
    align-items: center;
}

.site-responsive-menu .contact-menu {
    text-align: center;
    margin-top: auto;
}

/* 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: 10px;
    font-size: 35px;
    line-height: 35px;
    font-family: var(--font-secondary);
    color: rgba(var(--chocolate-rgb), 80%);
    text-align: center;
}

.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:hover > a,
.site-responsive-menu .main-menu ul li:focus > a {
    color: var(--chocolate);
}

/* Responsive Menu: Sub Menu */

.site-responsive-menu .trigger-sub-menu svg {
    width: 12px;
    height: 12px;
    margin-left: 5px;
}

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

.site-responsive-menu .main-menu ul.sub-menu li a {
    font-size: 20px;
    padding: 0;
}

.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(90deg);
}

.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 .main-menu ul {
        display: none !important;
    }

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

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

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

    .site-header > div[class*="container-"] {
        padding-right: 24px;
    }

    .site-header .site-logo {
        margin: auto;
    }
}

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

.site-footer {
    border-top: 1px solid var(--taupe);
    background: var(--light-beige);
}

.site-footer .grid-col-3 div[class*="col-"] h6 {
    font-weight: 500;
    margin-bottom: 15px;
}

.site-footer .col-2 {
    display: flex;
    position: relative;
}

.site-footer .col-2 .site-logo {
    margin: auto;
}

.site-footer .col-3:last-child {
    text-align: right;
}

/* Footer Menu */

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

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

.site-footer ul li a {
    color: var(--black) !important;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.site-footer ul li a:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: var(--transition) width;
}

.site-footer ul li a:hover:after {
    width: 100%;
}

.site-footer .footer-menu {
    margin-bottom: 40px;
}

/* Policies */

.site-footer .footer-copyright {
    border-top: 1px solid var(--taupe);
}

.site-footer .footer-copyright .h6,
.site-footer .footer-copyright .h6 * {
    font-size: 10px;
}

.site-footer .footer-copyright .footer-policies {
    margin: auto;
}

/* responsive */

@media (min-width: 861px) {
    .site-footer .col-2:before,
    .site-footer .col-2:after {
        content: "";
        display: block;
        position: absolute;
        width: 1px;
        height: 0;
        background: var(--taupe);
        transition: 2s ease height;
        transition-delay: 0.5s;
    }

    .site-footer .col-2:before {
        left: 0;
        top: 0;
    }

    .site-footer .col-2:after {
        right: 0;
        bottom: 0;
    }

    .site-footer.is-visible .col-2:before,
    .site-footer.is-visible .col-2:after {
        height: 100%;
    }
}

@media (max-width: 860px) {
    .site-footer .padding-md {
        padding: 0;
    }

    .site-footer .grid-col-3 {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .site-footer .grid-col-3 div[class*="col-"] {
        padding: 40px 0;
        text-align: center !important;
    }

    .site-footer div[class*="col-"] .flex-layout,
    .site-footer div[class*="col-"] .button-group {
        justify-content: center;
    }

    .site-footer .col-1,
    .site-footer .col-2 {
        border: 0;
        border-bottom: 1px solid var(--taupe);
    }

    .site-footer .col-2 {
        order: -1;
    }

    .site-footer .footer-copyright span {
        text-align: center !important;
    }
}

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

.site-breadcrumbs .flex-layout {
    padding: 20px 0;
    gap: 10px;
}

.site-breadcrumbs a {
    transition: none;
}

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

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

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

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

.chasingmotion-theme .image-square,
.chasingmotion-theme .image-portrait,
.chasingmotion-theme .image-landscape {
    background: var(--taupe);
    position: relative;
    object-fit: cover;
    width: 100%;
}

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

.chasingmotion-theme .image-portrait {
    aspect-ratio: 3 / 4;
}

.chasingmotion-theme .image-landscape {
    aspect-ratio: 6 / 5;
}

/* Background Elements */

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

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

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

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

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

.chasingmotion-theme div[class*="background-"].has-overlay:before {
    content: "";
    background: rgba(var(--black-rgb), 40%);
}

/* Video Embed */

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

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

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

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

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

.chasingmotion-theme .swiper .swiper-slide {
    width: auto;
    height: auto;
}
body.wp-admin .chasingmotion-theme .swiper,
body.wp-admin .chasingmotion-theme .swiper-slide {
    pointer-events: none;
}
body.wp-admin .chasingmotion-theme .swiper-slide a,
body.wp-admin .chasingmotion-theme .swiper-slide .button,
body.wp-admin .chasingmotion-theme .swiper-button-prev,
body.wp-admin .chasingmotion-theme .swiper-button-next,
body.wp-admin .chasingmotion-theme .swiper-pagination {
    pointer-events: auto;
}

/* Pagination */

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

.chasingmotion-theme .swiper-pagination span {
    opacity: 100%;
    margin: 0 2px !important;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    transition: var(--transition) border-color;
}

.chasingmotion-theme .swiper-pagination span:after {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: var(--border-radius-sm);
    background: var(--black);
    inset: 0;
    margin: auto;
}

.chasingmotion-theme .swiper-pagination span.swiper-pagination-bullet-active {
    border-color: var(--black);
}

/* Navigation */

.chasingmotion-theme .swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    max-width: 1360px;
    margin: auto;
    position: absolute;
    top: 50%;
    z-index: 9;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0px 20px;
}

.chasingmotion-theme .swiper-navigation div[class*="swiper-nav-"] {
    padding: 10px;
    cursor: pointer;
}

.chasingmotion-theme .swiper-navigation div[class*="swiper-nav-"] svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* Responsive */

@media (max-width: 860px) {
    .chasingmotion-theme .swiper-pagination {
        margin-top: 15px;
    }
}

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

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

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

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

.chasingmotion-theme table th,
.chasingmotion-theme table th * {
    font-weight: 600;
}

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

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

.chasingmotion-theme .social-icons {
    gap: 5px;
}

.chasingmotion-theme .social-icons a,
.chasingmotion-theme .social-icons div {
    width: 32px;
    height: 32px;
    border: 1px solid var(--black);
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chasingmotion-theme .social-icons a,
.chasingmotion-theme .social-icons div,
.chasingmotion-theme .social-icons svg {
    margin: 0;
}

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

.chasingmotion-theme .social-icons a:hover,
.chasingmotion-theme .social-icons div:hover {
    background: var(--black);
}

.chasingmotion-theme .social-icons a:hover svg,
.chasingmotion-theme .social-icons div:hover svg {
    color: var(--white);
}

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

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

.chasingmotion-theme .copy-to-clipboard .tooltip {
    background: var(--black);
    padding: 5px 8px;
    border-radius: var(--border-radius-sm);
    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;
}

.chasingmotion-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(--black) transparent transparent transparent;
}

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

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

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

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

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

/* Containers */

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

/* Close Button */

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------------------
    Entry - Accordion
-----------------------------------------------------------------------*/

.chasingmotion-theme .entry-accordion {
    display: block;
    padding: 18px 0px;
    border-bottom: 1px solid var(--beige);
}

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

.chasingmotion-theme .entry-accordion .inner-entry-title h4 {
    font-size: 18px;
    line-height: 24px;
}

.chasingmotion-theme .entry-accordion .inner-entry-title svg {
    width: 12px;
    height: 24px;
    min-width: 12px;
    min-height: 24px;
    margin: 0 15px;
}

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

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

.chasingmotion-theme .entry-accordion .wysiwyg-content {
    margin-top: 15px;
}

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

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

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

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

.block-split-content .col-portrait .image-wrapper .inner-caption,
.block-split-content .col-landscape .image-wrapper .inner-caption {
    margin-top: 30px;
}

.block-split-content .col-portrait .inner-caption h5 + h6,
.block-split-content .col-landscape .inner-caption h5 + h6 {
    margin-top: 5px;
}

.block-split-content .col-accordion .listing-accordion {
    margin: 20px 0 30px;
}

.block-split-content .vertical-line {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 0;
    background: var(--beige);
    transition: 2s ease height;
    transition-delay: 0.5s;
}

.block-split-content .vertical-line.is-visible {
    height: 100%;
}

/* Responsive */

@media (min-width: 861px) {
    .block-split-content .grid-col-2 {
        gap: 100px;
    }

    .block-split-content .col-portrait .image-wrapper {
        max-width: 380px;
        margin: auto;
    }
}

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

    .block-split-content .col-portrait,
    .block-split-content .col-landscape {
        order: 1;
    }

    .block-split-content .vertical-line {
        display: none;
    }
}

/*-----------------------------------------------------------------------
    Block - Image Slider
-----------------------------------------------------------------------*/

.block-image-slider .carousel-images-simple .swiper-slide img {
    min-height: 650px;
    max-height: 900px;
    height: 75vh;
}

.block-image-slider .carousel-images-detailed .swiper-slide {
    min-height: 650px;
    max-height: 850px;
    aspect-ratio: 15 / 8;
    display: flex;
    align-items: flex-end;
}

.block-image-slider .swiper-slide .block-setting-padding {
    position: relative;
    width: 100%;
    background: linear-gradient(to top, rgba(var(--white-rgb), 80%), rgba(var(--white-rgb), 0%));
}

.block-image-slider .swiper-slide .wysiwyg-content > *:not(:last-child) {
    margin: 0 0 5px !important;
}

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

.block-image-gallery .image-masonry {
    float: left;
    width: 33.33%;
    height: auto;
}

.block-image-gallery .image-masonry img {
    width: 100%;
    max-width: 100%;
    display: block;
}

.wp-block .block-image-gallery a.image-masonry {
    pointer-events: none;
}

/* Responsive */

@media (max-width: 770px) {
    .block-image-gallery .image-masonry {
        width: 50%;
    }
}

@media (max-width: 640px) {
    .block-image-gallery .image-masonry {
        width: 100%;
    }
}

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

.chasingmotion-theme .entry-value .inner-entry-content {
    padding: 20px 0 !important;
}

.chasingmotion-theme .entry-value .inner-entry-content > *:not(:last-child) {
    margin: 0 0 20px !important;
}

.chasingmotion-theme .listing-values {
    gap: 30px 60px;
}

.chasingmotion-theme .entry-value:after {
    content: "";
    display: block;
    position: absolute;
    right: -30px;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--beige);
}

/* Responsive */

@media (min-width: 861px) {
    .chasingmotion-theme .listing-values.grid-col-1 .entry-value:nth-child(1n):after,
    .chasingmotion-theme .listing-values.grid-col-2 .entry-value:nth-child(2n):after,
    .chasingmotion-theme .listing-values.grid-col-3 .entry-value:nth-child(3n):after,
    .chasingmotion-theme .listing-values.grid-col-4 .entry-value:nth-child(4n):after {
        display: none;
    }
}

@media (max-width: 860px) {
    .chasingmotion-theme .listing-values.grid-col-1 .entry-value:nth-child(1n):after,
    .chasingmotion-theme .listing-values.grid-col-2 .entry-value:nth-child(1n):after,
    .chasingmotion-theme .listing-values.grid-col-3 .entry-value:nth-child(2n):after,
    .chasingmotion-theme .listing-values.grid-col-4 .entry-value:nth-child(2n):after {
        display: none;
    }
}

@media (max-width: 640px) {
    .chasingmotion-theme .entry-value {
        padding-left: 30px;
    }

    .chasingmotion-theme .entry-value:after {
        display: block !important;
        right: auto;
        left: 0;
    }
}

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

.block-hero-banner > div[class*="block-setting-"] {
    height: 100vh;
}

body.chasingmotion-theme.admin-bar .block-hero-banner > div[class*="block-setting-"] {
    height: calc(100vh - var(--admin-height));
}

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

.chasingmotion-theme .entry-review {
    text-align: center;
}

.chasingmotion-theme .entry-review .inner-entry-content h4 {
    margin-bottom: 30px !important;
}

/*-----------------------------------------------------------------------
    Block - Instagram
-----------------------------------------------------------------------*/

.block-instagram {
    border-top: 1px solid var(--taupe);
}

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

.block-contact .entry-contact:not(:last-child) {
    margin-bottom: 30px;
}

.block-contact .entry-contact h6 {
    margin-bottom: 10px !important;
}

.block-contact .entry-contact .social-icons {
    justify-content: center;
}

/*-----------------------------------------------------------------------
    Block - 404
-----------------------------------------------------------------------*/

.block-404 h1 {
    font-size: 100px;
    line-height: 110px;
}
