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

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

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

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

    --font-primary: "Raleway", sans-serif;
    --font-secondary: "Inter", sans-serif;

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

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

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

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

    --pink: #edc3c1;
    --pink-rgb: 237, 195, 193;

    --dark-red: #821436;
    --dark-red-rgb: 130, 20, 54;

    --cream: #fbf9f0;
    --cream-rgb: 251, 249, 240;

    --blush: #f5ecef;
    --blush-rgb: 245, 236, 239;

    --deep-teal: #103734;
    --deep-teal-rgb: 16, 55, 52;

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

    --container-xs: 720px;
    --container-sm: 970px;
    --container-md: 1220px;
    --container-lg: 1350px;

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

    --transition: 0.25s ease;
}

/* Responsive */

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

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

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

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

body.workallies-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: 25px;
    font-weight: 400;
    margin: 0px;
}

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

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

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

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

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

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

.workallies-theme .container,
.workallies-theme .container-xl,
.workallies-theme .container-lg,
.workallies-theme .container-md,
.workallies-theme .container-sm,
.workallies-theme .container-xs {
    z-index: 99;
    margin: auto;
    padding: 0px 20px;
}

.workallies-theme .container,
.workallies-theme .container-xl {
    width: 100%;
    padding: 0px;
}

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

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

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

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

@media (min-width: 992px) {
    .workallies-theme .grid-col-2.sidebar-left {
        grid-template-columns: 1fr 1.75fr;
    }

    .workallies-theme .grid-col-2.sidebar-right {
        grid-template-columns: 1.75fr 1fr;
    }
}

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
    .workallies-theme .grid-col-4,
    .workallies-theme .grid-col-5 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

/*-----------------------------------------------------------------------
	Background Colours
-----------------------------------------------------------------------*/

.workallies-theme .background-white {
    background: var(--white);
}

.workallies-theme .background-black {
    background: var(--black);
}

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

.workallies-theme h1,
.workallies-theme h1 *,
.workallies-theme .h1,
.workallies-theme .h1 *,
.workallies-theme h2,
.workallies-theme h2 *,
.workallies-theme .h2,
.workallies-theme .h2 *,
.workallies-theme h3,
.workallies-theme h3 *,
.workallies-theme .h3,
.workallies-theme .h3 *,
.workallies-theme h4,
.workallies-theme h4 *,
.workallies-theme .h4,
.workallies-theme .h4 *,
.workallies-theme h5,
.workallies-theme h5 *,
.workallies-theme .h5,
.workallies-theme .h5 *,
.workallies-theme h6,
.workallies-theme h6 *,
.workallies-theme .h6,
.workallies-theme .h6 * {
    margin: 0;
    padding: 0;
    color: var(--black);
    font-weight: 900;
    text-wrap: wrap;
    word-wrap: break-word;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

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

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

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

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

.workallies-theme .text-lowercase {
    text-transform: none;
    font-weight: 700;
}

.workallies-theme h5,
.workallies-theme h5 *,
.workallies-theme .h5,
.workallies-theme .h5 * {
    font-size: 20px;
    line-height: 24px;
    text-transform: none;
    font-weight: 700;
}

.workallies-theme h6,
.workallies-theme h6 *,
.workallies-theme .h6,
.workallies-theme .h6 * {
    font-size: 13px;
    line-height: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dark-red);
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.workallies-theme h6:after {
    content: "";
    position: absolute;
    width: calc(100% + 20px);
    height: 100%;
    background-image: url("../img/shape-highlight.svg");
    background-repeat: no-repeat;
    background-size: cover;
    left: -13px;
    z-index: -1;
}
.workallies-theme.pink h6:after {
    filter: brightness(15.5);
}
.workallies-theme ul,
.workallies-theme ol,
.workallies-theme li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.workallies-theme a {
    text-underline-offset: 3px !important;
    text-decoration-thickness: 1px !important;
    color: var(--black);
    transition: var(--transition);
    text-decoration: underline;
}

.workallies-theme a:hover,
.workallies-theme a:focus {
    text-decoration: none;
}

.workallies-theme strong,
.workallies-theme strong * {
    font-weight: 700 !important;
}

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

.workallies-theme mark {
    background: none;
}

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

.workallies-theme .margin-minus-24 {
    margin-top: -24px;
}

/* Responsive */

@media (max-width: 860px) {
    .workallies-theme h1,
    .workallies-theme h1 *,
    .workallies-theme .h1,
    .workallies-theme .h1 * {
        font-size: 45px;
        line-height: 55px;
    }

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

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

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

/* Sizes */

.workallies-theme .text-small,
.workallies-theme .text-small * {
    font-size: 12px !important;
    line-height: 18.54px;
    color: var(--deep-teal);
    font-weight: 400;
    margin: 0px;
}

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

/* Alignment */

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

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

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

/* Colours */

.workallies-theme .text-muted {
    opacity: 50%;
}

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

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

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

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

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

.wysiwyg-content h6[style="text-align: center;"] {
    display: block;
    max-width: fit-content;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wysiwyg-content h6[style="text-align: right;"] {
    display: block;
    max-width: fit-content;
    margin-left: auto !important;
}

/* Lists */

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

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

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

.wysiwyg-content ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    width: 13px;
    height: 12px;
    background-image: url(../img/shape-emblem-pink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.wysiwyg-content.text-white ul li:before {
    filter: brightness(20);
}
.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: auto;
    margin-right: auto;
    padding: 20px;
    max-width: 678px;
    padding-top: 52px;
    position: relative;
}
.wysiwyg-content blockquote:before {
    content: "";
    width: 46px;
    height: 22px;
    background-image: url("../img/icon-quote.svg");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 17px;
    left: 15px;
}

/* Links */

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

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

.workallies-theme form,
.workallies-theme form *:not(table, table *, button) {
    border: 0;
    padding: 0;
    margin: 0;
    outline: 0 !important;
    box-shadow: none !important;
    position: relative;
}

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

/* Labels */

.workallies-theme label,
.workallies-theme legend,
.workallies-theme form .ginput_preview,
.workallies-theme form .gform-field-label,
.workallies-theme form .gfield_description,
.workallies-theme form .ginput_quantity_label,
.workallies-theme form .gform_fileupload_rules,
.workallies-theme form .gfield_password_strength {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: var(--font-primary);
    font-size: 17px !important;
    line-height: 25px !important;
    font-weight: 400 !important;
    margin: 0px 0 5px !important;
    color: var(--cream) !important;
}

.workallies-theme fieldset legend {
    font-size: 16px !important;
}

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

.workallies-theme label .required,
.workallies-theme form .gfield_label .gfield_required {
    color: var(--red);
    margin-left: 2px !important;
    text-decoration: none !important;
    display: none;
}

/* Basic Fields */

.workallies-theme input:not([class*="ui-"], [type="button"], [type="submit"]),
.workallies-theme select:not([class*="ui-"]),
.workallies-theme .select2-container .select2-selection,
.workallies-theme textarea:not([class*="ui-"]) {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100% !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 18px 26px !important;
    color: var(--black) !important;
    font-size: 13px !important;
    line-height: 17px !important;
    font-weight: 400 !important;
    text-align: left !important;
    text-decoration: none !important;
    transition: none !important;
    resize: none;
    border-radius: 12px !important;
    border: none !important;
    background-color: var(--cream) !important;
}

.workallies-theme textarea:not([class*="ui-"]) {
    min-height: 100px;
    max-height: 200px;
}

.workallies-theme input:not([class*="ui-"], [type="button"], [type="submit"]):hover,
.workallies-theme input:not([class*="ui-"], [type="button"], [type="submit"]):focus,
.workallies-theme select:not([class*="ui-"]):hover,
.workallies-theme select:not([class*="ui-"]):focus,
.workallies-theme textarea:not([class*="ui-"]):hover,
.workallies-theme textarea:not([class*="ui-"]):focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.workallies-theme input:not([class*="ui-"])[disabled],
.workallies-theme select:not([class*="ui-"])[disabled],
.workallies-theme textarea:not([class*="ui-"])[disabled],
.workallies-theme button:not([class*="ui-"])[disabled] {
    opacity: 50%;
    pointer-events: none;
}

.workallies-theme input:not([class*="ui-"]):-webkit-autofill,
.workallies-theme input:not([class*="ui-"]):-webkit-autofill:hover,
.workallies-theme input:not([class*="ui-"]):-webkit-autofill:focus,
.workallies-theme input:not([class*="ui-"]):-webkit-autofill:active,
.workallies-theme textarea:not([class*="ui-"]):-webkit-autofill,
.workallies-theme textarea:not([class*="ui-"]):-webkit-autofill:hover,
.workallies-theme textarea:not([class*="ui-"]):-webkit-autofill:focus,
.workallies-theme textarea:not([class*="ui-"]):-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--cream) inset !important;
    -webkit-text-fill-color: var(--black);
}

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

/* Select */

.workallies-theme select:not([class*="ui-"], [multiple="multiple"]) {
    padding-right: 45px !important;
    background: url(../img/icon-chevron-down.svg) 50% no-repeat !important;
    background-size: 12px !important;
    background-position: center right 20px !important;
    cursor: pointer;
}

.workallies-theme .select2,
.workallies-theme .select2 * {
    margin: 0 !important;
    padding: 0 !important;
}

.workallies-theme .select2-container .select2-selection {
    background: transparent url(../img/icon-chevron-down.svg) 50% no-repeat !important;
    background-size: 12px !important;
    background-position: center right 20px !important;
    cursor: pointer;
}

.workallies-theme .select2-container .select2-selection,
.workallies-theme .select2-container .select2-selection * {
    line-height: 20px !important;
}

.workallies-theme .select2-selection__rendered,
.workallies-theme .select2-selection__placeholder {
    color: var(--black) !important;
}

.workallies-theme .select2-dropdown {
    top: 0;
    border-width: 1px !important;
    border-color: var(--black) !important;
    border-radius: 0 !important;
    background: var(--cream);
}

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

.workallies-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    background: var(--black);
}

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

