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

@import url("https://use.typekit.net/sbj6okf.css");

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

:root {
    --admin-height: 32px;
    --header-height: 80px;
    --notice-height: 47px;

    --font-primary: "neue-haas-grotesk-display", sans-serif;
    --font-secondary: "acumin-pro-wide", serif;

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

    --cream: #f6f0eb;
    --cream-rgb: 246, 240, 235;

    --lavendar: #ebe8f4;
    --lavendar-rgb: 235, 232, 244;

    --violet: #beb4dc;
    --violet-rgb: 190, 180, 220;

    --rust: #e69678;
    --rust-rgb: 230, 150, 120;

    --wine: #5f1e32;
    --wine-rgb: 95, 30, 50;

    --black: #0f0f0f;
    --black-rgb: 15, 15, 15;

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

    --dark-gradient: linear-gradient(to top, var(--black), var(--wine));

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

    --container-xs: 620px;
    --container-sm: 820px;
    --container-md: 1040px;
    --container-lg: 1240px;

    --box-shadow: 0 0 20px rgba(var(--wine-rgb), 20%);

    --transition: 0.25s ease;
}

/* Responsive */

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

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

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

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

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

body.startliving-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: 16px !important;
    color: var(--wine);
    font-weight: 500;
    line-height: 1.5;
}

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

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

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

body.startliving-theme {
    padding-top: calc(var(--notice-height)) !important;
}

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

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

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

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

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

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

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

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

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

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

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

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

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

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

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

    .startliving-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: 720px) {
    .startliving-theme .container-lg,
    .startliving-theme .container-md,
    .startliving-theme .container-sm,
    .startliving-theme .container-xs {
        width: calc(100% - 30px);
    }

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

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

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

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

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

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

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

.startliving-theme h1,
.startliving-theme h1 *,
.startliving-theme .h1,
.startliving-theme .h1 *,
.startliving-theme h2,
.startliving-theme h2 *,
.startliving-theme .h2,
.startliving-theme .h2 * {
    font-family: var(--font-secondary);
    letter-spacing: -0.02em;
    font-weight: 300;
}

.startliving-theme .h0,
.startliving-theme .h0 * {
    font-size: 82px;
    line-height: 84px;
    font-weight: 400;
}

.startliving-theme h1,
.startliving-theme h1 *,
.startliving-theme .h1,
.startliving-theme .h1 * {
    font-size: 64px;
    line-height: 66px;
    font-weight: 400;
}

.startliving-theme h2,
.startliving-theme h2 *,
.startliving-theme .h2,
.startliving-theme .h2 * {
    font-size: 56px;
    line-height: 58px;
    font-weight: 400;
}

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

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

.startliving-theme h5,
.startliving-theme h5 *,
.startliving-theme .h5,
.startliving-theme .h5 * {
    font-size: 22px;
    line-height: 28px;
}

.startliving-theme h6,
.startliving-theme h6 *,
.startliving-theme .h6,
.startliving-theme .h6 * {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.startliving-theme p,
.startliving-theme li {
    font-size: 18px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.02em;
}

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

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

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

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

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

.startliving-theme mark {
    background: none;
}

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

/* Responsive */

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

    .startliving-theme .h0,
    .startliving-theme .h0 *,
    .startliving-theme h1,
    .startliving-theme h1 *,
    .startliving-theme .h1,
    .startliving-theme .h1 * {
        font-size: 54px;
        line-height: 56px;
    }

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

    .startliving-theme h3,
    .startliving-theme h3 *,
    .startliving-theme .h3,
    .startliving-theme .h3 *,
    .startliving-theme h4,
    .startliving-theme h4 *,
    .startliving-theme .h4,
    .startliving-theme .h4 * {
        font-size: 30px;
    }

    .startliving-theme h5,
    .startliving-theme h5 *,
    .startliving-theme .h5,
    .startliving-theme .h5 * {
        font-size: 20px;
        line-height: 26px;
    }
}

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

/* Sizes */

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

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

/* Alignment */

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

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

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

/* Colours */

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

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

.startliving-theme .text-white li:before {
    background: var(--white) !important;
}

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

.startliving-theme .text-violet li:before {
    background: var(--violet) !important;
}

/*-----------------------------------------------------------------------
    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 20px !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 .button-group {
    margin-top: 30px;
}

/* 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: 9px;
    left: 3px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: var(--wine);
}

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

.wysiwyg-content ul.list-style-checkmark li:before {
    top: 4px;
    width: 18px;
    height: 18px;
    mask-image: url(../img/icon-checkmark.svg);
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url(../img/icon-checkmark.svg);
    -webkit-mask-position: center;
    -webkit-mask-size: 18px;
    background: var(--wine);
    /* 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: 20px 0 20px 20px;
    border-left: 1px solid var(--wine);
}

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

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

/* Labels */

.startliving-theme label,
.startliving-theme legend {
    display: block;
    margin: 5px 0;
    color: var(--wine);
    font-size: 14px;
    line-height: 18px;
    font-weight: 500 !important;
}

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

.startliving-theme label .required,
.startliving-theme .gravity-theme form label .gfield_required {
    font-size: inherit;
    color: var(--violet) !important;
}

/* Basic Fields */

.startliving-theme input:not([type="button"], [type="submit"]),
.startliving-theme select,
.startliving-theme textarea {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--wine);
    background: transparent;
    padding: 14px 20px !important;
    color: var(--wine) !important;
    font-size: 16px !important;
    line-height: 22px !important;
    text-align: left;
    text-decoration: none;
    transition: none;
    resize: none;
    outline: 0 !important;
}

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

