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

@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Geist:wght@100..900");

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

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

    --font-primary: "Geist", sans-serif;
    --font-secondary: "Geist Mono", monospace;

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

    --cream: #faf3ef;
    --cream-rgb: 250, 243, 239;

    --sand: #f2eae4;
    --sand-rgb: 242, 234, 228;

    --grey: #9e9e9e;
    --grey-rgb: 170, 170, 170;

    --slate-gray: #6b7083;
    --slate-gray-rgb: 107, 112, 131;

    --true-blue: #1db9e6;
    --true-blue-rgb: 29, 185, 230;

    --alice-blue: #a8c3cb;
    --alice-blue-rgb: 168, 195, 203;

    --pale-blue: #d8e7ec;
    --pale-blue-rgb: 216, 231, 236;

    --navy-blue: #2b3042;
    --navy-blue-rgb: 43, 48, 66;

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

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

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

    --container-xs: 620px;
    --container-sm: 950px;
    --container-md: 1200px;
    --container-lg: 1430px;

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

    --transition: 0.4s ease;
}

/* Responsive */

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

@media (max-width: 860px) {
    :root {
        --header-height: 80px;
    }
}

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

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

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

body.dmc-theme,
.editor-styles-wrapper {
    font-optical-sizing: auto;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    color: var(--navy-blue);
    font-family: var(--font-primary) !important;
    font-size: 16px !important;
    line-height: 1.4;
    font-weight: 400;
}

body.dmc-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.dmc-theme.admin-bar,
body.dmc-theme.has-clear-menu {
    padding-top: var(--admin-height) !important;
}

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

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

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

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

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

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

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

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

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

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

/* Visibility */

.dmc-theme .is-desktop-only {
    display: block;
}

.dmc-theme .is-mobile-only {
    display: none;
}

/* Block Settings */

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

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

/* Responsive */

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

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

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

    .dmc-theme .padding-lg,
    .dmc-theme .padding-lg-top {
        padding-top: 40px;
    }

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

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

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

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

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

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

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

    .dmc-theme .is-desktop-only {
        display: none;
    }

    .dmc-theme .is-mobile-only {
        display: block;
    }
}

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

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

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

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

.dmc-theme h1,
.dmc-theme h1 *,
.dmc-theme .h1,
.dmc-theme .h1 * {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 800;
}

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

.dmc-theme h3,
.dmc-theme h3 *,
.dmc-theme .h3,
.dmc-theme .h3 * {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
}

.dmc-theme h4,
.dmc-theme h4 *,
.dmc-theme .h4,
.dmc-theme .h4 * {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.dmc-theme h5,
.dmc-theme h5 *,
.dmc-theme .h5,
.dmc-theme .h5 * {
    font-size: 18px;
}

.dmc-theme h6,
.dmc-theme h6 *,
.dmc-theme .h6,
.dmc-theme .h6 * {
    color: var(--slate-gray);
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dmc-theme h6:before,
.dmc-theme .h6:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url("../img/el-diamond-2.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 8px;
}

.dmc-theme p,
.dmc-theme li {
    font-size: 16px !important;
    line-height: 1.4 !important;
    font-weight: 400;
}

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

/* Links */

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

.dmc-theme a:hover,
.dmc-theme a:focus {
    color: var(--true-blue);
}

/* Lists */

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

/* Misc */

.dmc-theme code {
    padding: 10px;
    color: var(--white);
    background: var(--navy-blue);
}

.dmc-theme mark {
    background: none;
}

.dmc-theme hr {
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(var(--navy-blue-rgb), 10%);
}

/* Responsive */

@media (max-width: 860px) {
    .dmc-theme h1,
    .dmc-theme h1 *,
    .dmc-theme .h1,
    .dmc-theme .h1 * {
        font-size: 46px;
    }

    .dmc-theme h2,
    .dmc-theme h2 *,
    .dmc-theme .h2,
    .dmc-theme .h2 * {
        font-size: 30px;
    }

    .dmc-theme h3,
    .dmc-theme h3 *,
    .dmc-theme .h3,
    .dmc-theme .h3 * {
        font-size: 22px;
    }

    .dmc-theme h4,
    .dmc-theme h4 *,
    .dmc-theme .h4,
    .dmc-theme .h4 * {
        font-size: 20px;
    }

    .dmc-theme h5,
    .dmc-theme h5 *,
    .dmc-theme .h5,
    .dmc-theme .h5 * {
        font-size: 16px;
    }
}

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

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

/* Sizes */

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

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

/* Alignment */

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

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

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

/* Colours */

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

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

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

.dmc-theme .text-white h6:before,
.dmc-theme .text-white .h6:before {
    filter: brightness(3);
}

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

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

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

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

/* Links */

.wysiwyg-content a {
    text-decoration: underline;
}

/* Lists */

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

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

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

.wysiwyg-content ul.list-style-diamond > li:before {
    top: 6px;
    width: 10px;
    height: 10px;
    background: url(../img/list-style-diamond.svg) 50% no-repeat;
    background-size: contain;
}

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

/* Images */

.wysiwyg-content img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100% !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;
}

/* Misc */

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

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

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

/* Labels */

.dmc-theme label,
.dmc-theme legend,
.dmc-theme .gfield_description,
.dmc-theme .gfield_preview {
    display: block !important;
    padding: 0 !important;
    margin: 5px 0 !important;
    color: var(--navy-blue);
    font-size: 16px !important;
    line-height: 1.4;
    font-weight: 600 !important;
}

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

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

/* Basic Fields */

.dmc-theme input:not([type="button"], [type="submit"]),
.dmc-theme select,
.dmc-theme textarea {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0 !important;
    border: 0;
    border-radius: 5px;
    border: 1px solid var(--sand);
    background: var(--sand);
    padding: 15px !important;
    color: var(--slate-gray);
    font-size: 16px;
    line-height: 23px !important;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    transition: none;
    resize: none;
    outline: 0 !important;
}

.dmc-theme textarea {
    min-height: 100px;
    max-height: 135px;
}

.dmc-theme ::placeholder {
    color: var(--slate-gray);
}

/* Select */

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

.dmc-theme select:not([multiple="multiple"]),
.dmc-theme .select2-container .select2-selection {
    background: url(../img/icon-chevron-down.svg) no-repeat;
    background-size: 15px;
    background-position: center right 16px;
    cursor: pointer;
    background-color: var(--sand);
    color: var(--slate-gray);
}

.dmc-theme .select2,
.dmc-theme .select2 * {
    margin: 0;
    padding: 0 !important;
    line-height: 18px !important;
}

.dmc-theme .select2-container .select2-selection {
    margin: 0;
    outline: 0;
    display: block;
    height: auto;
    padding: 14px 16px !important;
    border: 1px solid var(--grey);
    border-radius: 0;
    color: var(--navy-blue);
    font-size: 15px;
    line-height: 18px !important;
    font-weight: 400;
}

.dmc-theme .select2-selection__rendered,
.dmc-theme .select2-selection__placeholder {
    color: var(--navy-blue);
}

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

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

.dmc-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    background: var(--navy-blue);
}

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