/* Checkbox & Radio */

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

.workallies-theme input[type="radio"]:not([class*="ui-"]) {
    border-radius: 25px !important;
}

.workallies-theme input[type="checkbox"]:not([class*="ui-"]) + label,
.workallies-theme input[type="radio"]:not([class*="ui-"]) + label {
    font-weight: 400 !important;
    font-size: 14px !important;
    font-family: var(--font-primary);
    letter-spacing: inherit;
    text-transform: none !important;
    margin: 0 !important;
}

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

.workallies-theme input[type="radio"]:not([class*="ui-"]):checked {
    border: 6px solid var(--black) !important;
}

.workallies-theme input[type="radio"]:not([class*="ui-"]):before,
.workallies-theme input[type="checkbox"]:not([class*="ui-"]):before {
    display: none !important;
}

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

.gform_wrapper .gform_body,
.gform_wrapper .gform_fields,
.gform_wrapper .gform_footer {
    margin: 0 !important;
}

.gform_wrapper.gravity-theme .gform_footer .gform_button {
    background-color: var(--cream);
    color: var(--black);
    border: 1px solid var(--cream) !important;
}

.gform_wrapper.gravity-theme .gform_footer .gform_button:hover {
    background-color: transparent;
    color: var(--cream);
}

.gform_wrapper .gform_fields {
    gap: 13px 11px !important;
}

.gform_wrapper .ginput_complex {
    gap: 0 !important;
}

.gform_wrapper .gform_required_legend,
.gform_wrapper .gfield .gfield_validation_message {
    display: none !important;
}
.gform_wrapper .gform_footer.before {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    justify-content: flex-end;
}
.gform_wrapper .gform_footer.before input {
    background-color: var(--cream);
    max-width: 194px;
    min-width: 194px;
    text-align: center;
    color: var(--black);
    border: 1px solid var(--cream) !important;
}
.gform_wrapper .gform_footer.before input:hover {
    background-color: transparent;
    color: var(--cream);
}

/* responsive */

@media (max-width: 767px) {
    .gform_wrapper .gform_footer.before input {
        max-width: 150px;
        min-width: 150px;
    }
}

/* AJAX Spinner */

.gform_wrapper .gform_ajax_spinner,
.gform_wrapper .gform-loader {
    width: 12px !important;
    height: 12px !important;
    margin: 0 0 0 20px !important;
}

/* Labels */