.startliving-theme ::placeholder,
.startliving-theme ::-ms-input-placeholder,
.startliving-theme ::-webkit-input-placeholder {
    color: var(--wine) !important;
}

.gform_wrapper .gform_body .gform_fields .gfield input::placeholder,
.gform_wrapper .gform_body .gform_fields .gfield textarea::placeholder {
    color: inherit !important;
}

/* Select */

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

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

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

.startliving-theme .select2-container .select2-selection,
.startliving-theme .select2-container .select2-selection .selection__rendered {
    line-height: 22px;
}

.bwa-theme .select2-container .select2-selection {
    margin: 0;
    outline: 0;
    display: block;
    height: auto;
    padding: 14px 20px;
    border: 1px solid var(--violet);
    background: transparent;
    color: var(--wine);
    font-size: 16px;
}

.startliving-theme .select2-selection__rendered,
.startliving-theme .select2-selection__placeholder {
    color: var(--wine);
}

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

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

.startliving-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    background: var(--wine);
}

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

/* Checkbox & Radio */

.startliving-theme input[type="checkbox"],
.startliving-theme input[type="radio"] {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    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(--wine);
    border-radius: 3px;
    background: transparent;
    box-shadow: none;
    transition: none;
    cursor: pointer;
}

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

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

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

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

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

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

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

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

.gform_wrapper.gravity-theme .gform_validation_errors {
    outline: 0 !important;
    border: 1px solid var(--red) !important;
    box-shadow: none !important;
    margin-bottom: 30px !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors *,
.gravity-theme form .gfield .gfield_validation_message {
    color: var(--red) !important;
}

.gravity-theme form .gfield .gfield_validation_message {
    border: 0;
    padding: 0;
    font-size: 12px !important;
    letter-spacing: 0.02em;
    background: transparent;
}

.gravity-theme form .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 {
    margin: 5px 0;
    font-size: 14px !important;
    color: var(--wine);
}

.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;
    color: var(--wine);
    font-weight: 500 !important;
}

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

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

/* Page Footer */

.gravity-theme form .gform-page-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.gravity-theme form .gform-page-footer .gform_previous_button:not(:hover, :focus),
.gravity-theme form .gform-page-footer .gform_next_button:not(:hover, :focus) {
    color: var(--wine) !important;
}

.gravity-theme form .gform-page-footer .gform_previous_button:hover,
.gravity-theme form .gform-page-footer .gform_next_button :hover {
    color: var(--violet) !important;
    background: var(--wine) !important;
}

/* Footer */

.gravity-theme form .gform_footer {
    justify-content: center;
}

.text-violet .gravity-theme form .gform_footer input[type="submit"].button {
    background: var(--violet);
    border-color: var(--violet);
    color: var(--wine);
}

.text-violet .gravity-theme form .gform_footer input[type="submit"].button:hover,
.text-violet .gravity-theme form .gform_footer input[type="submit"].button:focus {
    box-shadow: 0 0 20px rgba(var(--violet-rgb), 20%);
}