/* Checkbox & Radio */

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

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

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

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

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

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

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

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

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

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

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

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

/* Validation */

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

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

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

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

/* Labels & Descriptions */

.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: rgba(var(--navy-blue-rgb), 50%);
}

/* Checkbox & Radio */

.gravity-theme form .gfield--type-choice .gchoice:not(:last-child) {
    margin: 0 0 8px !important;
}

/* Date & Time */

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

.gravity-theme form .gfield--type-time .hour_minute_colon {
    line-height: 48px !important;
}

/* List */

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

/* File Upload */

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

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

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

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

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

/* Product */

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

/* Progress Bar */

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

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

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

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

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

/* Footer */

.gravity-theme form .gform_footer,
.gravity-theme form .gform-page-footer {
    padding: 0 !important;
    margin-top: 25px !important;
    justify-content: center;
}

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

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

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

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

/* Default Styles */

.dmc-theme button,
.dmc-theme button:hover,
.dmc-theme button:focus,
.dmc-theme .button,
.dmc-theme .button:hover,
.dmc-theme .button:focus {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    width: auto;
    min-height: 0 !important;
    text-align: center;
    text-decoration: none;
    background: transparent;
    transition: var(--transition) all;
    cursor: pointer;
}

.dmc-theme button:not(.button-arrow),
.dmc-theme .button:not(.button-arrow),
.dmc-theme .button-arrow .inner-label {
    background: var(--navy-blue);
    padding: 16px 20px;
    color: var(--cream);
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    border-radius: var(--border-radius-lg);
}

.dmc-theme .button-arrow {
    padding-right: 52px;
}

.dmc-theme .button-arrow .inner-label,
.dmc-theme .button-arrow .inner-icon {
    transition: var(--transition) all;
}

.dmc-theme .button-arrow .inner-icon {
    position: absolute;
    left: calc(100% - 52px);
    width: 52px;
    height: 52px;
    border-radius: 52px;
    background: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmc-theme .button-arrow .inner-icon svg {
    color: var(--cream);
}

.dmc-theme .button-arrow:hover .inner-label {
    margin-left: 52px;
}

.dmc-theme .button-arrow:hover .inner-icon {
    left: 0;
    right: inherit;
}

/* Additional Styles */

.dmc-theme .button.button-white:not(.button-arrow),
.dmc-theme .button-arrow.button-white .inner-label,
.dmc-theme .button-arrow.button-white .inner-icon {
    background: var(--white);
}

.dmc-theme .button.button-white:not(.button-arrow),
.dmc-theme .button-arrow.button-white .inner-label,
.dmc-theme .button-arrow.button-white .inner-icon svg {
    color: var(--navy-blue);
}

/* Hover/Focus */

.dmc-theme button:hover,
.dmc-theme button:focus,
.dmc-theme .button:hover,
.dmc-theme .button:focus {
    outline: 0;
    box-shadow: none;
}

/* Underline Link */

.dmc-theme .underline-link {
    position: relative;
    text-decoration: none;
    font-weight: 500;
}

.dmc-theme .underline-link:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(1);
}

.dmc-theme .underline-link:hover:after {
    animation: underline 0.4s ease forwards;
}

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

/* Responsive */

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

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

.site-notice {
    padding: 10px 0;
    background: var(--navy-blue);
    color: var(--white);
}

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

.site-logo,
.site-logo img,
.site-logo svg {
    display: block;
    max-width: 180px;
    max-height: 75px;
    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: 200px;
    max-height: 85px;
}

/* Responsive */

@media (max-width: 860px) {
    .site-header .site-logo,
    .site-header .site-logo img,
    .site-header .site-logo svg {
        max-width: 213px;
        max-height: 55px;
    }
}

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

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

body.dmc-theme:before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    bottom: auto;
    height: 250px;
    background-position: 0 0;
    background-position: 0 100%;
    background: linear-gradient(180deg, var(--navy-blue), transparent);
    transition: var(--transition) opacity;
    pointer-events: none;
    z-index: 2;
    max-height: 22vh;
}

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

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

/* Scrolled State */

body.dmc-theme.is-scrolled .site-header {
    background: var(--navy-blue);
}

body.dmc-theme.is-scrolled:before {
    opacity: 0;
}

/* Main Menu */

.site-header .main-menu,
.site-header .main-menu > ul {
    display: flex;
    gap: 30px;
}

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