.gform_wrapper .gfield_description,
.gform_wrapper .gfield_list_group_item:before,
.gform_wrapper .gfield_list .gform-field-label,
.gform_wrapper .gform-field-label--type-sub {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: rgba(var(--black-rgb), 50%) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.gform_wrapper .gform_title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Radio / Checkbox */

.gform_wrapper .gfield_checkbox .gchoice,
.gform_wrapper .gfield_radio .gchoice {
    margin: 10px 0 !important;
}

/* Date / Time */

.gform_wrapper .ginput_container_date,
.gform_wrapper .ginput_container_time {
    flex-basis: auto !important;
    max-width: 100% !important;
    flex: 1 !important;
}

.gform_wrapper .hour_minute_colon {
    line-height: 35px !important;
}

/* List */

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

/* File Upload */

.gform_wrapper .gform_drop_area {
    padding: 20px !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 1px dashed rgba(var(--black-rgb), 25%) !important;
}

.gform_wrapper .gform_drop_area:before {
    display: none !important;
}

.gform_wrapper .gform_drop_area .gform_button_select_files {
    margin: auto !important;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview {
    font-size: 14px;
    display: flex !important;
    align-items: center;
    margin: 10px 0 0 !important;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview * {
    margin: 0 5px 0 0 !important;
    order: 9;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview .gfield_fileupload_progressbar {
    display: none;
}

.gform_wrapper .gform_delete_file,
.gform_wrapper .gform_delete_file * {
    padding: 0 !important;
    margin: 0 0 1px !important;
    min-width: 0 !important;
    box-shadow: none !important;
    font-size: 16px !important;
    line-height: 18px !important;
    color: var(--black) !important;
    order: 1 !important;
}

.gform_wrapper .gform_delete_file:hover * {
    color: var(--red) !important;
}

.gform_wrapper .gfield--type-fileupload .gform_fileupload_rules {
    padding-top: inherit !important;
}

/* Price / Product */

.gform_wrapper .ginput_product_price_wrapper {
    width: 100%;
    margin: 0 0 10px;
}

/* Consent */

.gform_wrapper .ginput_container_consent {
    display: flex;
}

/* Progress Bar */

.gform_wrapper .gf_progressbar_wrapper {
    margin: 0 0 30px;
}

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

.gform_wrapper .gf_progressbar {
    background: rgba(var(--black-rgb), 5%) !important;
}

.gform_wrapper .gf_progressbar_percentage {
    height: 16px !important;
    background: var(--grey) !important;
}

.gform_wrapper .gf_progressbar_title,
.gform_wrapper .gf_progressbar_percentage span {
    margin: 0 !important;
}

.gform_wrapper .gf_progressbar_title {
    font-size: 12px !important;
    font-weight: 400 !important;
}

.gform_wrapper .gf_progressbar_percentage span {
    padding: 0 5px !important;
    color: var(--black) !important;
    font-size: 10px !important;
    line-height: 15px !important;
    text-transform: uppercase !important;
}

/* Page Footer */

.gform_wrapper .gform_page_footer {
    display: flex;
    gap: 15px;
    align-items: center;
}

.gform_wrapper .gform_page_footer .button {
    margin: 0 !important;
}

.gform_wrapper .gform_page_footer .gform_previous_button:not(:hover, :focus),
.gform_wrapper .gform_page_footer .gform_next_button:not(:hover, :focus) {
    color: var(--black) !important;
}

/* Validation */

.gform_wrapper .gform_validation_errors {
    outline: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 20px !important;
}

.gform_wrapper .gform_validation_errors * {
    color: var(--red) !important;
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0 !important;
}

.gform_wrapper .gfield_validation_message {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

/*-----------------------------------------------------------------------
	Filter Form
-----------------------------------------------------------------------*/

.workallies-theme form.filter-form {
    width: fit-content !important;
    max-width: 100%;
}

.workallies-theme *[id*="response"] {
    transition: var(--transition) all;
}

.workallies-theme .filter-loading {
    opacity: 50%;
}

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

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

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

/* Default Styles */

.workallies-theme button,
.workallies-theme .button,
.workallies-theme a.added_to_cart {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    outline: 0;
    width: auto;
    height: auto;
    min-width: 100px;
    min-height: 0 !important;
    padding: 21px 28px !important;
    font-size: 16px !important;
    font-family: var(--font-primary);
    color: var(--cream);
    font-weight: 500;
    line-height: 16px !important;
    text-align: center;
    text-decoration: none !important;
    background: var(--dark-red);
    border: 1px solid var(--dark-red);
    border-radius: 8px !important;
    transition: var(--transition) all;
    cursor: pointer;
    text-transform: uppercase;
    min-width: 194px;
}
.workallies-theme button:hover,
.workallies-theme .button:hover,
.workallies-theme a.added_to_cart:hover {
    background-color: transparent;
    color: var(--dark-red);
    border: 1px solid var(--dark-red) !important;
}

/* Additional Styles */

.workallies-theme .button.button-teal {
    background-color: var(--deep-teal);
    border: 1px solid var(--deep-teal);
}

.workallies-theme .button.button-teal:hover {
    background-color: transparent;
    color: var(--deep-teal);
    border: 1px solid var(--deep-teal) !important;
}

.workallies-theme .button.button-teal svg path {
    transition: var(--transition);
}

.workallies-theme .button.button-teal:hover svg path {
    fill: var(--deep-teal);
}

.workallies-theme .button.button-lightpink {
    background-color: var(--pink);
    border: 1px solid var(--pink);
    color: var(--black);
}

.workallies-theme .button.button-lightpink:hover {
    background-color: transparent;
    border: 1px solid var(--black) !important;
    color: var(--black);
}

.workallies-theme .button.button-white {
    border-color: var(--cream);
    background-color: var(--cream);
    color: var(--black);
}
.workallies-theme .button.button-white:hover {
    background-color: var(--deep-teal) !important;
    border-color: var(--deep-teal) !important;
    color: var(--cream);
}

.workallies-theme .button.btn-download {
    background-color: transparent !important;
    padding: 0px !important;
    text-decoration: underline !important;
    font-weight: 400 !important;
    border: none !important;
    min-width: auto;
}
.workallies-theme .button.btn-download:hover {
    background-color: transparent !important;
    color: var(--black) !important;
    border: none !important;
    text-decoration: none !important;
}

/* Hover/Focus */

.workallies-theme button:hover,
.workallies-theme button:focus,
.workallies-theme .button:hover,
.workallies-theme .button:focus,
.workallies-theme a.added_to_cart:hover,
.workallies-theme a.added_to_cart:focus,
.workallies-theme .form-submit *[type="submit"]:hover,
.workallies-theme .form-submit *[type="submit"]:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--grey);
}

/* Responsive */

@media (max-width: 550px) {
    .workallies-theme .button-group {
        width: 100%;
    }
    .workallies-theme button,
    .workallies-theme .button,
    .workallies-theme a.added_to_cart {
        min-width: auto;
    }
}

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

.site-notice {
    padding: 10px 0;
    background: var(--black);
    color: var(--cream);
}

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

.site-logo,
.site-logo img,
.site-logo svg {
    display: block;
    max-width: 405px;
    max-height: 85px;
    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: 179px;
    max-height: 240px;
    margin: auto;
}

@media (max-width: 1300px) {
    .site-logo,
    .site-logo img,
    .site-logo svg {
        max-width: 300px;
        max-height: 85px;
    }
}

@media (max-width: 1199px) {
    .site-logo,
    .site-logo img,
    .site-logo svg {
        max-width: 240px;
    }
}

@media (max-width: 991px) {
    .site-logo,
    .site-logo img,
    .site-logo svg {
        max-width: 256px;
        max-height: 53px;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .site-footer .site-logo,
    .site-footer .site-logo img,
    .site-footer .site-logo svg {
        max-width: 90px;
    }
}
@media (max-width: 350px) {
    .site-logo,
    .site-logo img,
    .site-logo svg {
        max-width: 210px;
    }
}

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

.site-header {
    top: 0;
    width: 100%;
    display: block;
    position: fixed;
    background: var(--cream);
    z-index: 2000000002;
    box-shadow: 0px 4px 10px rgba(198, 198, 198, 0.25);
}

.site-header .header-left {
    max-width: calc(100% - 60px);
}

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

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

.site-header > .grid-col-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Main Menu */

.workallies-theme .main-menu ul li,
.workallies-theme .main-menu ul li a {
    position: relative;
}

.workallies-theme .main-menu ul li a {
    padding: 10px;
    display: block;
    transition: var(--transition) all;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
}

.workallies-theme .main-menu ul > li.current-menu-item > a,
.workallies-theme .main-menu ul > li.current-menu-parent > a,
.workallies-theme .main-menu ul li a:hover,
.workallies-theme .main-menu ul li a:focus {
    color: var(--dark-red);
}
.workallies-theme .main-menu ul > li.current-menu-item > a,
.workallies-theme .main-menu ul > li.current-menu-parent > a {
    font-weight: 700;
}
.site-header ul:not(.sub-menu) {
    display: flex;
    gap: 10px;
}

/* Sub Menu */

.workallies-theme .site-header .trigger-sub-menu svg {
    width: 13px;
    height: 13px;
    margin-left: 0px;
}

.workallies-theme .main-menu ul.sub-menu,
.workallies-theme .main-menu ul.sub-menu li,
.workallies-theme .main-menu ul.sub-menu li a {
    display: block;
}

.site-header ul.sub-menu {
    background: var(--cream);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.workallies-theme .main-menu ul.sub-menu li a {
    padding: 18px 24px;
    color: var(--black);
}
.workallies-theme .main-menu > ul > li {
    padding: 31px 0px;
}
.site-header ul li .sub-menu-wrap {
    width: 308px;
    opacity: 0;
    display: block;
    position: absolute;
    top: 99px;
    left: 0%;
    right: 0%;
    margin: 0;
    pointer-events: none;
    z-index: 20000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.workallies-theme .main-menu ul.sub-menu li a:hover {
    background-color: var(--pink);
}

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

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

/* Icon Menu */
.site-header .header-right .main-menu {
    margin-right: 30px;
}
.site-header .header-right {
    gap: 9px;
}
.site-header .header-right .button.button-teal {
    font-family: var(--font-secondary);
}
.site-header *[class*="icon-"],
.site-header *[class*="icon-"] svg {
    display: block;
    width: 20px;
    height: 20px;
    color: var(--black);
    cursor: pointer;
}

.site-header .icon-cart {
    position: relative;
    width: 25px;
}

.site-header .icon-cart .cart-count {
    display: block;
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 8px;
    width: 14px;
    line-height: 14px;
    border-radius: 14px;
    text-align: center;
    background: var(--black);
    color: var(--cream);
}

/* Hamburger */

.site-header .icon-hamburger {
    width: 40px;
    height: 26px;
    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: 40px;
    height: 2px;
    background: var(--dark-red);
    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: -10px;
    transition-property: top, transform;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

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

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

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

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

/* Responsive Menu */
.menu-active header.site-header {
    background-color: #f8f4e1;
    box-shadow: none;
}
.site-responsive-menu {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    top: calc(var(--header-height) + var(--notice-height));
    overflow-y: auto;
    background-color: #f8f4e1;
    z-index: 9999;
    height: calc(100% - var(--header-height) + var(--notice-height));
    transform: translate(-100%, 0px);
    transition: var(--transition);
    padding-bottom: 50px;
}
.site-responsive-menu .main-menu {
    padding-top: 50px;
    padding-bottom: 200px;
}

.menu-active .site-responsive-menu {
    transform: none;
}

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

.site-responsive-menu .container-xl {
    width: 100%;
    transition: var(--transition) all;
}

/* Responsive Menu: Menu */

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

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

.site-responsive-menu .menu-search,
.site-responsive-menu .main-menu > ul > li {
}

.site-responsive-menu .main-menu > ul > li > a {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 900;
    color: var(--deep-teal);
    line-height: normal;
    padding: 10px 20px;
    display: flex;
}

.site-responsive-menu .main-menu ul li .trigger-sub-menu {
    width: 36px;
    height: 34px;
    background-image: url("../img/icon-arrow-right.svg");
    background-size: contain;
    margin-left: 15px;
    transition: var(--transition);
    filter: brightness(1.5);
    background-repeat: no-repeat;
}

.site-responsive-menu .main-menu ul li .trigger-sub-menu svg {
    display: none;
}

/* Responsive Menu: Sub Menu */

.site-responsive-menu .main-menu ul.sub-menu {
    padding-bottom: 20px;
    padding-top: 30px;
}

.site-responsive-menu .main-menu ul.sub-menu li {
    margin-bottom: 10px !important;
}
.site-responsive-menu .main-menu ul.sub-menu li a {
    font-size: 20px;
    padding: 0 20px 5px;
    font-weight: 900;
    color: var(--deep-teal);
    font-weight: 700;
}

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

/* Responsive */

@media (min-width: 992px) {
    .site-header .trigger-menu,
    .site-responsive-menu {
        display: none !important;
    }
}
@media (max-width: 1199px) {
    .site-header ul:not(.sub-menu) {
        gap: 0px;
    }
    .site-header .button-group .button {
        padding: 15px !important;
    }
    .site-header .header-right {
        gap: 5px;
    }
    .site-header .button-group {
        gap: 5px;
    }
    .site-header .header-right .button {
        min-width: auto;
        padding: 20px !important;
    }
    .site-header .header-right .main-menu {
        margin-right: 10px;
    }
}

@media (max-width: 991px) {
    .site-header > .grid-col-3 {
        grid-template-columns: auto 1fr !important;
    }

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

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

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

    body.menu-active .site-responsive-menu .container-xl {
        opacity: 1;
    }
    .workallies-theme .main-menu > ul > li {
        padding: 0px;
    }
    .workallies-theme .main-menu ul.sub-menu li a:hover {
        background-color: transparent;
    }
    .workallies-theme .main-menu ul > li.current-menu-item > a,
    .workallies-theme .main-menu ul > li.current-menu-parent > a,
    .workallies-theme .main-menu ul li a:hover,
    .workallies-theme .main-menu ul li a:focus {
        text-decoration: underline;
        color: var(--deep-teal);
        font-weight: 900;
    }
}

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

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

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

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

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

/* Responsive */

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

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

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

.site-footer {
    margin-top: -24px;
}

.site-footer .menu-footer {
    background: var(--deep-teal);
    padding-top: 114px;
}

.site-footer .footer-menu span {
    color: var(--cream);
    font-size: 16px;
    font-family: var(--font-secondary);
    font-weight: 800;
    line-height: 30px;
    display: block;
    margin-bottom: 15px;
}

.site-footer .footer-menu ul li a,
.site-footer .footer-menu ul li {
    color: var(--cream);
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.site-footer .footer-menu.contact-info a {
    text-transform: none;
}

.site-footer .footer-menu ul li {
    margin-bottom: 10px !important;
}

.site-footer .footer-menu ul li a:hover {
    color: var(--pink);
}

.site-footer .footer-copyright {
    padding: 15px 0px;
}

.site-footer .footer-content {
    margin: auto;
    width: 277px;
    text-align: center;
}

.site-footer .footer-menu {
    margin-top: 50px;
}

.site-footer .footer-copyright .right-col {
    padding-left: 19%;
}

.site-footer .footer-copyright .right-col ul {
    gap: 20px;
}

.site-footer .footer-copyright .right-col a {
    text-decoration: none;
}

.site-footer .footer-copyright .right-col ul li a {
    font-size: 12px !important;
    line-height: 18.54px;
    color: var(--deep-teal);
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    text-decoration: none;
}

.site-footer .footer-copyright .right-col a:hover {
    color: var(--dark-red) !important;
}

.site-footer .footer-copyright .right-col ul li {
    margin: 0px !important;
}

.site-footer .footer-copyright .left-col a {
    text-transform: uppercase;
    text-decoration: none;
}

.site-footer .footer-copyright .left-col a:hover {
    color: var(--dark-red);
}

.site-footer .footer-columns {
    padding-bottom: 53px;
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
    padding-top: 40px;
}

.site-footer .footer-columns:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--cream);
}

.site-footer .footer-menu:nth-child(2) {
    width: 226px;
}

.site-footer .footer-menu.contact-info {
    width: 236px;
}

.site-footer .footer-menu.contact-info li:nth-child(2),
.site-footer .footer-menu.contact-info li:nth-child(3) {
    font-weight: 500;
    display: flex;
}

.site-footer .footer-menu.contact-info li:nth-child(2) a,
.site-footer .footer-menu.contact-info li:nth-child(3) a {
    font-weight: 300;
    padding-left: 3px;
}

/* Footer Menu */

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

.site-footer ul li,
.site-footer h6 {
    margin: 0 0 10px;
}

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

/* Footer Logos */

.site-footer .logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 50px;
    flex-wrap: wrap;
}
.site-footer .logos img {
    height: 60px;
}

/* Instagram */

.site-footer .instagram-feed {
    text-align: center;
    padding-bottom: 90px;
}

.site-footer .instagram-feed h6 {
    color: var(--cream);
}

.site-footer .sbi_header_img {
    display: none;
}

.site-footer .sb_instagram_header .sbi_header_text {
    justify-content: center;
    max-width: 100%;
    margin: auto;
    margin-bottom: 30px;
}

.site-footer .sb_instagram_header .sbi_header_text h3 {
    color: var(--cream);
    text-transform: lowercase;
    font-size: 45px !important;
    line-height: 47px !important;
    font-weight: 900;
    width: 100%;
}

/* Responsive */

@media (max-width: 1199px) {
    .menu-footer .footer-columns {
        grid-template-columns: repeat(5, 1fr);
        padding-left: 0px;
        padding-right: 0px;
    }
    .site-footer .footer-content {
        width: 230px;
    }
}

@media (max-width: 991px) {
    .site-footer .footer-content {
        width: auto;
        order: -1;
    }
    .site-footer .menu-footer .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
    .site-footer .footer-copyright .grid-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .site-footer .footer-copyright .right-col {
        padding-left: 0px;
    }
    .site-footer .footer-columns {
        padding-left: 0px;
        padding-right: 0px;
    }
    .site-footer .menu-footer {
        padding-top: 70px;
    }
    .site-footer .instagram-feed {
        padding-bottom: 40px;
    }
    .site-footer .footer-menu:nth-child(2) {
        width: auto;
    }
}
@media (max-width: 767px) {
    .site-footer .footer-menu {
        margin-top: 30px;
    }
    .site-footer .menu-footer .footer-columns {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
        gap: 0px;
    }
    .site-footer .footer-copyright .grid-col-2 {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        text-align: center;
    }
    .site-footer .footer-copyright .right-col ul {
        gap: 10px;
        margin: 5px 0;
    }
    .site-footer .sb_instagram_header .sbi_header_text h3 {
        font-size: 35px !important;
    }
    .site-footer .footer-copyright .right-col {
        flex-direction: column;
    }
    .site-footer .footer-menu.contact-info {
        width: auto;
    }
    .site-footer .footer-menu.contact-info li:nth-child(2),
    .site-footer .footer-menu.contact-info li:nth-child(3) {
        justify-content: center;
    }
}

@media (max-width: 550px) {
    .site-footer .footer-copyright .right-col .text-small {
        font-size: 10px !important;
    }
    .site-footer .footer-copyright .right-col ul {
        flex-wrap: nowrap;
    }
    .site-footer .footer-copyright .right-col ul li a {
        font-size: 10px !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
-----------------------------------------------------------------------*/

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

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

/* Background Elements */

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

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

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

.workallies-theme .background-overlay:before {
    content: "";
    background: rgba(0, 0, 0, 30%);
}

/* Video Embed */

.workallies-theme .responsive-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

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

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

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

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

/* Pagination */

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

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

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

/* Navigation */

.workallies-theme .swiper .swiper-button-prev:after,
.workallies-theme .swiper .swiper-button-next:after {
    color: var(--cream);
    font-size: 20px;
}

/* Responsive */

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

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

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

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

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

.workallies-theme table th {
    background: rgba(var(--black-rgb), 5%);
}

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

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

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

.workallies-theme .social-icons {
    gap: 15px;
}

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

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

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

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

.workallies-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(--cream);
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -140%);
    transition: 0.3s ease all;
}

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

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

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

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

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

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

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

/* Close Button */

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

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

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

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

.workallies-theme .archive-pagination a {
    margin: 0 5px;
    font-size: 20px;
    text-align: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding-bottom: 4px;
    background-color: var(--pink);
}

.workallies-theme .archive-pagination a:hover,
.workallies-theme .archive-pagination a.current {
    color: var(--cream);
    background-color: var(--dark-red);
    text-decoration: none;
}

.workallies-theme .post-pagination {
    border-top: 1px solid var(--grey);
}

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

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

/*-----------------------------------------------------------------------
	Entry: Post
-----------------------------------------------------------------------*/

.workallies-theme .entry-post {
    display: block;
    transition: var(--transition) all;
    text-decoration: none;
}

.workallies-theme .entry-post .entry-post-image {
    aspect-ratio: 5 / 3;
    background: var(--grey);
    position: relative;
}

.workallies-theme .entry-post .entry-post-content {
    padding: 20px 0;
}

.workallies-theme .entry-post .entry-post-content > *:not(:last-child) {
    margin: 0 0 10px !important;
}

/*-----------------------------------------------------------------------
	Item: Accordion
-----------------------------------------------------------------------*/

.workallies-theme .item-accordion {
    margin: 0;
    height: auto;
    display: block;
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(130, 20, 54, 0.2);
    background: var(--cream);
    margin-bottom: 12px;
}
.workallies-theme .item-accordion .trigger-accordion strong {
    text-transform: none;
    max-width: 600px;
}

.workallies-theme .item-accordion .trigger-accordion {
    flex: 1;
    position: relative;
    flex-wrap: nowrap;
    cursor: pointer;
    transition: var(--transition) all;
    align-items: center;
}

.workallies-theme .item-accordion .trigger-accordion svg {
    width: 36px;
    height: 34px;
    min-width: 36px;
    min-height: 34px;
    margin-left: 10px;
}

.workallies-theme .item-accordion .trigger-accordion svg path:first-child {
    fill: var(--dark-red);
}
.workallies-theme .item-accordion .trigger-accordion svg path:nth-child(2) {
    fill: var(--cream);
}
.workallies-theme .item-accordion.active .trigger-accordion svg {
    transform: rotate(90deg);
}

.workallies-theme .item-accordion .wysiwyg-content {
    display: none;
}

.workallies-theme .item-accordion .wysiwyg-content > :first-child {
    margin-top: 10px !important;
}
.workallies-theme .item-accordion .wysiwyg-content {
    max-width: 800px;
}
.workallies-theme .item-accordion .download-btn {
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .workallies-theme .item-accordion {
        padding: 20px;
    }
    .workallies-theme .item-accordion .trigger-accordion strong {
        font-size: 20px;
        line-height: 25px;
    }
}

/*-----------------------------------------------------------------------
	Item: Separator
-----------------------------------------------------------------------*/

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

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

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

.block-image-gallery .carousel-gallery img {
    width: auto;
    height: 50vw;
    max-height: 580px;
    border-radius: 22px;
}
.workallies-theme .slider-navigation {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0px);
}
.workallies-theme .slider-navigation svg {
    width: 50px;
    height: 43px;
}
.workallies-theme .slider-navigation svg path {
    stroke: transparent;
}
.workallies-theme .swiper-button-prev:after,
.workallies-theme .swiper-button-next:after {
    display: none;
}
.workallies-theme .swiper-button-prev,
.workallies-theme .swiper-button-next {
    width: 50px;
    pointer-events: auto !important;
    opacity: 1 !important;
}
.workallies-theme .swiper-button-prev svg path,
.workallies-theme .swiper-button-next svg path {
    transition: var(--transition);
}
.workallies-theme .swiper-button-prev svg path:first-child,
.workallies-theme .swiper-button-next svg path:first-child {
    fill: var(--dark-red);
}
.workallies-theme .swiper-button-prev svg path:nth-child(2),
.workallies-theme .swiper-button-next svg path:nth-child(2) {
    fill: var(--cream);
}
.block-image-gallery .swiper-pagination {
    display: none !important;
}
.wp-admin .block-image-gallery .carousel-gallery {
    z-index: -1 !important;
}
@media (max-width: 767px) {
    .block-image-gallery .carousel-gallery img {
        border-radius: 12px;
    }
}

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

.block-split-content .column.column-image .image_block img {
    border-radius: 22px;
    object-fit: cover;
    width: 100%;
}
.block-split-content .wrapper {
    gap: 70px;
}
.block-split-content .column .button-group {
    margin-top: 15px;
}

/* Responsive */

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

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

    .block-split-content .wrapper {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .block-split-content .column-image .column.column-image.bg-style {
        max-width: 90%;
        margin-left: auto;
    }
}

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

.block-hero-banner {
    height: calc(100dvh - 99px);
    background-color: #fbf9f0;
    min-height: fit-content;
}
.block-hero-banner .block-setting-padding {
    height: 100%;
    min-height: fit-content;
}
.block-hero-banner .full-image {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.block-hero-banner .full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-hero-banner .banner-content {
    max-width: 754px;
}

.block-hero-banner .banner-content p {
    max-width: 470px;
    font-size: 25px;
    line-height: 36px;
    font-weight: 500;
}

.banner-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: fit-content;
}

.block-hero-banner:after {
    content: "";
    background: linear-gradient(274deg, rgb(251 249 240 / 0%) 43.77%, rgba(251, 249, 240, 0.87) 68.9%, #fbf9f0 78.72%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.block-hero-banner .mobile-image {
    display: none;
}

/* responsive */

@media (max-width: 1199px) {
    .block-hero-banner:after {
        background: linear-gradient(274deg, rgb(251 249 240 / 42%) 43.77%, rgba(251, 249, 240, 0.87) 68.9%, #fbf9f0 78.72%);
    }
}
@media (max-width: 767px) {
    .block-hero-banner {
        height: auto;
    }
    .block-hero-banner .banner-content h1 {
        font-size: 28px;
        line-height: 42px;
    }
    .block-hero-banner .banner-content p {
        font-size: 20px;
        line-height: 30px;
    }
    .block-hero-banner:after {
        background: linear-gradient(182deg, rgba(255, 255, 255, 1) 39%, rgba(255, 255, 255, 0.12) 78%);
    }
    .block-hero-banner .banner-content {
        padding-bottom: 400px;
    }
    .block-hero-banner .full-image {
        height: 500px;
        top: inherit;
        bottom: 0;
    }
    .block-hero-banner .desktop-image {
        display: block;
    }
}

/*-----------------------------------------------------------------------
	Block: Our Service
-----------------------------------------------------------------------*/

.title {
    margin-bottom: 70px;
}

.block-our-service {
    border-radius: 24px;
    overflow: hidden;
    margin-top: -30px;
}

.block-our-service .service-image img {
    width: 100%;
    aspect-ratio: 2/2.13;
    object-fit: cover;
    border-radius: 22px;
    transition: var(--transition);
}

.block-our-service .service-content {
    border-radius: 22px;
    background: var(--pink);
    position: absolute;
    bottom: 15px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 20px;
    transition: var(--transition);
}

.block-our-service .service-block {
    position: relative;
    display: block;
}
.block-our-service .service-block .service-image {
    overflow: hidden;
    border-radius: 22px;
}
.block-our-service .service-block:hover .service-image img {
    transform: scale(1.1);
}

.block-our-service .service-block:hover .service-content h4 {
    text-decoration: underline;
}

.block-our-service .service-block:hover .service-content {
    background-color: var(--dark-red);
}

.block-our-service .service-block:hover .service-content h4 {
    color: var(--cream);
}

.block-our-service .service-content h4 {
    width: 80%;
    transition: var(--transition);
    line-height: 25px;
}

.block-our-service .service-content .icon {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.block-our-service .service-content .icon svg path:first-child {
    fill: var(--cream);
}

.block-our-service .service-block:hover .icon svg path:first-child {
    fill: var(--cream);
}
.block-our-service .service-block:hover .icon svg path:nth-child(2) {
    fill: var(--dark-red);
}

.block-our-service.service-grid .service-content {
    position: relative;
    width: 100%;
    top: inherit;
    bottom: inherit;
    left: inherit;
}

.block-our-service.service-grid .service-block {
    text-decoration: none;
    height: 100%;
    display: block;
}

.block-our-service.service-grid .service-block .service-content {
    height: 100%;
}

.block-our-service.service-grid.pink .service-block .service-content {
    border: 1px solid var(--black);
}
.block-our-service.service-grid.dark-red .service-block .service-content {
    border: 1px solid var(--cream);
}
.block-our-service.service-grid.pink .service-block .service-content:hover {
    border: 1px solid var(--dark-red);
}

/* responsive */
@media (min-width: 768px) {
    .block-our-service .slider-navigation {
        display: none;
    }
    .block-our-service .swiper-slide {
        width: 100% !important;
    }
    .block-our-service .swiper-wrapper {
        transform: none !important;
    }
}
@media (max-width: 1199px) {
    .block-our-service .service-content h4 {
        font-size: 20px;
        line-height: normal;
    }
}
@media (max-width: 767px) {
    .title {
        margin-bottom: 30px;
    }
    .block-our-service .swiper-wrapper .swiper-slide:not(:first-child) {
        display: none;
    }
    .block-our-service .service-swiper.swiper-initialized .swiper-slide {
        display: block !important;
    }
    .block-our-service .slider-navigation {
        width: calc(100% + 60px);
    }
    .block-our-service .swiper {
        overflow: visible;
    }
    .block-our-service {
        overflow: hidden;
    }
    .block-our-service.service-grid .swiper-wrapper {
        display: grid !important;
        gap: 20px !important;
    }
    .block-our-service.service-grid .slider-navigation {
        display: none;
    }
    .block-our-service .slider-navigation svg path {
        fill: var(--dark-red);
    }
    .block-our-service .slider-navigation svg path:nth-child(2) {
        fill: var(--cream);
    }
    .block-our-service.dark-red .slider-navigation svg path {
        fill: var(--cream);
    }
    .block-our-service.dark-red .slider-navigation svg path:nth-child(2) {
        fill: var(--deep-teal);
    }
    .block-our-service .service-block {
        width: 100%;
    }
    .block-our-service .slider-navigation .swiper-button-next svg path:first-child,
    .block-our-service .slider-navigation .swiper-button-prev svg path:first-child {
        stroke: none !important;
    }
}

/*-----------------------------------------------------------------------
	Block: Split Accordion
-----------------------------------------------------------------------*/

.block-split-accordion .item-accordion {
    border-radius: 12px;
    background: var(--dark-red);
    padding: 15px 20px 15px 80px;
    margin-bottom: 15px;
}
.block-split-accordion .item-accordion.no-icon {
    padding: 15px 20px;
}
.block-split-accordion.pink .image_block.masking-layout .bg-shape svg path {
    fill: var(--cream);
}

.block-split-accordion.dark-red .item-accordion {
    border: 1px solid var(--cream);
}

.block-split-accordion .item-accordion .icon {
    position: absolute;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 12px;
}

.block-split-accordion .item-accordion .icon > svg {
    position: absolute;
}

.block-split-accordion .item-accordion .trigger-accordion strong {
    color: var(--cream);
}

.block-split-accordion .item-accordion .trigger-accordion svg path:first-child {
    fill: var(--cream);
}
.block-split-accordion .item-accordion .trigger-accordion svg path:nth-child(2) {
    fill: var(--deep-teal);
}

.block-split-accordion .item-accordion .a-icon {
    position: relative;
}
.block-split-accordion .title {
    margin-bottom: 40px;
}
.block-split-accordion .item-accordion .a-icon img {
    max-height: 28px;
    max-width: 28px;
    margin-top: 2px;
}

.block-split-accordion .item-accordion .trigger-accordion {
    align-items: center;
}

.block-split-accordion .item-accordion .wysiwyg-content {
    color: var(--cream);
}

.block-split-accordion .item-accordion .trigger-accordion svg {
    width: 36px;
    height: 34px;
    min-width: 36px;
    min-height: 34px;
    margin-left: 10px;
}
.block-split-accordion .item-accordion.active .trigger-accordion svg {
    transform: rotate(90deg);
}

.block-split-accordion .column.column-accordion {
    padding-top: 41px;
}

.block-split-accordion .image_block.masking-layout img {
    -webkit-mask-image: url("../img/mask-img.png");
    mask-image: url("../img/mask-img.png");
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: center;
    z-index: 1;
    mask-size: contain;
}

.block-split-accordion .image_block.masking-layout {
    max-width: 427px;
    margin: auto;
    aspect-ratio: 2/2;
    position: relative;
}

.block-split-accordion .image_block.masking-layout img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.block-split-accordion .image_block.masking-layout .bg-shape {
    position: absolute;
    top: -12px;
    left: -63px;
    max-width: 460px;
}

/* responsive */

@media (max-width: 991px) {
    .block-split-accordion .column.column-accordion {
        padding-top: 0px;
    }
}
@media (max-width: 767px) {
    .block-split-accordion .image_block.masking-layout .bg-shape svg {
        width: 100%;
    }
}
@media (max-width: 550px) {
    .block-split-accordion .image_block.masking-layout {
        max-width: 324px;
    }

    .block-split-accordion .image_block.masking-layout .bg-shape {
        max-width: 100%;
        top: -61px;
        left: -44px;
    }

    .block-split-accordion .item-accordion .icon {
        top: 17px;
        left: 19px;
    }

    .block-split-accordion .item-accordion {
        padding: 15px 27px 15px 75px;
    }
}

/*-----------------------------------------------------------------------
	Block: Post Feed
-----------------------------------------------------------------------*/

.block-post-feed {
    border-radius: 24px;
    overflow: hidden;
    margin-top: -30px;
}

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

.workallies-theme .listing-posts .column a {
    background-color: var(--deep-teal);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    text-decoration: none;
}
.workallies-theme .listing-posts .column a .image_block {
    overflow: hidden;
    -webkit-mask-image: url("../img/mask-img.png");
    mask-image: url("../img/mask-img.png");
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: center;
    z-index: 1;
    mask-size: contain;
}
.workallies-theme .listing-posts .column a:hover .image_block img {
    transform: scale(1.1);
}

.workallies-theme .listing-posts .column a:hover .bottom-content span {
    text-decoration: underline;
}

.workallies-theme .listing-posts .column a .image_block img {
    width: 100%;
    aspect-ratio: 2/1.78;
    object-fit: cover;

    transition: var(--transition);
}

.workallies-theme .listing-posts .column .tag ul li {
    color: var(--cream);
    font-size: 13px;
    font-weight: 700;
    margin-right: 40px;
    line-height: 25px;
    text-transform: uppercase;
    position: relative;
}

.workallies-theme .listing-posts .column .tag {
    margin-top: 17px;
    margin-bottom: 8px;
    padding-left: 13px;
}

.workallies-theme .listing-posts .column a h4 {
    color: var(--cream);
    margin-bottom: 35px;
}

.workallies-theme .listing-posts .column .tag ul li:after {
    content: "";
    position: absolute;
    width: calc(100% + 20px);
    height: 100%;
    background-image: url("../img/shape-highlight.svg");
    background-repeat: no-repeat;
    background-size: cover;
    left: -13px;
}

.workallies-theme .listing-posts .column h3 {
    color: var(--cream);
}

.workallies-theme .listing-posts .column .bottom-content span {
    color: var(--cream);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}
.block-post-feed .slider-navigation svg path {
    fill: var(--dark-red);
}
.block-post-feed .slider-navigation svg path:nth-child(2) {
    fill: var(--cream);
}
.block-post-feed.dark-red .slider-navigation svg path {
    fill: var(--cream);
}
.block-post-feed.dark-red .slider-navigation svg path:nth-child(2) {
    fill: var(--deep-teal);
}

/* responsive */
@media (min-width: 768px) {
    .block-post-feed .slider-navigation {
        display: none;
    }
    .block-post-feed .swiper-slide {
        width: 100% !important;
    }
    .block-post-feed .swiper-wrapper {
        transform: none !important;
    }
}

@media (max-width: 991px) {
    .workallies-theme .listing-posts .column a h4 {
        font-size: 20px;
        line-height: normal;
    }
}
@media (max-width: 767px) {
    .block-post-feed .title {
        gap: 20px;
        flex-wrap: nowrap;
    }
    .block-post-feed .title .button-group {
        justify-content: flex-end;
    }
    .block-post-feed .slider-navigation {
        width: calc(100% + 60px);
    }

    .block-post-feed .swiper {
        overflow: visible;
    }

    .block-post-feed {
        overflow: hidden;
    }

    .block-post-feed .swiper-wrapper {
        gap: 0px !important;
    }
    .block-post-feed .slider-navigation .swiper-button-next svg path:first-child,
    .block-post-feed .slider-navigation .swiper-button-prev svg path:first-child {
        stroke: none !important;
    }
    .block-post-feed .post-swiper .swiper-slide:not(:first-child) {
        display: none;
    }
    .block-post-feed .post-swiper.swiper-initialized .swiper-slide {
        display: block !important;
    }
}

/*-----------------------------------------------------------------------
	Block: Icon Grid
-----------------------------------------------------------------------*/

.block-icon-grid .icon-block {
    border-radius: 22px;
    background: var(--cream);
    box-shadow: 0px 4px 19.5px 0px rgba(232, 232, 232, 0.25);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    height: 100%;
}

.block-icon-grid .icon-block h5 {
    font-weight: 700;
    margin: auto;
    margin-top: 10px;
    text-align: center;
}

.block-icon-grid.white .icon-block {
    border: 1px solid var(--dark-red);
}

.block-icon-grid .icon-block .m-icon {
    width: 44px;
    height: 40px;
    position: absolute;
    top: 33px;
    left: 50%;
    transform: translateX(-50%);
}

.block-icon-grid .icon-block .m-icon svg,
.block-icon-grid .icon-block .m-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* responsive */

@media (max-width: 767px) {
    .block-icon-grid .icon-block h5 {
        margin: 15px auto auto;
    }
}
@media (max-width: 550px) {
    .block-icon-grid .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*-----------------------------------------------------------------------
	Block: Multicolumn
-----------------------------------------------------------------------*/
.block-multicolumn {
    border-radius: 24px;
    overflow: hidden;
    margin-top: -30px;
}
.block-multicolumn .grid-col-2 {
    gap: 58px;
}

.block-multicolumn:after {
    content: "";
    position: absolute;
    width: 389px;
    height: 100%;
    right: 0%;
    top: 0%;
    background-image: url("../img/bg-emblem-outlined.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    filter: invert(1);
}
.block-multicolumn.dark-red:after {
    filter: none;
}
.block-multicolumn .title {
    margin-bottom: 26px;
}

/* responsive */
@media (max-width: 767px) {
    .block-multicolumn .grid-col-2 {
        gap: 30px;
    }
}

/*-----------------------------------------------------------------------
	Block: Team Member
-----------------------------------------------------------------------*/

.block-team-member .grid-col-2 {
    gap: 45px;
}
.block-team-member .wysiwyg-content h4 {
    margin-bottom: 0px !important;
    font-weight: 900;
}
.block-team-member .wysiwyg-content h5 {
    font-weight: 900;
}
.block-team-member .team-name span {
    color: var(--black);
    font-size: 16px;
    font-weight: 900;
    line-height: 31px;
}

.block-team-member .team-contact ul {
    display: flex;
    gap: 20px;
}
.block-team-member .team-contact ul li::before {
    display: none;
}
.block-team-member .team-contact ul li {
    padding: 0px;
}
.block-team-member .team-contact ul li a {
    color: var(--dark-red);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    text-decoration: underline;
    text-transform: uppercase;
}
.block-team-member .team-contact ul li a:hover {
    text-decoration: none;
}

.block-team-member .team-image-block svg {
    width: 100%;
}
.block-team-member.pink .team-image-block svg g > rect:first-child {
    fill: var(--dark-red);
}
/* responsive */
@media (max-width: 767px) {
    .block-team-member .grid-col-2 {
        gap: 15px;
    }
}
@media (max-width: 550px) {
    .block-team-member .team-image-block svg {
        height: 300px;
    }
}

/*-----------------------------------------------------------------------
	Block: Inner Banner
-----------------------------------------------------------------------*/
.block-inner-banner {
    z-index: 1;
}
.block-inner-banner h1 {
    max-width: 480px;
    color: var(--cream);
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}

.block-inner-banner .b-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
}

.block-inner-banner .b-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*-----------------------------------------------------------------------
	Block: Wysiwyg-Content
-----------------------------------------------------------------------*/

.block-wysiwyg-content {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-top: -30px;
}

.block-wysiwyg-content.blush:after {
    content: "";
    background-image: url("../img/bg-emblem-white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 500px;
    height: 450px;
    position: absolute;
    top: -68px;
    left: -57px;
}

/* resposnive */

@media (max-width: 991px) {
    .block-wysiwyg-content:after {
        width: 300px;
        height: 350px;
        position: absolute;
        top: -20px;
        left: -57px;
    }
}

@media (max-width: 767px) {
    .block-wysiwyg-content.blush:after {
        width: 300px;
        height: 350px;
    }
}

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

.block-video {
    border-radius: 24px;
    overflow: hidden;
    margin-top: -30px;
}

.block-video video {
    width: 100%;
}
.block-video .title {
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
}

/*-----------------------------------------------------------------------
	Block: Cta
-----------------------------------------------------------------------*/

.block-cta {
    border-radius: 24px;
    overflow: hidden;
    margin-top: -30px;
}

.block-cta .cta-image {
    width: 40%;
}

.block-cta .cta-content {
    width: 40%;
    padding-left: 120px;
}

.block-cta .cta-image img {
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(../img/cta-masking.png);
    mask-image: url(../img/cta-masking.png);
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: right center;
    z-index: 1;
    mask-size: cover;
    object-fit: cover;
}

/* responsive */

@media (max-width: 1199px) {
    .block-cta .cta-image {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .block-cta .cta-image {
        width: 100%;
    }
    .block-cta .cta-content {
        width: 100%;
        padding-left: 20px;
    }
    .block-cta .cta-image img {
        mask-image: none;
    }
}

/*-----------------------------------------------------------------------
	Blog Listing
-----------------------------------------------------------------------*/

.blog-listing {
    padding: 100px 0px !important;
    background-color: var(--cream);
    z-index: 1;
    position: relative;
    border-radius: 24px;
}

.blog-listing .category {
    margin-bottom: 50px;
}

.blog-listing .category ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 44px;
}

.blog-listing .category ul li.active a,
.blog-listing .category ul li a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}
.blog-listing .title {
    margin-bottom: 60px;
}
.blog-listing .category ul li a {
    color: var(--deep-teal);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    text-transform: uppercase;
    text-decoration: none;
}

/* responsive */
@media (max-width: 767px) {
    .blog-listing .category ul {
        gap: 5px 25px;
    }
    .blog-listing {
        padding: 50px 0px !important;
    }
    .blog-listing .title {
        margin-bottom: 30px;
    }
}

/*-----------------------------------------------------------------------
	block: Post Content
-----------------------------------------------------------------------*/
.block-post-content {
    padding-top: 100px;
    padding-bottom: 160px;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--cream);
}
.block-post-content .blog-title {
    max-width: 612px;
    margin: auto;
    margin-bottom: 30px;
}
.block-post-content .blog-title ul {
    justify-content: center;
    gap: 30px;
}
.block-post-content .blog-feature {
    margin-top: 30px;
    margin-bottom: 30px;
}
.block-post-content .blog-feature img {
    width: 100%;
    border-radius: 22px;
}
/* responsive */
@media (max-width: 991px) {
    .block-post-content {
        padding-top: 50px;
        padding-bottom: 120px;
    }
}
@media (max-width: 767px) {
    .block-post-content .blog-feature img {
        border-radius: 12px;
    }
}

/*-----------------------------------------------------------------------
	block: Quote
-----------------------------------------------------------------------*/

.block-quote .quote-b {
    position: relative;
    padding-top: 38px;
}

.block-quote .quote-b h5 {
    color: var(--deep-teal);
}

.block-quote .quote-b p strong {
    text-transform: uppercase;
}

.block-quote .quote-b:before {
    content: "";
    width: 46px;
    height: 22px;
    background-image: url("../img/icon-quote.svg");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
.block-quote.dark-red .quote-b:before {
    filter: brightness(20);
}

/* Blog navigation */

.blog-navigation .post-nav {
    border-top: 1px solid var(--black);
    padding-top: 30px;
}

.blog-navigation a {
    color: var(--black);
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    text-decoration: none;
}

.blog-navigation a:hover {
    color: var(--black);
    text-decoration: underline;
}

.blog-navigation .social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-navigation .social-icons ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.blog-navigation .social-icons a,
.blog-navigation .social-icons .copy-to-clipboard {
    width: 24px;
    height: 24px;
    width: 24px;
    background-color: var(--dark-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-navigation .social-icons a:hover {
    background-color: var(--blush);
}
.blog-navigation .social-icons a:hover svg path {
    fill: var(--dark-red);
}
.blog-navigation .social-icons svg {
    width: 14px;
    height: 16px;
}
.blog-navigation .social-icons a svg path,
.blog-navigation .social-icons .copy-to-clipboard svg path {
    fill: var(--cream);
    transition: var(--transition);
}

.blog-navigation .social-icons span {
    font-weight: 600;
    text-transform: uppercase;
}

/* responsive */

@media (max-width: 767px) {
    .blog-navigation .social-icons {
        position: absolute;
        bottom: -40px;
    }
}

/*-----------------------------------------------------------------------
	block: Contact Form
-----------------------------------------------------------------------*/

.block-contact-form .social .icon {
    width: 20px;
    display: flex;
    align-items: center;
}
.block-contact-form.dark-red .social .icon svg path {
    fill: var(--cream);
}
.block-contact-form .social li a:hover {
    color: var(--dark-red);
}
.block-contact-form .social li:first-child {
    align-items: flex-start;
}
.block-contact-form.dark-red .social li a:hover {
    text-decoration: underline;
}
.block-contact-form.dark-red .social li:first-child a {
    text-decoration: none;
}
.block-contact-form .social .content {
    width: calc(100% - 23px);
    padding-left: 26px;
}
.block-contact-form.dark-red .gf_browser_chrome {
    border: 1px solid #fff;
}
.block-contact-form .social li {
    display: flex;
    margin-bottom: 17px !important;
    padding: 0px;
}

.block-contact-form .social li:last-child {
    margin-bottom: 0px !important;
}

.block-contact-form .social li p {
    margin: 0px !important;
}
.block-contact-form .social li:nth-child(2) a {
    font-family: var(--font-secondary);
    font-weight: 300;
}
.block-contact-form .social li a {
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    display: block;
}

.block-contact-form .social li::before {
    display: none;
}

.block-contact-form .social li:first-child a {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    text-decoration: underline;
}

.block-contact-form .wrapper {
    gap: 66px;
}
.block-contact-form .wrapper .col:nth-child(2) {
    margin-top: 30px;
}
.block-contact-form .col .social {
    margin-bottom: 36px;
}
.block-contact-form .col .social ul {
    display: block;
}
.block-contact-form .contact-img img {
    width: 100%;
    border-radius: 22px;
    margin-top: 48px;
}

.block-contact-form .gravity-theme {
    background-color: var(--dark-red);
    padding: 42px 32px;
    border-radius: 22px;
    margin-top: 50px;
}

.block-contact-form {
    border-radius: 24px;
    overflow: hidden;
}

/* responsive */

@media (max-width: 991px) {
    .block-contact-form .wrapper .col:nth-child(2) {
        margin-top: 0px;
    }
    .block-contact-form .wrapper {
        gap: 30px;
    }
    .block-contact-form .gravity-theme {
        margin-top: 10px;
    }
}

/*-----------------------------------------------------------------------
	block: Review
-----------------------------------------------------------------------*/

.block-review {
    border-radius: 24px;
    overflow: hidden;
    margin-top: -30px;
}

.block-review:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-image: url("../img/bg-emblem-large.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 995px;
    height: 100%;
    background-size: cover;
    filter: brightness(0.5);
}
.block-review.pink:after {
    filter: none;
}
.block-review .title {
    margin-bottom: 40px;
}

.block-review .google-rating img.empty-star {
    opacity: 0.3;
}
.block-review .swiper-button-prev svg path:first-child,
.block-review .swiper-button-next svg path:first-child {
    fill: var(--cream);
}
.block-review .swiper-button-prev svg path:nth-child(2),
.block-review .swiper-button-next svg path:nth-child(2) {
    fill: var(--dark-red);
}

.block-review .google-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-review .swiper.review-swiper {
    margin: auto;
    padding: 0px 140px;
}

.block-review .review-content p {
    font-size: 25px;
    line-height: 37px;
    margin-top: 13px;
}

.block-review .r-name {
    display: flex;
    align-items: center;
}
.block-review .r-name p {
    text-transform: uppercase;
}

.block-review.workallies-theme .f-name {
    width: 54px;
    height: 54px;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 17px;
    font-size: 30px;
    line-height: 25px;
    font-weight: 700;
    color: var(--black) !important;
}
.block-review.white.workallies-theme .f-name {
    background-color: var(--black);
    color: var(--cream) !important;
}
.block-review.white .rating img {
    filter: invert();
}
.block-review .swiper-pagination {
    display: none !important;
}
.wp-admin .block-review .review-swiper {
    pointer-events: none;
}

/* responsive */

@media (min-width: 768px) {
    .block-review .swiper-pagination {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .block-review .swiper.review-swiper {
        padding: 0px;
    }

    .block-review .slider-navigation {
        width: 132px;
        position: absolute;
        transform: none;
        top: 100%;
        left: inherit;
        right: 0;
        transform: rotate(-3.5deg);
    }

    .block-review {
        overflow: hidden;
    }

    .block-review .swiper {
        overflow: visible;
    }
    .block-review .gr-review {
        padding-bottom: 54px;
    }
}

/*-----------------------------------------------------------------------
	block: Location
-----------------------------------------------------------------------*/

.block-location .social .icon {
    width: 20px;
    display: flex;
    align-items: center;
}
.block-location.dark-red .social .icon svg path {
    fill: var(--cream);
}
.block-location .social {
    margin-top: 30px;
}
.block-location .social .content {
    width: calc(100% - 23px);
    padding-left: 26px;
}
.block-location .social li {
    display: flex;
    margin-bottom: 22px;
}
.block-location .social li p {
    margin: 0px;
}
.block-location .social li a {
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
}
.block-location .social li:nth-child(2) a {
    font-family: var(--font-secondary);
    font-weight: 300;
}
.block-location .social li a:hover {
    color: var(--dark-red);
}
.block-location .social li:first-child {
    align-items: flex-start;
}
.block-location .social li:first-child a {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    text-decoration: underline;
    display: block;
}

.block-location .bg-shape {
    position: absolute;
    width: 100%;
    left: -28%;
    aspect-ratio: 2 / 1.479;
    top: -14px;
}
.block-location .bg-shape svg,
.block-location .bg-shape img {
    width: 100%;
    height: 100%;
}
.block-location .column.column-image .image_block {
    z-index: 1;
    position: relative;
}
.block-location .column.column-image {
    position: relative;
    padding-top: 35px;
}

.block-location .column.column-image .image_block img {
    border-radius: 22px;
    aspect-ratio: 2 / 1.35;
    object-fit: cover;
    width: 100%;
}
.block-location .column .button-group {
    margin-top: 15px;
}
.block-location .wrapper {
    gap: 70px;
}
.block-location.dark-red .social li a:hover {
    text-decoration: underline;
}
.block-location.dark-red .social li:first-child a {
    text-decoration: underline;
}
.block-location.dark-red .social li:first-child a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .block-location .column-content {
        order: 9;
    }

    .block-location .column-image {
        order: 1;
    }

    .block-location .wrapper {
        gap: 50px;
    }
    .block-location .column.column-image {
        position: relative;
        padding-top: 0px;
    }
    .block-location .bg-shape {
        top: -41px;
    }
    .block-location .column.column-image .image_block {
        max-width: 90%;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .block-location .column-image .column.column-image {
        max-width: 90%;
        margin-left: auto;
    }
    .block-location .bg-shape {
        top: -35px;
        aspect-ratio: 2 / 1.3;
        left: -17%;
    }
}

/*-----------------------------------------------------------------------
	Search Page
-----------------------------------------------------------------------*/

.block-search-results .item-post {
    border: 1px solid var(--dark-red);
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
}
.block-search-results .item-post h5 {
    transition: var(--transition);
}
.block-search-results .item-post:hover h5 {
    color: var(--dark-red);
}