/* Responsive */

@media (max-width: 770px) {
    .gravity-theme form .gform_fields {
        gap: 10px !important;
    }
}

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

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

.startliving-theme .button svg {
    width: 16px;
    height: 16px;
    color: var(--violet);
}

/* Default Styles */

.startliving-theme button,
.startliving-theme button:hover,
.startliving-theme button:focus,
.startliving-theme .button,
.startliving-theme .button:hover,
.startliving-theme .button:focus {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    outline: 0;
    width: auto;
    height: auto;
    min-width: 145px;
    min-height: 0;
    padding: 12px 18px;
    font-size: 14px;
    font-family: var(--font-primary);
    color: var(--violet);
    font-weight: 500;
    line-height: 14px !important;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    background: var(--wine);
    border: 1px solid var(--wine);
    border-radius: var(--border-radius-lg) !important;
    transition: var(--transition) all;
    cursor: pointer;
}

.startliving-theme .button.button-outlined {
    background: transparent;
}

.startliving-theme .button.button-outlined,
.startliving-theme .button.button-outlined svg {
    color: var(--wine);
}

/* Additional Styles */

.startliving-theme .button.button-violet {
    background: var(--violet);
    border-color: var(--violet);
}

.startliving-theme .button.button-violet,
.startliving-theme .button.button-violet svg {
    color: var(--wine);
}

.startliving-theme .button-violet.button-outlined {
    background: transparent;
    border-color: var(--violet);
}

.startliving-theme .button-violet.button-outlined,
.startliving-theme .button-violet.button-outlined svg {
    color: var(--violet);
}

/* Hover/Focus */

.startliving-theme button:hover,
.startliving-theme button:focus,
.startliving-theme .button:hover,
.startliving-theme .button:focus {
    outline: 0;
    box-shadow: var(--box-shadow);
}

.startliving-theme .button.button-violet:hover,
.startliving-theme .button.button-violet:focus {
    box-shadow: 0 0 20px rgba(var(--violet-rgb), 20%);
}

/* Responsive */

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

/*-----------------------------------------------------------------------
    Site Notice
-----------------------------------------------------------------------*/

.site-notice {
    position: fixed;
    top: 0;
    padding: 10px 0;
    background: var(--wine);
    z-index: 2000000;
}

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

.site-notice .carousel-notice .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear;
}

.site-notice .carousel-notice .swiper-slide span {
    display: block;
    width: 4px;
    height: 4px;
    background: var(--white);
}

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

.site-logo,
.site-logo img,
.site-logo svg {
    display: block;
    max-width: 140px;
    max-height: 40px;
    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: 320px;
    max-height: 70px;
}

/* Responsive */

@media (max-width: 770px) {
    .site-footer .site-logo,
    .site-footer .site-logo img,
    .site-footer .site-logo svg {
        max-width: 240px;
        max-height: 50px;
    }
}

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

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

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

body.startliving-theme.is-scrolled .site-header {
    padding: 10px 0;
}

.site-header > div[class*="container"] {
    width: calc(100% - 40px);
    max-width: calc(var(--container-lg) + 40px);
    padding: 10px 20px 10px 25px;
    border: 1px solid transparent;
    border-radius: 100px;
    background: var(--cream);
    height: var(--header-height);
    transition: var(--transition) border-color;
}

body.startliving-theme.is-scrolled .site-header > div[class*="container"] {
    border-color: rgba(var(--wine-rgb), 25%);
}

/* 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;
    font-size: 16px;
    text-transform: uppercase;
    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 {
    text-decoration: underline;
}

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

/* Sub Menu */

.site-header .main-menu ul.sub-menu,
.site-header .main-menu ul.sub-menu li,
.site-header .main-menu ul.sub-menu li a {
    display: block;
}

.site-header .main-menu ul.sub-menu {
    padding: 12px 10px;
    background: var(--cream);
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
    overflow: hidden;
}

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

.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: 15px 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: 50px;
    height: 50px;
    border-radius: 50px;
    background: var(--wine);
    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: 30px;
    height: 1px;
    background: var(--violet);
    transition: 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: "";
    bottom: -6px;
    transition-property: bottom, transform;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

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

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

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