.site-header .main-menu ul li a {
    display: block;
    padding: 8px;
    color: var(--cream);
    font-size: 15px;
    font-weight: 600;
}

.site-header .main-menu > ul > li > a:after {
    content: "";
    display: block;
    width: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--cream);
    transition: var(--transition) all;
}

.site-header .main-menu ul > li.current-menu-item > a:after,
.site-header .main-menu ul > li.current-menu-parent > a:after,
.site-header .main-menu ul li a:hover:after,
.site-header .main-menu ul li a:focus:after {
    width: 100%;
}

/* Sub Menu */

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

.site-header .main-menu ul.sub-menu {
    padding: 15px;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: vaR(--border-radius-md);
}

.site-header .main-menu ul.sub-menu li a {
    padding: 5px;
    color: var(--navy-blue);
}

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

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

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

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

/* .site-header .button-group .button.button-white {
    padding-right: 0px;
}

.site-header .button-group .button.button-white:hover .entry-content {
    padding: 16px 20px;
    background-color: var(--pale-blue);
} */

/* Hamburger */

.site-header .icon-hamburger {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 52px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .icon-hamburger span,
.site-header .icon-hamburger span:before,
.site-header .icon-hamburger span:after {
    display: block;
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: var(--navy-blue);
    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: -8px;
    transition-property: top, transform;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

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

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

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

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

/* Responsive Menu */

.site-responsive-menu {
    width: 100%;
    position: fixed;
    inset: 0;
    overflow-y: auto;
    z-index: 0;
    background-color: var(--navy-blue);
}

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

.site-responsive-menu div[class*="container"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 150px 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url(../img/background-shape-3.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--transition) all;
}

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

/* Responsive Menu: Menu */

.site-responsive-menu .main-menu {
    margin: auto;
}

.site-responsive-menu .main-menu ul li a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-responsive-menu .main-menu > ul > li {
    margin: 10px 0;
}

.site-responsive-menu .main-menu > ul > li > a {
    font-size: 30px;
}

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

/* Responsive Menu: Sub Menu */

.site-responsive-menu .main-menu ul li.menu-item-has-children {
    padding-left: 20px;
}

.site-responsive-menu .main-menu ul li .trigger-sub-menu {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-responsive-menu .main-menu ul li .trigger-sub-menu svg {
    width: 14px;
    height: 14px;
}

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

.site-responsive-menu .main-menu ul.sub-menu li {
    margin-bottom: 15px;
}

.site-responsive-menu .main-menu ul.sub-menu li a {
    font-size: 18px;
    font-weight: 600;
}

.site-responsive-menu ul li .sub-menu-wrap {
    display: none;
}

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

/* Responsive */

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

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

@media (max-width: 860px) {
    body.dmc-theme:before {
        height: 200px;
    }

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

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

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

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

    .site-header .main-menu .button-group {
        display: none;
    }
}

@media (max-height: 763px) {
    body.dmc-theme:before {
        height: 140px;
    }
}

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

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

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

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

.site-search .close-search {
    margin-left: 5px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

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

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

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

/* Responsive */

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

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

.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--navy-blue);
    background-image: url(../img/background-shape-3.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    z-index: 1;
}

.site-footer a:hover {
    text-decoration: underline;
    color: var(--true-blue) !important;
}

/* Columns */

.site-footer .footer-columns {
    gap: 40px 60px;
    justify-content: space-between;
}

.site-footer .footer-columns > .col-1 {
    width: 460px;
}

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

.site-footer .site-logo {
    margin-top: 40px;
}

.site-footer .button-group,
.site-footer .social-icons {
    margin-top: 20px;
}

/* Menus */

.site-footer .footer-menus {
    gap: 40px 60px;
    justify-content: flex-end;
}

.site-footer .footer-menus > div[class*="col-"] {
    min-width: 130px;
}

.site-footer .footer-menus h6 {
    color: var(--cream);
    margin-bottom: 15px;
}

.site-footer .footer-menus h6:before {
    display: none;
}

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

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

.site-footer .footer-menus ul li a {
    color: var(--cream);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

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

/* Social Media */

.site-footer .footer-menus .social-icons a {
    border-color: var(--white);
}

.site-footer .footer-menus .social-icons svg {
    color: var(--white);
}

.site-footer .footer-menus .social-icons a:hover {
    background: var(--white);
    border-color: var(--white);
}

.site-footer .footer-menus .social-icons a:hover svg {
    color: var(--navy-blue);
}

/* Copyright */

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

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

.site-footer .footer-copyright p,
.site-footer .footer-copyright p a {
    color: var(--grey);
    font-size: 13px !important;
    text-decoration: none;
}

.site-footer .footer-copyright a:hover {
    color: var(--true-blue);
}

/* Responsive */

@media (min-width: 999px) {
    .site-footer .footer-copyright .col-1 {
        flex: 1;
    }

    .site-footer .footer-copyright .col-1 p:first-child {
        margin-right: auto;
    }
}

@media (max-width: 1000px) {
    .site-footer .footer-columns,
    .site-footer .footer-copyright .col-1 {
        flex-direction: column;
    }

    .site-footer .footer-menus {
        justify-content: flex-start;
    }

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

@media (max-width: 640px) {
    .site-footer .footer-columns > .col-1 {
        width: 100%;
    }

    .site-footer .footer-menus > div[class*="col-"] {
        min-width: 0;
    }
}

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

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

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

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

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

.dmc-theme .image-squarish {
    aspect-ratio: 4 / 3;
}

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

.dmc-theme .image-landscape {
    aspect-ratio: 15 / 8;
}

/* Background Elements */

.dmc-theme .background-image,
.dmc-theme .background-video,
.dmc-theme div[class*="background-"].has-overlay:before {
    position: absolute;
    inset: 0;
}

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

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

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

/* Video Embed */

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

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

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

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

.wp-block .dmc-theme .swiper {
    pointer-events: none;
}

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

.dmc-theme .swiper .swiper-pagination-lock,
.dmc-theme .swiper .swiper-button-lock {
    display: none !important;
}

/* Footer */

.dmc-theme .swiper-footer {
    max-width: var(--container-lg);
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Pagination */

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

.dmc-theme .swiper-pagination span {
    transition: var(--transition) all;
}

.dmc-theme .swiper-pagination-bullets {
    width: fit-content;
}

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

.dmc-theme .swiper-pagination-bullets span.swiper-pagination-bullet-active {
    background: var(--navy-blue);
}

.dmc-theme .swiper-pagination-progressbar,
.dmc-theme .swiper-pagination-progressbar span {
    opacity: 100%;
    margin: 0 !important;
    height: 4px !important;
    background: var(--navy-blue);
}

.dmc-theme .swiper-pagination-progressbar span {
    background: var(--true-blue);
}

.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--navy-blue)"] .swiper-pagination-progressbar {
    background: rgba(var(--sand-rgb), 40%);
}

/* Navigation */

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

.dmc-theme .swiper-navigation div[class*="swiper-nav-"] {
    width: 52px;
    height: 52px;
    border-radius: 52px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition) all;
    cursor: pointer;
}

.dmc-theme .swiper-navigation div[class*="swiper-nav-"] svg {
    width: 20px;
    height: 20px;
    color: var(--navy-blue);
}

.dmc-theme .swiper-navigation div[class*="swiper-nav-"]:hover {
    background: var(--navy-blue);
}

.dmc-theme .swiper-navigation div[class*="swiper-nav-"]:hover svg {
    color: var(--cream);
}

.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--navy-blue)"] .swiper-navigation div[class*="swiper-nav-"]:hover {
    background: var(--slate-gray);
}

.dmc-theme .swiper-navigation .swiper-button-disabled {
    cursor: not-allowed;
    opacity: 50%;
}

/* Responsive */

@media (max-width: 640px) {
    .dmc-theme .swiper-footer .swiper-navigation {
        display: none;
    }
}

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

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

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

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

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

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

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

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

.dmc-theme .social-icons a,
.dmc-theme .social-icons div {
    width: 52px;
    height: 52px;
    border-radius: 52px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--slate-gray);
}