/* Responsive Menu */

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

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

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

.site-responsive-menu .button-group,
.site-responsive-menu .menu-search {
    padding: 20px;
}

/* Responsive Menu: Menu */

.site-responsive-menu .main-menu ul,
.site-responsive-menu .main-menu ul * {
    display: block;
}

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

.site-responsive-menu .menu-search,
.site-responsive-menu .main-menu > ul > li {
    border-bottom: 1px solid var(--cream);
}

.site-responsive-menu .main-menu > ul > li > a {
    font-family: var(--font-primary);
    font-size: 24px;
}

.site-responsive-menu .main-menu ul li .trigger-sub-menu {
    width: 20px;
    float: right;
}

/* Responsive Menu: Sub Menu */

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

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

.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.sub-menu-active > 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.sub-menu-active > .sub-menu-wrap {
    display: block !important;
}

/* Responsive */

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

@media (max-width: 920px) {
    .site-header .main-menu,
    .site-header .header-right .button {
        display: none !important;
    }

    .site-header {
        padding: 10px 0;
    }

    .site-header > div[class*="container"] {
        width: calc(100% - 20px);
        padding-right: 10px;
    }

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

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

    body.menu-active .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: calc(var(--header-height) + var(--notice-height));
    border-bottom: 1px solid var(--cream);
}

body.startliving-theme.admin-bar .site-search {
    top: calc(var(--header-height) + var(--notice-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;
}

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

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

/* Responsive */

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

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

.site-footer {
    background: var(--black);
    padding: 0 0 80px;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: var(--white);
}

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

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

.site-footer a.site-logo,
.site-footer a.site-logo svg {
    color: var(--white) !important;
}

.site-footer .powered-by {
    text-align: center;
}

.site-footer .powered-by svg {
    height: 35px;
    width: auto;
    display: block;
    margin: 20px auto 0;
}

.site-footer ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer ul a {
    display: block;
    font-weight: 400;
}

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

.site-footer .footer-detail {
    padding: 80px 0;
    border-top: 1px solid rgba(var(--cream-rgb), 50%);
}

.site-footer .footer-policies {
    padding: 20px 0;
    border-bottom: 1px solid rgba(var(--cream-rgb), 50%);
}

.site-footer .footer-disclaimer,
.site-footer .footer-copyright {
    padding: 20px 0 0;
}

.site-footer .footer-disclaimer p:first-child {
    margin: 0 0 5px;
}

.site-footer .social-icons {
    justify-content: center;
    margin: 30px 0 40px;
}

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

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

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

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

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

.startliving-theme .image-portrait {
    aspect-ratio: 2 / 3;
}

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

/* Background Elements */

.startliving-theme .background-image,
.startliving-theme .background-video,
.startliving-theme .background-overlay:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

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

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

.startliving-theme .background-overlay:before {
    content: "";
    background: rgba(var(--black-rgb), 25%);
}

/* Video Embed */

.startliving-theme .responsive-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

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

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

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

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

.startliving-theme .swiper-footer {
    margin-top: 40px;
}

/* Pagination */

.startliving-theme .swiper-pagination {
    top: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px 30px;
    background: var(--lavendar);
    border-radius: var(--border-radius-lg);
    width: fit-content;
}

.startliving-theme .swiper-pagination span {
    opacity: 100%;
    margin: 0 2px !important;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: var(--wine);
    transition: var(--transition) width;
}

.startliving-theme .swiper-pagination span.swiper-pagination-bullet-active {
    width: 40px;
}

/* Navigation */

.startliving-theme .swiper-navigation,
.startliving-theme .swiper-navigation div[class*="swiper-nav-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.startliving-theme .swiper-navigation {
    gap: 8px;
}

.startliving-theme .swiper-navigation div[class*="swiper-nav-"] {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: var(--lavendar);
    cursor: pointer;
}

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

/* Responsive */

@media (max-width: 860px) {
    .startliving-theme .swiper-footer .clear {
        display: none;
    }
}

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

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

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

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

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

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

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

.startliving-theme .social-icons {
    gap: 8px;
}

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

.startliving-theme .social-icons a,
.startliving-theme .social-icons div {
    width: 34px;
    height: 34px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(var(--violet-rgb), 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition) border-color;
}

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

.startliving-theme .social-icons a:hover,
.startliving-theme .social-icons div:hover {
    border-color: var(--cream);
}

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

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

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

.startliving-theme .copy-to-clipboard .tooltip {
    background: var(--black);
    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;
}

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

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

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

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

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

.startliving-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), 40%);
    z-index: 20000000000;
}

/* Containers */

.startliving-theme .popup-overlay > *[class*="container"] {
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
    padding: 60px;
    border-radius: var(--border-radius-lg);
    background: var(--wine);
}

/* Close Button */

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

.startliving-theme .popup-overlay .trigger-popup-close svg {
    width: 20px;
    height: 20px;
}

/* Responsive */

@media (max-width: 860px) {
    .startliving-theme .popup-overlay > *[class*="container"] {
        padding: 30px;
    }
}

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

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

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

.startliving-theme div[class^="block-"] .header-row {
    margin-bottom: 60px;
}

.startliving-theme div[class^="block-"] .footer-row {
    margin-top: 60px;
}

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

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

.startliving-theme .entry-accordion .trigger-accordion {
    flex: 1;
    position: relative;
    flex-wrap: nowrap;
    cursor: pointer;
    transition: var(--transition) all;
}

.startliving-theme .entry-accordion .trigger-accordion svg {
    width: 16px;
    height: 30px;
    min-width: 16px;
    min-height: 30px;
    margin-left: 10px;
}

.startliving-theme .entry-accordion.is-active .trigger-accordion svg {
    transform: rotate(135deg);
}

.startliving-theme .entry-accordion .wysiwyg-content {
    display: none;
}

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

.block-split-content .grid-col-2 {
    gap: 0;
}

.block-split-content .col-content .wysiwyg-content {
    padding: 20px 60px;
    max-width: 580px;
    margin: auto;
}

.block-split-content .col-image,
.block-split-content .col-image > div[class*="block-setting-"] {
    height: 100%;
    position: relative;
    min-height: 500px;
}

/* Responsive */

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

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

    .block-split-content .col-content .wysiwyg-content {
        padding: 0 15px;
    }
}

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