.dmc-theme .social-icons svg {
    width: 20px;
    height: 20px;
    color: var(--slate-gray);
}

.dmc-theme .social-icons a:hover,
.dmc-theme .social-icons div:hover {
    background: var(--navy-blue);
    border-color: var(--navy-blue);
}

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

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

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

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

.dmc-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(--navy-blue) transparent transparent transparent;
}

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

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

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

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

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

/* Containers */

.dmc-theme .popup-overlay > *[class*="container"] {
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
}

.dmc-theme .popup-overlay .inner-popup-wrap {
    margin-right: 52px;
    padding: 30px;
    background: var(--alice-blue);
    border-radius: var(--border-radius-lg);
}

/* Close Button */

.dmc-theme .popup-overlay .close-popup:not(.button) {
    position: absolute;
    right: 0;
    top: 0;
    width: 52px;
    height: 52px;
    background: var(--alice-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 52px;
    transition: var(--transition) background;
}

.dmc-theme .popup-overlay .close-popup:hover {
    background: var(--slate-gray);
}

.dmc-theme .popup-overlay .close-popup:hover svg {
    color: var(--white);
}

/* @media (max-width: 1200px) {
    .dmc-theme .popup-overlay > *[class*="container"] {
        max-width: calc(100% - 150px);
    }
    .dmc-theme .popup-wrap .wysiwyg-content {
        padding-left: 20px;
    }
}

@media (max-width: 860px) {
    .dmc-theme .popup-overlay .popup-inner {
        flex-direction: column;
        gap: 20px;
    }
    .dmc-theme .popup-wrap .wysiwyg-content {
        padding-left: 0px;
    }
}
@media (max-width: 550px) {
    .dmc-theme .popup-overlay .popup-inner {
        padding: 20px;
    }
    .dmc-theme .popup-overlay .popup-inner {
        max-height: 70vh;
    }
    .dmc-theme .popup-wrap .inner-popup-content {
        min-width: 100%;
    }
    .dmc-theme .popup-overlay > *[class*="container"] {
        max-width: calc(100% - 50px);
    }
    .dmc-theme .popup-overlay .close-popup:not(.button) {
        right: 0px;
        top: -38px;
        width: 35px;
        height: 35px;
    }
    .dmc-theme .popup-overlay .close-popup svg {
        width: 15px;
        height: 15px;
    }
} */

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

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

.dmc-theme .archive-pagination a {
    width: 48px;
    height: 48px;
    margin: 0 3px;
    min-width: 0;
    color: var(--navy-blue);
    font-size: 18px;
    line-height: 48px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
}

.dmc-theme .archive-pagination a:hover,
.dmc-theme .archive-pagination a.is-current {
    background-color: var(--true-blue);
    color: var(--white);
}

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

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

.dmc-theme .prev-post a,
.dmc-theme .next-post a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 26px;
    text-decoration: underline;
}

/* responsive */

@media (max-width: 550px) {
    .dmc-theme .prev-post a,
    .dmc-theme .next-post a {
        font-size: 14px;
        line-height: 20px;
    }
    .dmc-theme .prev-post a svg,
    .dmc-theme .next-post a svg {
        width: 10px;
        height: 10px;
    }
}

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

.dmc-theme .group-tags,
.dmc-theme .group-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 10px;
}

/* Tags */