.block-video video {
    border-radius: var(--border-radius-lg);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

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

/* Responsive */

@media (min-width: 860px) {
    .block-hero-banner > div[class*="block-setting"] {
        height: 800px;
        min-height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/*-----------------------------------------------------------------------
    Block - Process
-----------------------------------------------------------------------*/

.block-process .listing-process {
    padding-top: 40px;
}

.block-process .listing-process .grid-col-3 {
    padding: 0 70px 80px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(var(--wine-rgb), 50%);
    gap: 80px;
}

.block-process .listing-process .button-group {
    margin-top: -20px;
}

.startliving-theme .entry-process {
    text-align: center;
}

.startliving-theme .entry-process .inner-entry-count {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 90px;
    background: var(--wine);
    margin: -40px auto 30px;
}

.startliving-theme .entry-process .inner-entry-count span {
    color: var(--white);
    line-height: 85px;
    text-align: center;
}

.startliving-theme .entry-process .inner-entry-content > *:not(:last-child) {
    margin: 0 0 20px;
}

/* Responsive */

@media (max-width: 860px) {
    .block-process .listing-process .grid-col-3 {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 40px 50px;
    }
}

/*-----------------------------------------------------------------------
    Block - Guarantee
-----------------------------------------------------------------------*/

.startliving-theme .entry-guarantee {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.startliving-theme .entry-guarantee.has-image {
    min-height: 500px;
}

.startliving-theme .entry-guarantee.has-text {
    background: var(--lavendar);
    border: 1px solid var(--violet);
}

.startliving-theme .entry-guarantee.has-text .inner-entry-content {
    padding: 60px;
}

.startliving-theme .entry-guarantee.has-text h6 {
    padding: 20px 0 0;
    text-align: right;
    border-top: 1px solid var(--wine);
}

.startliving-theme .entry-guarantee.has-text h5 {
    max-width: 600px;
}

.startliving-theme .entry-guarantee.has-text .h1 {
    margin: 25px 0 40px;
}

.startliving-theme .entry-guarantee.has-text:nth-of-type(odd) {
    background: var(--wine);
    border-color: var(--wine);
}

.startliving-theme .entry-guarantee.has-text:nth-of-type(odd) h6,
.startliving-theme .entry-guarantee.has-text:nth-of-type(odd) h5 {
    color: var(--violet);
    border-color: var(--violet);
}

.block-guarantees .container-xl {
    width: calc(100% - 40px);
    margin: auto;
}

.block-guarantees .listing-guarantees {
    gap: 15px;
}

/* Responsive */

@media (min-width: 860px) {
    .startliving-theme .entry-guarantee.has-image {
        grid-row: span 2;
    }
}

@media (max-width: 860px) {
    .block-guarantees .container-xl {
        width: calc(100% - 30px);
    }

    .startliving-theme .entry-guarantee.has-text .inner-entry-content {
        padding: 30px;
    }

    .startliving-theme .entry-guarantee.has-text .h1 {
        font-size: 44px;
        line-height: 46px;
    }
}

/*-----------------------------------------------------------------------
    Block - Deposits
-----------------------------------------------------------------------*/

.startliving-theme .entry-deposit {
    padding: 45px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--wine);
    display: flex;
    flex-direction: column;
}

.startliving-theme .entry-deposit .inner-entry-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.startliving-theme .entry-deposit .h0 {
    font-size: 122px;
    line-height: 124px;
}

.startliving-theme .entry-deposit .h3 {
    font-size: 34px;
    line-height: 44px;
}

.startliving-theme .entry-deposit .inner-entry-content {
    margin: 25px 0 30px;
}

.startliving-theme .entry-deposit .button-group {
    margin: auto 0 0;
}

.startliving-theme .entry-deposit .button-group .button {
    flex: 1;
}

.startliving-theme .entry-deposit.is-featured {
    background: var(--wine);
}

.startliving-theme .entry-deposit.is-featured .h0 {
    color: var(--white);
}

.startliving-theme .entry-deposit.is-featured .h3 {
    color: var(--white);
}

.startliving-theme .entry-deposit.is-featured li {
    color: var(--violet);
}

.startliving-theme .entry-deposit.is-featured li:before {
    background: var(--violet);
}

.block-deposits .listing-deposits {
    gap: 15px;
}

/* Responsive */

@media (min-width: 860px) {
    .block-deposits .listing-deposits .entry-deposit.is-featured {
        display: grid;
        grid-template-columns: auto 1fr max-content;
        gap: 60px;
        grid-column: span 2;
    }
}

@media (max-width: 860px) {
    .startliving-theme .entry-deposit {
        padding: 30px;
    }

    .startliving-theme .entry-deposit .h0 {
        font-size: 100px;
        line-height: 100px;
    }

    .startliving-theme .entry-deposit .h3 {
        font-size: 26px;
        line-height: 38px;
    }
}

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

.block-reviews .swiper-wrapper {
    display: flex;
}

.startliving-theme .entry-review {
    height: 100%;
    max-width: 400px;
    padding: 45px;
    background: var(--lavendar);
    border: 1px solid rgba(var(--violet-rgb), 50%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.startliving-theme .entry-review,
.startliving-theme .entry-review .inner-entry-content {
    display: flex;
    flex-direction: column;
}

.startliving-theme .entry-review .inner-entry-content {
    flex: 1;
}

.startliving-theme .entry-review h4 {
    margin-bottom: 40px;
}

.startliving-theme .entry-review p {
    margin: auto 0 0 0;
}

.startliving-theme .entry-review .background-image {
    opacity: 0;
    transition: var(--transition) opacity;
}

.startliving-theme .entry-review:hover .background-image {
    opacity: 100%;
}

/* Responsive */

@media (max-width: 770px) {
    .startliving-theme .entry-review {
        max-width: 100%;
    }
}

/*-----------------------------------------------------------------------
    Block - Logos
-----------------------------------------------------------------------*/

.block-logos img {
    max-width: 260px;
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.block-logos .listing-logos {
    gap: 30px 40px;
}

.block-logos .listing-logos img {
    opacity: 75%;
}

.block-logos .carousel-logos img {
    opacity: 40%;
    max-width: 220px;
    max-height: 45px;
}

.block-logos .carousel-logos .swiper-wrapper {
    transition-timing-function: linear;
}

/* Responsive */

@media (max-width: 770px) {
    .block-logos img {
        max-width: 190px;
        max-height: 40px;
    }
}