.dmc-theme .group-tags a,
.dmc-theme .group-tags span {
    color: var(--navy-blue);
    font-size: 11px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

/* Categories */

.dmc-theme .group-categories span {
    color: var(--slate-gray);
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

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

.dmc-theme[class*="block-"],
.dmc-theme [class*="block-"] {
    overflow: hidden;
}

.dmc-theme .inner-block-head {
    margin-bottom: 50px;
}

.dmc-theme .inner-block-foot {
    margin-top: 50px;
}

[class*="block-"].has-border-radius,
[class*="block-"].has-border-radius-top,
[class*="block-"].has-border-radius-bot {
    overflow: hidden;
}

[class*="block-"].has-border-radius,
[class*="block-"].has-border-radius-top {
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
}

[class*="block-"].has-border-radius,
[class*="block-"].has-border-radius-bot {
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
}

[class*="block-"].has-background-el > div[class*="block-setting-"] {
    background-image: url(../img/background-shape-3.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

[class*="block-"].has-background-el-2 > div[class*="block-setting-"] {
    background-image: url(../img/background-shape-4.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Responsive */

@media (max-width: 770px) {
    .dmc-theme .inner-block-head {
        margin-bottom: 30px;
    }

    .dmc-theme .inner-block-foot {
        margin-top: 30px;
    }
}

/*-----------------------------------------------------------------------
    Block - Post Header
-----------------------------------------------------------------------*/

.block-post-header .group-tags {
    margin-bottom: 20px;
}

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

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

/* Responsive */

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

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

/*-----------------------------------------------------------------------
    Block - Quote
-----------------------------------------------------------------------*/

.block-quote .block-setting-padding.block-setting-background-colour:before {
    background-image: url(../img/background-shape-5.svg);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
    bottom: 0;
    z-index: 1;
}

.block-quote .block-setting-padding.block-setting-background-colour:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(253deg, var(--cream) -1.32%, var(--alice-blue) 100.7%);
    top: 0;
    left: 0;
}

.block-quote .wysiwyg-content h3 {
    margin-bottom: 54px !important;
}

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

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

.block-image-gallery .swiper-footer {
    padding: 0px 20px;
}

.block-image-gallery .image-caption {
    margin-top: 12px;
}

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

.block-video .video-wrapper {
    position: relative;
}

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

.block-video .video-wrapper .toggle-pause-play,
.block-video .video-wrapper .toggle-pause-play svg {
    color: var(--white);
}

.block-video .video-wrapper .toggle-pause-play {
    display: block;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--navy-blue-rgb), 40%);
    opacity: 0;
    transition: var(--transition) opacity;
    pointer-events: none;
    z-index: 999;
}

.block-video .video-wrapper .toggle-pause-play svg {
    width: 50px;
    height: 50px;
}

.block-video .video-wrapper.is-paused .toggle-pause-play {
    opacity: 1;
}

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

.block-hero-banner > div[class*="block-setting-"] {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

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

.wp-block .block-hero-banner > div[class*="block-setting-"] {
    min-height: 990px;
}

.block-hero-banner div[class*="container-"] {
    z-index: 99;
}

.block-hero-banner .inner-block-title {
    max-width: 545px;
}

.block-hero-banner .inner-block-content {
    max-width: 500px;
    margin-left: auto;
    margin-top: 180px;
}

/* Responsive */

@media (max-width: 860px) {
    .block-hero-banner .inner-block-title {
        margin-top: 80px;
    }

    .block-hero-banner .inner-block-content {
        max-width: 100%;
    }

    .block-hero-banner > div[class*="block-setting-"] {
        align-items: initial;
    }

    .block-hero-banner [class*="container-"] {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 50px;
    }

    .block-hero-banner .inner-block-content {
        margin-top: 0px;
    }
}

/*-----------------------------------------------------------------------
    Block - Call to Action
-----------------------------------------------------------------------*/

.block-call-to-action .wysiwyg-content {
    max-width: 580px;
    background: rgba(vaR(--navy-blue-rgb), 90%);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    padding: 30px;
}

.block-call-to-action .wysiwyg-content .button-group {
    margin-top: 35px;
}

/*-----------------------------------------------------------------------
    Block - Metrics
-----------------------------------------------------------------------*/

/* Entry */

.dmc-theme .entry-metric .inner-entry-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(180deg, rgba(var(--true-blue-rgb), 90%), transparent);
    padding: 20px 25px 30px;
    backdrop-filter: blur(15px);
    border-top-right-radius: var(--border-radius-lg);
}

.dmc-theme .entry-metric .inner-entry-number {
    font-size: 90px;
    letter-spacing: -0.05em;
    font-weight: 300;
    line-height: normal;
}

.dmc-theme .listing-metrics .entry-metric:nth-child(2) .inner-entry-wrap {
    min-height: 430px;
}

.dmc-theme .listing-metrics .entry-metric:nth-child(3) .inner-entry-wrap {
    min-height: 360px;
}

.dmc-theme .listing-metrics .entry-metric:nth-child(4) .inner-entry-wrap {
    min-height: 280px;
}

/* Responsive */

@media (max-width: 1200px) {
    .dmc-theme .entry-metric .inner-entry-wrap {
        min-height: 340px !important;
    }

    .dmc-theme .entry-metric .inner-entry-number {
        font-size: 60px;
    }

    .dmc-theme .listing-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .dmc-theme .entry-metric {
        min-height: 200px;
        height: 100% !important;
    }

    .dmc-theme .entry-metric .inner-entry-wrap {
        height: 100%;
        min-height: 0 !important;
    }
}

@media (max-width: 640px) {
    .dmc-theme .listing-metrics {
        grid-template-columns: repeat(1, 1fr);
    }

    .dmc-theme .block-setting-padding {
        background-position: 100% 24%;
    }
}

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

/* Entry */

.dmc-theme .entry-grid-item {
    padding: 25px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--cream), var(--alice-blue));
    border-radius: var(--border-radius-lg);
}

.dmc-theme .entry-grid-item .inner-entry-icon {
    max-width: 52px;
    max-height: 52px;
    margin-bottom: 100px;
}

.dmc-theme .entry-grid-item .inner-entry-content > * {
    margin-top: 5px;
}

/* Responsive */

@media (max-width: 640px) {
    .dmc-theme .entry-grid-item .inner-entry-icon {
        margin-bottom: 30px;
    }
}

/*-----------------------------------------------------------------------
    Block - Quick Links
-----------------------------------------------------------------------*/

.block-quick-links .col-image img {
    border-radius: var(--border-radius-lg);
}

.block-quick-links .listing-quick-links {
    gap: 10px;
}

/* Entry */

.dmc-theme .entry-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
    padding: 8px 9px 8px 29px;
    border-radius: 60px;
    text-decoration: none;
    transition: var(--transition);
}

.dmc-theme .entry-quick-link .inner-entry-icon {
    width: 52px;
    height: 52px;
    background: var(--pale-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 52px;
    transition: var(--transition) background;
}

.dmc-theme .entry-quick-link .inner-entry-icon svg {
    color: var(--navy-blue);
}

.dmc-theme .entry-quick-link:hover {
    background: var(--sand);
}

.dmc-theme .entry-quick-link:hover .inner-entry-icon {
    background: var(--navy-blue);
}

.dmc-theme .entry-quick-link:hover .inner-entry-icon svg {
    color: var(--cream);
}

.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--cream)"] .entry-quick-link:not(:hover),
.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--sand)"] .entry-quick-link:hover {
    background: var(--white);
}

/* Responsive */

@media (max-width: 860px) {
    .block-quick-links .col-image {
        order: 9;
    }
}

/*-----------------------------------------------------------------------
    Block - Team
-----------------------------------------------------------------------*/

/* .block-team .listing-team {
    gap: 40px 20px;
} */

/* Entry */

.dmc-theme .entry-team .inner-entry-image {
    overflow: hidden;
    border-radius: var(--border-radius-lg) 0 var(--border-radius-lg) 0;
    transition: var(--transition) border-radius;
}

.dmc-theme .entry-team:hover .inner-entry-image {
    border-radius: var(--border-radius-lg);
}

.dmc-theme .entry-team .inner-entry-image .background-image {
    transition: var(--transition) transform;
}

.dmc-theme .entry-team:hover .inner-entry-image .background-image {
    transform: scale(105%);
}

.dmc-theme .entry-team .inner-entry-icon {
    width: 52px;
    height: 52px;
    border-radius: 52px;
    background: var(--pale-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmc-theme .entry-team .inner-entry-icon,
.dmc-theme .entry-team .inner-entry-content {
    position: absolute;
    bottom: 15px;
}

.dmc-theme .entry-team .inner-entry-icon {
    right: 15px;
}

.dmc-theme .entry-team .inner-entry-content {
    left: 15px;
    right: 80px;
}

.dmc-theme .entry-team .background-image:after,
.dmc-theme .entry-team .background-image:before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, var(--navy-blue));
    transition: var(--transition) opacity;
}

.dmc-theme .entry-team .background-image:before {
    background: linear-gradient(180deg, rgba(var(--navy-blue-rgb), 30%), var(--navy-blue));
}

.dmc-theme .entry-team .background-image:before,
.dmc-theme .entry-team:hover .background-image:after {
    opacity: 0;
}

.dmc-theme .entry-team:hover .background-image:before {
    opacity: 1;
}

/* Popup */

.dmc-theme div[id*="popup-team-"] .grid-col-2 {
    grid-template-columns: 340px 1fr;
    gap: 40px;
}

.dmc-theme div[id*="popup-team-"] .image-portrait {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.dmc-theme div[id*="popup-team-"] .social-icons a {
    border-color: var(--white);
}

.dmc-theme div[id*="popup-team-"] .social-icons svg {
    color: var(--white);
}

.dmc-theme div[id*="popup-team-"] .social-icons a:hover {
    background: var(--white);
    border-color: var(--white);
}

.dmc-theme div[id*="popup-team-"] .social-icons a:hover svg {
    color: var(--navy-blue);
}

/* Responsive */

@media (max-width: 860px) {
    .dmc-theme div[id*="popup-team-"] .grid-col-2 {
        grid-template-columns: 1fr;
    }
}

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

.dmc-theme .entry-service {
    overflow: hidden;
    background: var(--pale-blue);
    border-radius: var(--border-radius-lg) 0 var(--border-radius-lg) 0;
}

.dmc-theme .entry-service:hover {
    background: var(--alice-blue);
    border-radius: var(--border-radius-lg);
}

.dmc-theme .entry-service:hover .button-arrow {
    padding-right: 0;
}

.dmc-theme .entry-service:hover .button-arrow .inner-label {
    padding-left: 52px;
}

.dmc-theme .entry-service:hover .button-arrow .inner-icon {
    left: 0;
    right: inherit;
}

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

.dmc-theme .entry-service .inner-entry-content {
    gap: 10px;
    padding: 30px;
}

.dmc-theme .entry-service .button-group {
    margin-top: auto;
}

.dmc-theme .entry-service .button-group .button {
    margin-top: 15px;
}

.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--pale-blue)"] .listing-services .entry-service {
    background: rgba(var(--alice-blue-rgb), 50%);
}

.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--pale-blue)"] .listing-services .entry-service:hover {
    background: var(--alice-blue);
}

/* Responsive */

@media (max-width: 640px) {
    .listing-services .entry-service .inner-entry-content {
        padding: 20px;
    }
}

/*-----------------------------------------------------------------------
    Block - Projects
-----------------------------------------------------------------------*/

.block-project-list {
    padding: 50px 0px 60px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    margin-top: -80px;
    background-color: var(--cream);
    position: relative;
}
.block-project-list .project-sector {
    max-width: 343px;
    margin-bottom: 35px;
}

.block-project-list .project-sector select {
    border-width: 0px 0px 1px 0px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px !important;
    color: var(--navy-blue);
    letter-spacing: 0.54px;
    text-transform: uppercase;
    padding: 20px 0px !important;
    background-position: center right 0px;
    border-color: var(--navy-blue);
    background-color: transparent;
    border-radius: 0px;
}

/* Entry */

.dmc-theme .entry-project {
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
}

.dmc-theme .entry-project .inner-entry-image {
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.dmc-theme .entry-project .inner-entry-image .background-image {
    transition: var(--transition) transform;
}

.dmc-theme .entry-project:hover .inner-entry-image .background-image {
    transform: scale(105%);
}

.dmc-theme .entry-project .inner-entry-meta,
.dmc-theme .entry-project .inner-entry-content {
    padding: 15px 0;
}

.dmc-theme .entry-project .inner-entry-meta {
    gap: 20px;
    flex-wrap: nowrap;
    border-bottom: 1px solid rgba(var(--navy-blue-rgb), 10%);
}

.dmc-theme .entry-project .inner-entry-content > *:not(:last-child) {
    margin-bottom: 10px;
}

.dmc-theme .entry-project .inner-entry-content p {
    color: var(--slate-gray);
}

/* Entry Slide */

.dmc-theme .entry-project-slide {
    background: var(--navy-blue);
    padding: 60px 30px 40px;
    border-radius: var(--border-radius-lg);
    min-height: 570px;
    height: 100%;
    overflow: hidden;
}

.dmc-theme .entry-project-slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 260px;
    height: 100%;
    aspect-ratio: 1 / 1;
    background: url(../img/background-shape-1.svg) 50% no-repeat;
    background-size: contain;
}

.dmc-theme .entry-project-slide .inner-entry-content {
    width: 440px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.dmc-theme .entry-project-slide img.inner-entry-image {
    width: calc(100% - 540px);
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    mask-image: url(../img/el-mask-1.svg);
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center left;
    object-fit: cover;
    z-index: 99;
}

.dmc-theme .entry-project-slide .group-sectors {
    margin-top: auto;
}

.dmc-theme .entry-project-slide .group-sectors a,
.dmc-theme .entry-project-slide .group-sectors span {
    font-size: 14px;
}

.dmc-theme .entry-project-slide .button-group {
    margin-top: 20px;
}

/* Responsive */

@media (max-width: 1020px) {
    .dmc-theme .entry-project-slide:before {
        left: 110px;
    }

    .dmc-theme .entry-project-slide .inner-entry-content {
        width: 380px;
        height: auto;
    }

    .dmc-theme .entry-project-slide img.inner-entry-image {
        width: calc(100% - 400px);
    }
}

@media (max-width: 770px) {
    .dmc-theme .entry-project-slide {
        padding: 0;
    }

    .dmc-theme .entry-project-slide:before {
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        bottom: 40vw;
        background: url(../img/background-shape-2.svg) 50% no-repeat;
        background-size: contain;
    }

    .dmc-theme .entry-project-slide .inner-entry-content {
        width: 100%;
        padding: 30px 15px;
    }

    .dmc-theme .entry-project-slide img.inner-entry-image {
        position: relative;
        width: 100%;
        height: 80vw;
        margin: auto;
        mask-image: url(../img/el-mask-2.svg);
        mask-repeat: no-repeat;
        mask-size: cover;
        mask-position: top;
        object-fit: cover;
        z-index: 99;
    }
}

@media (max-width: 550px) {
    .block-projects .button-group {
        margin-top: 40px;
    }
}

/*-----------------------------------------------------------------------
    Block - List Column
-----------------------------------------------------------------------*/

.block-list-column .col-list {
    padding: 30px;
    background: var(--sand);
    border-radius: var(--border-radius-lg);
}

.block-list-column div[class*="block-setting-"][style*="--block-background-colour: var(--sand)"] .col-list,
.block-list-column div[class*="block-setting-"][style*="--block-background-colour: var(--pale-blue)"] .col-list {
    background: var(--white);
}

.block-list-column .col-list h4 {
    margin-bottom: 20px;
}

.block-list-column .col-list .h6 {
    display: block;
    font-size: 18px !important;
    padding-top: 12px;
    padding-bottom: 12px;
    color: var(--navy-blue);
    border-top: 1px solid rgba(vaR(--navy-blue-rgb), 10%);
}

.block-list-column .col-list .h6:before {
    width: 10px;
    height: 12px;
    background-image: url(../img/el-diamond.svg);
    margin-right: 10px;
}

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

.block-accordion div[class*="container-"] {
    padding: 70px 60px;
    border-radius: var(--border-radius-lg);
    background: var(--white);
}

.block-accordion > div[class*="block-setting-"][style*="--block-background-colour: var(--white)"] div[class*="container-"] {
    background: var(--cream);
}

.block-accordion div[class*="container-"] > .flex-layout {
    gap: 80px;
}

.block-accordion div[class*="container-"] .col-content {
    width: 45%;
}

.block-accordion div[class*="container-"] .col-accordion {
    flex: 1;
}

/* Entry */

.dmc-theme .entry-accordion {
    padding: 15px 0px;
    border-top: 1px solid rgba(var(--navy-blue-rgb), 10%);
}

.dmc-theme .entry-accordion:last-child {
    border-bottom: 1px solid rgba(var(--navy-blue-rgb), 10%);
}

.dmc-theme .entry-accordion .inner-entry-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
}

.dmc-theme .entry-accordion .inner-entry-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    border-radius: 52px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--navy-blue)"] .entry-accordion .inner-entry-title .entry-icon svg path {
    stroke: var(--navy-blue) !important;
}
.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--pale-blue)"] .entry-accordion .inner-entry-title .entry-icon {
    background-color: var(--navy-blue);
}
.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--pale-blue)"] .entry-accordion .inner-entry-title .entry-icon svg {
    color: var(--white);
}

@media (max-width: 770px) {
    .block-accordion *[class*="container-"] {
        padding: 40px;
    }
}

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

.block-reviews {
    overflow: hidden;
}

.block-reviews .swiper-carousel-wrap,
.block-reviews .swiper {
    overflow: visible;
}

/* Entry */

.dmc-theme .entry-review {
    width: 400px;
    height: 100%;
}

.dmc-theme .entry-review .inner-entry-wrap {
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    min-height: 275px;
}

.dmc-theme .entry-review .inner-entry-meta {
    margin-bottom: 20px;
    justify-content: space-between;
}

.dmc-theme .entry-review .inner-entry-meta .review-source svg {
    width: 22px;
    height: 22px;
}

.dmc-theme .entry-review .inner-entry-author img {
    width: 85px;
    height: 85px;
    border-radius: 85px;
    border: 4px solid var(--white);
}

.dmc-theme .entry-review .review-rating svg {
    height: 20px;
    width: auto;
    color: #ffd631;
}

.dmc-theme .entry-review .review-rating.is-4-star svg path:nth-child(n + 5),
.dmc-theme .entry-review .review-rating.is-3-star svg path:nth-child(n + 4),
.dmc-theme .entry-review .review-rating.is-2-star svg path:nth-child(n + 3),
.dmc-theme .entry-review .review-rating.is-1-star svg path:nth-child(n + 2) {
    opacity: 25%;
}

.dmc-theme .entry-review .review-source svg {
    width: 20px;
    height: 20px;
}

.dmc-theme .entry-review .toggle-read-more {
    display: inline-block;
    margin-top: 5px;
    text-decoration: underline;
}

.dmc-theme .entry-review .inner-entry-author {
    margin-top: 25px;
}

.dmc-theme .entry-review .inner-entry-image {
    width: 60px;
    height: 60px;
    border-radius: 60px;
}

.dmc-theme div[class*="block-setting-"][style*="--block-background-colour: var(--white)"] .entry-review .inner-entry-wrap {
    background-color: var(--cream);
}

/* Responsive */

@media (max-width: 640px) {
    .dmc-theme .entry-review {
        width: auto;
    }
}

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

.block-logo-slider .carousel-logos .swiper-wrapper {
    transition-timing-function: linear !important;
}

.block-logo-slider .carousel-logos img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    padding: 20px;
    mix-blend-mode: multiply;
}

.block-logo-slider .carousel-logos .swiper-slide {
    width: 220px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    border-radius: var(--border-radius-md);
}

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

.block-contact .col-form {
    background: var(--white);
    padding: 35px 50px;
    border-radius: var(--border-radius-md);
}

.block-contact div[class*="block-setting-"][style*="--block-background-colour: var(--white)"] .col-form {
    background: var(--cream);
}

.block-contact .col-form > h4 {
    margin-bottom: 25px;
}

/* Entry */

.dmc-theme .entry-contact-detail:first-of-type {
    margin-top: 70px;
}

.block-contact .col-1 .social-icons {
    margin-top: 30px;
}

.dmc-theme .entry-contact-detail {
    margin-bottom: 20px !important;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(var(--navy-blue-rgb), 10%);
}

.dmc-theme .entry-contact-detail .inner-entry-content > *:not(:last-child) {
    margin: 0 0 10px !important;
}

.dmc-theme .entry-contact-detail .inner-entry-content h6:before {
    display: none;
}

/* Responsive */

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

@media (max-width: 860px) {
    .block-contact .col-form {
        padding: 25px;
    }

    .dmc-theme .entry-contact-detail:first-of-type {
        margin-top: 40px !important;
    }
}

/*-----------------------------------------------------------------------
    Block - Post Header
-----------------------------------------------------------------------*/

.block-post-header {
    min-height: 800px;
    display: flex;
}

.block-post-header [class*="block-"] {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

/* Responsive */

@media (max-width: 550px) {
    .block-post-header {
        min-height: 600px;
    }
}

/*-----------------------------------------------------------------------
    Block - Project info
-----------------------------------------------------------------------*/

.block-project-info .inner-project-content {
    padding-left: 15px;
    border-left: 1px solid rgba(var(--navy-blue-rgb), 10%);
}

.block-project-info .inner-project-content h5 {
    max-width: 292px;
}

.block-project-info .inner-project-content .block-project-info .inner-project-content h5 {
    max-width: 290px;
}

.block-project-info .project-overiew {
    border-radius: var(--border-radius-lg);
    background-color: var(--pale-blue);
    margin-top: 50px;
    padding: 40px 35px;
}

.block-project-info .project-scope {
    padding-top: 50px;
}

.block-project-info .project-scope .wysiwyg-content ul li {
    padding-top: 11px;
    border-top: 1px solid rgba(var(--navy-blue-rgb), 10%);
    padding-bottom: 11px;
}

.block-project-info .project-scope .wysiwyg-content ul > li:before {
    top: 18px;
}

.block-project-info {
    border-radius: var(--border-radius-lg);
}

.block-project-info .block-setting-background-colour:after {
    content: "";
    width: 700px;
    height: 400px;
    position: absolute;
    background-image: url(../img/background-shape-4.svg);
    background-size: 230%;
    background-repeat: no-repeat;
    background-position: 40% 19%;
    bottom: 0;
}

.block-project-info div[class*="block-setting-"][style*="--block-background-colour: var(--pale-blue)"] .project-overiew {
    background-color: var(--white);
}
