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

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

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

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

    --font-primary: "Roboto", sans-serif;

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

    --mid-grey: #8a8a8a;
    --mid-grey-rgb: 138, 138, 138;

    --light-grey: #eaeaea;
    --light-grey-rgb: 234, 234, 234;

    --dark-grey: #171717;
    --dark-grey-rgb: 23, 23, 23;

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

    --deep-space: #033951;
    --deep-space-rgb: 3, 57, 81;

    --baltic-blue: #09587a;
    --baltic-blue-rgb: 9, 88, 122;

    --pacific-cyan: #2d89a5;
    --pacific-cyan-rgb: 45, 137, 165;

    --pacific-blue: #69bbce;
    --pacific-blue-rgb: 105, 187, 206;

    --parchment-blue: #93dce6;
    --parchment-blue-rgb: 147, 220, 230;

    --azure-mist: #e1f1f3;
    --azure-mist-rgb: 225, 241, 243;

    --ice-blue: #f7f9fb;
    --ice-blue-rgb: 247, 249, 251;

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

    /* --gradient-light-teal: linear-gradient(0deg, #e1f1f3 0%, #e1f1f3 100%); */

    --border-radius-sm: 3px;
    --border-radius-md: 5px;
    --border-radius-lg: 8px;

    --container-xs: 690px;
    --container-sm: 820px;
    --container-md: 1170px;
    --container-lg: 1410px;

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

    --transition: 0.4s ease;
    --transition-anim: 0.8s ease;
}

/* Responsive */

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

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

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

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

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

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

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

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

body.micos-theme:not(.has-clear-menu) {
    padding-top: var(--header-height) !important;
}

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

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

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

/* .micos-theme .container,
.micos-theme .container-xl {
    width: 100%;
} */

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

.micos-theme .grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
}

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

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

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

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

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

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

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

    .micos-theme .grid-col-2 {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

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

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

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

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

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

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

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

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

.micos-theme h1,
.micos-theme h1 *,
.micos-theme .h1,
.micos-theme .h1 * {
    font-size: 65px;
    line-height: 1.1;
    font-weight: 500;
}

.micos-theme h2,
.micos-theme h2 *,
.micos-theme .h2,
.micos-theme .h2 * {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 400;
}

.micos-theme h3,
.micos-theme h3 *,
.micos-theme .h3,
.micos-theme .h3 * {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 600;
}

.micos-theme h4,
.micos-theme h4 *,
.micos-theme .h4,
.micos-theme .h4 * {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
}

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

.micos-theme h6,
.micos-theme h6 *,
.micos-theme .h6,
.micos-theme .h6 * {
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--pacific-blue);
}

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

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

/* Links */

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

.micos-theme a:hover,
.micos-theme a:focus {
    color: var(--pacific-blue);
    text-decoration: none;
}

/* Lists */

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

/* Misc */

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

.micos-theme mark {
    background: none;
}

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

/* Responsive */

@media (max-width: 991px) {
    .micos-theme h1,
    .micos-theme h1 *,
    .micos-theme .h1,
    .micos-theme .h1 * {
        font-size: 55px;
    }

    .micos-theme h2,
    .micos-theme h2 *,
    .micos-theme .h2,
    .micos-theme .h2 * {
        font-size: 40px;
    }

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

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

    .micos-theme h6,
    .micos-theme h6 *,
    .micos-theme .h6,
    .micos-theme .h6 * {
        font-size: 14px;
    }
}

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

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

/* Sizes */

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

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

/* Alignment */

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

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

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

/* Colours */

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

.micos-theme .text-color-white,
.micos-theme
    .text-color-white
    *:not(
        button,
        .button,
        svg *,
        h6,
        h6 *,
        .h6,
        .h6 *,
        [class*="text-color-"],
        [style*="color"],
        form input,
        form select,
        form textarea,
        .gform_validation_errors *,
        .gfield_validation_message,
        .social-icons *
    ) {
    color: var(--white) !important;
    border-color: var(--white);
}

.micos-theme .text-color-pacific-cyan,
.micos-theme
    .text-color-pacific-cyan
    *:not(
        button,
        .button,
        svg *,
        h6,
        h6 *,
        .h6,
        .h6 *,
        [class*="text-color-"],
        [style*="color"],
        form input,
        form select,
        form textarea,
        .gform_validation_errors *,
        .gfield_validation_message,
        .social-icons *
    ) {
    color: var(--pacific-cyan) !important;
    border-color: var(--pacific-cyan);
}

/*-----------------------------------------------------------------------
    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),
.wysiwyg-content .responsive-embed: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: 3px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: var(--black);
}

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

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

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

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

/* Blockquote */

.wysiwyg-content blockquote {
    padding: 40px;
    border-radius: var(--border-radius-md);
    background: var(--azure-mist);
}

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

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

/* Labels */

.micos-theme label,
.micos-theme legend,
.micos-theme .gfield_description,
.micos-theme .gfield_preview {
    display: block !important;
    padding: 0 !important;
    margin: 5px 0 !important;
    color: var(--deep-space);
    font-size: 14px !important;
    line-height: 20px;
    font-weight: 500 !important;
}

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

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

/* Basic Fields */

.micos-theme input:not([type="button"], [type="submit"]),
.micos-theme select,
.micos-theme textarea {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0 !important;
    border: 0;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--mid-grey);
    background: var(--ice-blue);
    padding: 14px 16px !important;
    color: var(--deep-space) !important;
    font-size: 15px;
    line-height: 20px !important;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    transition: none;
    resize: none;
    outline: 0 !important;
}

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

.micos-theme ::placeholder {
    color: var(--mid-grey);
}

/* Select */

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

/* Checkbox & Radio */

.micos-theme input[type="checkbox"],
.micos-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(--mid-grey);
    background: var(--ice-blue);
    box-shadow: none;
    transition: none;
    cursor: pointer;
}

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

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

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

.micos-theme input[type="checkbox"] {
    border-radius: var(--border-radius-md) !important;
}

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

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

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

/*-----------------------------------------------------------------------
    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);
}

.gravity-theme .gform_confirmation_message {
    padding: 15px;
    background: var(--azure-mist);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--pacific-blue);
    color: var(--deep-space) !important;
}

/* 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-weight: 400 !important;
    color: rgba(var(--black-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 {
    background: var(--ice-blue);
    border-color: rgba(var(--mid-grey-rgb), 50%) !important;
    border-width: 2px;
    border-radius: var(--border-radius-lg);
}

.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(--mid-grey-rgb), 50%) !important;
}

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

/* Footer */

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

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

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

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

/* Default Styles */

.micos-theme button:not([class*="fancybox"] *),
.micos-theme button:not([class*="fancybox"] *):hover,
.micos-theme button:not([class*="fancybox"] *):focus,
.micos-theme .button:not([class*="fancybox"] *),
.micos-theme .button:not([class*="fancybox"] *):hover,
.micos-theme .button:not([class*="fancybox"] *):focus {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 !important;
    outline: 0;
    width: auto;
    height: auto;
    min-width: 70px;
    min-height: 0 !important;
    padding: 10px 30px;
    color: var(--deep-space);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 20px !important;
    text-align: center;
    text-decoration: none;
    background: transparent;
    border: 1px solid var(--pacific-blue);
    border-radius: 30px !important;
    transition: var(--transition) all;
    cursor: pointer;
}

.micos-theme .text-color-white button.button-default:not([class*="fancybox"] *),
.micos-theme .text-color-white .button.button-default:not([class*="fancybox"] *),
.micos-theme .text-color-white button.button-default:not([class*="fancybox"] *) svg,
.micos-theme .text-color-white .button.button-default:not([class*="fancybox"] *) svg {
    color: var(--white);
}

/* Additional Styles */

.micos-theme .button.button-white {
    color: var(--deep-space);
    background: var(--white);
    border-color: var(--pacific-blue);
}

.micos-theme .button.button-white,
.micos-theme .button.button-white svg {
    color: var(--deep-space) !important;
}

/* Hover/Focus */

.micos-theme button:not([class*="fancybox"] *):hover,
.micos-theme .button:not([class*="fancybox"] *):hover {
    outline: 0;
    box-shadow: none;
    border-color: var(--pacific-cyan);
    background: var(--pacific-cyan);
}

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

/* Responsive */

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

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

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

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

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

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

.draw-vertical {
    transform-origin: bottom center;
    transform: scaleY(0);
}

.draw-horizontal {
    transform-origin: left center;
    transform: scaleX(0);
}

.animate.site-logo .draw-vertical {
    animation: drawVertical 1s ease forwards;
}

.animate.site-logo .draw-horizontal {
    animation: drawHorizontal 1s ease forwards;
}

@keyframes drawVertical {
    to {
        transform: scaleY(1);
    }
}

@keyframes drawHorizontal {
    to {
        transform: scaleX(1);
    }
}

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

.site-header {
    top: 0;
    width: 100%;
    display: block;
    position: fixed;
    background: var(--white);
    z-index: 2000000002;
    transition: all 0.5s ease-in-out;
}

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

.site-header > div[class*="container"] {
    height: var(--header-height);
}
body.micos-theme.has-clear-menu:not(.is-scrolled-up) .site-header {
    background: transparent;
    box-shadow: none;
}

body.has-clear-menu:not(.is-scrolled-up) .site-header .site-logo svg > path {
    fill: var(--white);
}
body.has-clear-menu:not(.is-scrolled-up) .site-header .site-logo svg rect {
    filter: brightness(45.5);
}
body.has-clear-menu:not(.is-scrolled-up) .site-header .site-logo svg g > path:first-child {
    fill: #2e87a3;
}
body.has-clear-menu:not(.is-scrolled-up) .site-header .site-logo svg g > path:nth-child(2) {
    fill: #6abacd;
}
body.has-clear-menu:not(.is-scrolled-up, ) .site-header .site-logo svg g > path:nth-child(3) {
    fill: #97d2de;
}
body.has-clear-menu:not(.is-scrolled-up) .site-header .site-logo svg g > path:nth-child(4) {
    fill: #bdf3fe;
}

.site-header .site-logo svg rect {
    transition: all 0.1s ease-in-out;
}
.site-header .site-logo svg * {
    transition: var(--transition) all;
}

.is-scroll-down .site-header {
    transform: translateY(-200px);
}
.is-scrolled-up .site-header {
    transform: none;
}
body.micos-theme.has-active-menu .site-header {
    transform: none;
}

/* Main Menu */

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

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

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

.site-header .main-menu ul > li.current-menu-item > a,
.site-header .main-menu ul > li.current-menu-parent > a,
.site-header .main-menu ul li a:hover,
.site-header .main-menu ul li a:focus {
    text-decoration: underline;
}

/* Sub Menu */

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

.site-header .main-menu ul.sub-menu {
    padding: 8px 10px;
    background: var(--white);
    box-shadow: var(--box-shadow);
}

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

.site-header .main-menu ul li .sub-menu-wrap {
    width: 160px;
    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);
}

/* Icon Menu */

.site-header .main-menu *[class*="icon-"] {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-header .main-menu *[class*="icon-"] svg {
    width: 20px;
    height: 20px;
}

/* Hamburger */

.site-header .icon-hamburger.trigger-menu {
    width: 27px;
    height: 21px;
    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: 28px;
    height: 2px;
    background: var(--deep-space);
    transition: var(--transition);
}
.site-header .icon-hamburger span {
    width: 14px;
}
.site-header .icon-hamburger span {
    top: 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;
    transition: var(--transition);
}

.site-header .icon-hamburger span:after {
    content: "";
    bottom: -8px;
    transition-property: bottom, transform;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
    transition: var(--transition);
}
body.micos-theme.has-active-menu {
    overflow: hidden;
}
body.micos-theme.has-active-menu .site-header .icon-hamburger span {
    background: none !important;
}

body.micos-theme.has-active-menu .site-header .icon-hamburger span:before {
    top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.3s;
    background: var(--deep-space) !important;
}

body.micos-theme.has-active-menu .site-header .icon-hamburger span:after {
    bottom: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.3s;
    background: var(--deep-space) !important;
}
body.has-clear-menu:not(.is-scrolled-up) .site-header .icon-hamburger span,
body.has-clear-menu:not(.is-scrolled-up) .site-header .icon-hamburger span:before,
body.has-clear-menu:not(.is-scrolled-up) .site-header .icon-hamburger span:after {
    background: var(--white);
}

/* Responsive Menu */

.site-responsive-menu {
    width: 50%;
    position: fixed;
    bottom: 0;
    right: 0;
    top: 0;
    overflow-y: auto;
    z-index: 9;
    padding-left: 76px;
    transform: translate(100%, 0px);
    transition: var(--transition);
    padding-top: var(--header-height);
}
.has-active-menu .site-responsive-menu {
    transform: translate(0px, 0px);
}
body.micos-theme.admin-bar .site-responsive-menu {
    top: var(--admin-height);
}

.site-responsive-menu div[class*="container"] {
    width: 100%;
    height: 100%;
    padding: 0px;
    opacity: 1;
    transition: var(--transition) all;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 55px;
}

.site-responsive-menu div[class*="container"] .grid-col-2 {
    height: 100%;
}

.site-responsive-menu .col-2 {
    padding-top: calc(var(--header-height) + 50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 50px;
}

.site-responsive-menu .menu-image,
.site-responsive-menu .menu-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.micos-theme .site-responsive-menu .social-icons a {
    border-color: var(--pacific-blue);
    background-color: transparent;
}

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

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

.site-responsive-menu .main-menu {
    margin: 20px 0;
}

.site-responsive-menu .main-menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-responsive-menu .main-menu > ul > li:not(:last-child) {
    margin-bottom: 10px;
}

.site-responsive-menu .main-menu > ul > li > a {
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 57px;
    text-decoration: none;
    display: inline-block;
}

.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(--pacific-blue);
}

/* Responsive Menu: Sub Menu */

.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: 18px;
    height: 18px;
}

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

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

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

.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 (max-width: 991px) {
    .site-header .main-menu ul {
        display: none !important;
    }

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

    .site-responsive-menu div[class*="container"] .grid-col-2 {
        gap: 20px;
    }
}
@media (max-width: 782px) {
    .site-responsive-menu .main-menu > ul > li > a {
        font-size: 40px;
        line-height: 48px;
    }
    .site-responsive-menu .col-1 {
        display: none;
    }
    .site-responsive-menu .col-2 {
        padding-top: calc(var(--header-height) + 0px);
        padding-left: 16px;
    }
    .site-responsive-menu {
        width: 100%;
        padding-left: 16px;
        background-color: var(--ice-blue);
    }
}

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

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

body.micos-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: 5px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

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

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

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

/* Responsive */

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

/*-----------------------------------------------------------------------
    Site Footer
-----------------------------------------------------------------------*/
.site-footer .wysiwyg-content h4 {
    color: var(--white);
}
.site-footer .wysiwyg-content h4 span {
    color: var(--pacific-blue);
}
.site-footer .button.button-default {
    color: var(--white);
}
.site-footer .button.button-default svg {
    color: var(--pacific-cyan);
}
.site-footer {
    position: relative;
    background-color: var(--deep-space);
}
.site-footer:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url("../img/footer-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
.site-footer .address ul {
    margin-top: 23px;
}
.site-footer .address p {
    color: #fff;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 21px !important;
    max-width: 230px;
}
.site-footer .footer-columns {
    gap: 130px;
}
.site-footer .footer-columns .footer-logo {
    display: none;
}
.site-footer .footer-columns .footer-social .social-icons a {
    background-color: transparent;
    border-color: var(--pacific-blue);
}
.site-footer .footer-columns .footer-social .social-icons a:hover {
    background-color: var(--pacific-blue);
}
.site-footer .footer-columns .footer-social .social-icons a svg {
    color: var(--ice-blue);
}
.site-footer .footer-columns .wysiwyg-content {
    min-width: 330px;
}
/* Footer Menu */

.site-footer ul,
.site-footer ul li {
    display: block;
    color: var(--white);
    font-size: 16px !important;
    line-height: 21px !important;
}
.site-footer .footer-contact ul li {
    margin-bottom: 20px;
}
.site-footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px !important;
    line-height: 21px !important;
}
.site-footer h6 {
    margin: 0 0 39px;
    color: #fff;
    font-weight: 600;
    text-transform: none;
}

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

/* Policies */
.site-footer .footer-copyright p,
.site-footer .footer-copyright a {
    color: var(--pacific-blue);
    text-decoration: none;
}
.site-footer .footer-copyright .text-small:last-child {
    text-align: right;
}
.site-footer .footer-copyright a:hover {
    color: var(--white);
}
.site-footer .footer-copyright .footer-logo {
    min-width: 330px;
}
.site-footer .footer-copyright [class*="container-"] {
    gap: 130px;
}
.site-footer .footer-policies {
    margin-right: auto;
    display: flex;
    gap: 20px;
}
.site-footer .footer-columns .address ul li {
    margin-bottom: 5px;
}

@media (max-width: 1400px) {
    .site-footer .footer-columns {
        gap: 40px;
    }
    .site-footer .footer-copyright [class*="container-"] {
        gap: 40px;
    }
}
@media (max-width: 1200px) {
    .site-footer:after {
        width: 60%;
    }
    .site-footer .footer-copyright .footer-logo {
        min-width: auto;
    }
    .site-footer .footer-columns .wysiwyg-content {
        min-width: 260px;
    }
}

@media (max-width: 991px) {
    .site-footer .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    .site-footer:after {
        width: 100%;
    }
    .site-footer .footer-copyright [class*="container-"] {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
    .site-footer .footer-copyright .footer-logo {
        grid-column: span 3 / span 3;
    }
    .site-footer .footer-copyright [class*="container-"] > p {
        grid-row-start: 2;
    }
}

@media (max-width: 782px) {
    .site-footer .footer-copyright .footer-logo {
        display: none;
    }
    .site-footer .footer-columns {
        gap: 32px;
    }
    .site-footer .footer-copyright [class*="container-"] {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .site-footer .footer-copyright [class*="container-"] .text-small:first-of-type {
        width: 100%;
        text-align: center;
    }
    .site-footer .footer-copyright [class*="container-"] > p {
        margin-right: initial;
        gap: 10px;
    }
    .site-footer:after {
        display: none;
    }
    .site-footer .footer-columns .wysiwyg-content {
        min-width: auto;
        grid-column: span 2 / span 2;
    }
    .site-footer h6 {
        font-size: 16px;
        line-height: 21px;
        margin: 0 0 16px;
    }
    .site-footer .footer-columns .footer-logo {
        display: block;
    }
    body.has-active-menu .site-header .site-logo svg > path {
        fill: #0e4868 !important;
    }

    body.has-active-menu .site-header .site-logo svg rect {
        filter: none !important;
    }

    body.has-active-menu .site-header .site-logo svg g > path:first-child {
        fill: #10587a !important;
    }

    body.has-active-menu .site-header .site-logo svg g > path:nth-child(2) {
        fill: #2e87a3 !important;
    }

    body.has-active-menu .site-header .site-logo svg g > path:nth-child(3) {
        fill: #6abacd !important;
    }

    body.has-active-menu .site-header .site-logo svg g > path:nth-child(4) {
        fill: #97d2de !important;
    }
    body.has-active-menu .site-header {
        background-color: var(--ice-blue);
        box-shadow: none;
    }
}
/*-----------------------------------------------------------------------
    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
-----------------------------------------------------------------------*/

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

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

.micos-theme .image-square,
.micos-theme .image-portrait,
.micos-theme .image-landscape {
    background: var(--pacific-blue);
    position: relative;
}

.micos-theme .image-square,
.micos-theme .image-portrait,
.micos-theme .image-landscape,
.micos-theme .image-square img,
.micos-theme .image-portrait img,
.micos-theme .image-landscape img {
    width: 100%;
}

.micos-theme .image-square,
.micos-theme .image-square img {
    /* aspect-ratio: 1 / 1; */
    aspect-ratio: 6 / 5;
    object-fit: cover;
}

.micos-theme .image-portrait,
.micos-theme .image-portrait img {
    aspect-ratio: 11 / 13;
    object-fit: cover;
}

.micos-theme .image-landscape,
.micos-theme .image-landscape img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* Background Elements */

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

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

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

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

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

.micos-theme div[class*="background-"].has-overlay:before {
    content: "";
    background: rgba(var(--black-rgb), 30%);
    pointer-events: none;
    z-index: 9;
}

/* Video Embed */

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

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

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

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

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

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

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

/* Footer */

.micos-theme .swiper-footer {
    width: calc(100% - 30px);
    max-width: var(--container-lg);
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.micos-theme .swiper-footer:has(div[class*="-lock"]) {
    display: none;
}

/* Pagination */

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

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

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

.micos-theme .swiper-pagination-bullets span {
    opacity: 50%;
    width: 12px;
    height: 12px;
    border-radius: 25px !important;
    background: var(--baltic-blue);
}

.micos-theme .swiper-pagination-bullets span.swiper-pagination-bullet-active {
    opacity: 100%;
    width: 30px;
}

.micos-theme .swiper-pagination-progressbar,
.micos-theme .swiper-pagination-progressbar span {
    opacity: 100%;
    margin: 0 !important;
    height: 1px !important;
}

.micos-theme .swiper-pagination-progressbar {
    background: rgba(var(--baltic-blue-rgb), 30%);
}

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

.micos-theme div[style*="--block-background-color: var(--deep-space)"] .swiper-pagination-progressbar,
.micos-theme div[style*="--block-background-color: var(--baltic-blue)"] .swiper-pagination-progressbar {
    background: rgba(var(--white-rgb), 30%);
}

.micos-theme div[style*="--block-background-color: var(--deep-space)"] .swiper-pagination-progressbar span,
.micos-theme div[style*="--block-background-color: var(--baltic-blue)"] .swiper-pagination-progressbar span {
    background: var(--white);
}

/* Navigation */

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

.micos-theme .swiper-navigation div[class*="swiper-nav-"] {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--pacific-cyan);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition) background;
    cursor: pointer;
}

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

.micos-theme .swiper-navigation div[class*="swiper-nav-"]:hover {
    background: var(--pacific-cyan);
}

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

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

/* Responsive */

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

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

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

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

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

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

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

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

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

.micos-theme .social-icons a,
.micos-theme .social-icons div {
    margin: 0;
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azure-mist);
}

.micos-theme .social-icons a:hover,
.micos-theme .social-icons div:hover {
    background-color: var(--pacific-blue);
}

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

.micos-theme .social-icons svg {
    width: 20px;
    height: 20px;
    color: var(--baltic-blue);
}

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

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

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

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

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

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

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

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

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

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

/* Close Button */

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

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

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

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

.micos-theme .archive-pagination a {
    margin: 0 3px;
    font-size: 18px;
    text-align: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--pacific-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 42px;
}

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

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

.micos-theme .post-pagination .pagination-next .button svg {
    transform: rotate(-180deg);
}
.micos-theme .post-pagination {
    justify-content: center;
}
.micos-theme .post-pagination .post-share {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.micos-theme .post-pagination .post-share h6 {
    color: var(--baltic-blue);
}

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

.micos-theme .group-tags,
.micos-theme .group-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Tags */

.micos-theme .group-tags {
    gap: 5px 10px;
}

.micos-theme .group-tags a,
.micos-theme .group-tags span {
    padding: 8px 12px;
    color: var(--deep-space);
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--azure-mist);
    border-radius: var(--border-radius-sm);
}

/* Categories */

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

.micos-theme .group-categories a,
.micos-theme .group-categories span {
    padding: 8px 12px;
    color: var(--white);
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--baltic-blue);
    border-radius: var(--border-radius-sm);
}

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

.micos-theme *[class^="entry-"] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    transition: var(--transition) all;
}

.micos-theme *[class^="entry-"].is-style-list {
    padding: 0 10px;
}

.micos-theme *[class^="entry-"].is-style-list:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--light-grey);
}

.micos-theme *[class^="entry-"] .inner-entry-image.has-hover-zoom {
    overflow: hidden;
}

.micos-theme *[class^="entry-"] .inner-entry-image.has-hover-zoom img {
    transition: var(--transition) transform;
}

.micos-theme *[class^="entry-"]:hover .inner-entry-image.has-hover-zoom img {
    transform: scale(1.1);
}

/* Arrow */

.micos-theme .entry-post .inner-entry-arrow,
.micos-theme .entry-project .inner-entry-arrow {
    margin-top: auto;
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    border: 1px solid var(--pacific-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition) all;
}

.micos-theme .entry-post .inner-entry-arrow svg,
.micos-theme .entry-project .inner-entry-arrow svg {
    width: 16px;
    height: 16px;
    color: var(--baltic-blue);
}

.micos-theme .entry-post:hover .inner-entry-arrow,
.micos-theme .entry-project:hover .inner-entry-arrow {
    background: var(--pacific-cyan);
}

.micos-theme .entry-post:hover .inner-entry-arrow,
.micos-theme .entry-post:hover .inner-entry-arrow svg,
.micos-theme .entry-project:hover .inner-entry-arrow,
.micos-theme .entry-project:hover .inner-entry-arrow svg {
    color: var(--white);
}

/* Grid Item */

.micos-theme .entry-grid-item {
    position: relative;
    padding: 30px 40px;
}

.micos-theme .entry-grid-item:before,
.micos-theme .entry-grid-item:after {
    content: "";
    display: block;
    position: absolute;
    background: var(--light-grey);
    transition: var(--transition-anim) all;
}

.micos-theme .entry-grid-item:before {
    top: 0;
    right: 0;
    width: 1px;
    height: 0;
}

.micos-theme .entry-grid-item.is-visible:before,
.wp-block .micos-theme .entry-grid-item:before {
    height: 100%;
}

.micos-theme .entry-grid-item:after {
    bottom: 0;
    left: -15px;
    width: 0;
    height: 1px;
    display: none;
}

.micos-theme .entry-grid-item.is-visible:after,
.wp-block .micos-theme .entry-grid-item:after {
    width: calc(100% + 30px);
}

.micos-theme .entry-grid-item:first-child {
    padding-left: 0;
}

.micos-theme div[class*="grid-col-"]:has(.entry-grid-item) {
    gap: 30px 0;
}

.micos-theme .grid-col-4 > .entry-grid-item:nth-child(4n) {
    padding-right: 0;
}

.micos-theme .grid-col-4 > .entry-grid-item:nth-child(4n):before {
    display: none;
}

.micos-theme .grid-col-3 > .entry-grid-item:nth-child(3n) {
    padding-right: 0;
}

.micos-theme .grid-col-3 > .entry-grid-item:nth-child(3n):before {
    display: none;
}

/* Responsive */

@media (max-width: 991px) {
    .micos-theme .grid-col-4 > .entry-grid-item:nth-child(2n) {
        padding-right: 0;
    }

    .micos-theme .grid-col-4 > .entry-grid-item:nth-child(2n + 3) {
        padding-left: 0;
    }

    .micos-theme .grid-col-4 > .entry-grid-item:nth-child(2n):before {
        display: none;
    }
}

@media (max-width: 641px) {
    .micos-theme div[class*="grid-col-"]:has(.entry-grid-item) {
        gap: 0;
    }

    .micos-theme .grid-col-4 > .entry-grid-item {
        padding: 30px 20px !important;
    }

    .micos-theme .grid-col-4 > .entry-grid-item:before {
        display: none;
    }

    .micos-theme .grid-col-4 > .entry-grid-item:after {
        display: block;
    }
}

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

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

.micos-theme .inner-block-head {
    margin-bottom: 60px;
    align-items: end;
}

.micos-theme .inner-block-foot {
    margin-top: 60px;
}

/* Responsive */

@media (max-width: 782px) {
    .micos-theme .inner-block-head {
        margin-bottom: 40px;
    }

    .micos-theme .inner-block-foot {
        margin-top: 40px;
    }

    .micos-theme .inner-block-head .col-2 .button-group {
        justify-content: flex-start;
    }
}

/*-----------------------------------------------------------------------
    Block - Empty
-----------------------------------------------------------------------*/

.block-empty p {
    padding: 8px 20px;
    margin: 20px auto;
    width: fit-content;
    background: #f1f1f1;
    font-size: 12px;
    text-align: center;
    font-style: italic;
}

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

/* Responsive */

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

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

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

.block-image .background-parallax {
    position: relative;
    min-height: 280px;
    max-height: 720px;
    height: 50vw;
}

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

.block-image-gallery .masonry-gallery {
    margin: -2px;
}

.block-image-gallery .image-masonry {
    float: left;
    width: calc((100% - 8px) / 3);
    box-sizing: border-box;
    margin-bottom: 4px;
}

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

/* Responsive */

@media (max-width: 782px) {
    .block-image-gallery .image-masonry {
        width: calc((100% - 8px) / 2);
    }
}

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

.block-image-slider .carousel-gallery img {
    width: auto;
    height: 50vw;
    min-height: 330px;
    max-height: 700px;
}

/*-----------------------------------------------------------------------
    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(--black-rgb), 40%);
    opacity: 0;
    transition: var(--transition) opacity;
    pointer-events: none;
    z-index: 999;
}

.block-video .video-wrapper .entry-icon {
    width: 55px;
    height: 55px;
    border: 1px solid var(--white);
    border-radius: 50%;
}

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

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

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

.block-quote > div[class*="block-setting-"]:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    max-width: 400px;
    background-image: url("../img/quote-bg.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    z-index: 1;
}

.block-quote .inner-block-quote,
.block-quote .inner-block-author {
    padding-left: 45px;
    max-width: var(--container-xs);
    margin: auto;
}

.block-quote .inner-block-quote .h3 {
    padding: 80px 0;
    color: var(--pacific-cyan);
}

.block-quote .inner-block-author {
    height: 120px;
}

.block-quote .inner-block-author img {
    width: 60px;
    height: 60px;
    border-radius: 60px;
}

.block-quote div[class*="container-"]:before,
.block-quote div[class*="container-"]:after {
    content: "";
    display: block;
    position: absolute;
    transition: var(--transition-anim) all;
    transition-delay: 0.25s;
    z-index: 1;
}

.block-quote div[class*="container-"]:before {
    left: 20px;
    top: -100%;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--baltic-blue-rgb), 20%) 65%, transparent 100%);
}

.block-quote div[style*="--block-background-color: var(--deep-space)"] div[class*="container-"]:before,
.block-quote div[style*="--block-background-color: var(--baltic-blue)"] div[class*="container-"]:before {
    background: linear-gradient(180deg, transparent 0%, rgba(var(--azure-mist-rgb), 40%) 65%, transparent 100%);
}

.block-quote div[class*="container-"]:after {
    bottom: 120px;
    left: -100%;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--baltic-blue-rgb), 20%) 10%, transparent 100%);
}

.block-quote div[style*="--block-background-color: var(--deep-space)"] div[class*="container-"]:after,
.block-quote div[style*="--block-background-color: var(--baltic-blue)"] div[class*="container-"]:after {
    background: linear-gradient(90deg, transparent 0%, rgba(var(--azure-mist-rgb), 40%) 10%, transparent 100%);
}

.block-quote.is-visible div[class*="container-"]:before,
.wp-block .block-quote div[class*="container-"]:before {
    top: 0;
}

.block-quote.is-visible div[class*="container-"]:after,
.wp-block .block-quote div[class*="container-"]:after {
    left: -30px;
}

/* Responsive */

@media (max-width: 782px) {
    .block-quote.is-visible div[class*="container-"]:before,
    .wp-block .block-quote div[class*="container-"]:before {
        left: 15px;
    }

    .block-quote.is-visible div[class*="container-"]:after,
    .wp-block .block-quote div[class*="container-"]:after {
        left: -15px;
    }
}

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

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

.block-accordion div[class*="container-"] > .flex-layout .col-1 {
    width: calc(50% - 60px);
}

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

/* Entry */

.micos-theme .entry-accordion {
    position: relative;
    padding: 20px 0;
}

.micos-theme .entry-accordion:after,
.micos-theme .entry-accordion:first-child:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--light-grey);
    transition: all 1.2s ease-in-out;
}

.micos-theme .text-color-white .entry-accordion:after,
.micos-theme .text-color-white .entry-accordion:first-child:before {
    opacity: 50%;
}

.micos-theme .entry-accordion:first-child:before {
    bottom: auto;
    top: 0;
}

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

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

.micos-theme .entry-accordion .inner-entry-title h4 {
    flex: 1;
    color: var(--pacific-cyan);
}

.micos-theme .entry-accordion .inner-title-icon {
    width: 20px;
    height: 28px;
    min-width: 20px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.micos-theme .entry-accordion .inner-title-icon svg {
    width: 16px;
    height: 16px;
}

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

.micos-theme .entry-accordion .inner-entry-content {
    display: none;
    padding-right: 45px;
}

/* Responsive */

@media (max-width: 782px) {
    .block-accordion div[class*="container-"] > .flex-layout {
        flex-direction: column;
        gap: 40px;
    }

    .block-accordion div[class*="container-"] > .flex-layout .col-1,
    .block-accordion div[class*="container-"] > .flex-layout .col-2 {
        width: 100%;
        flex: 1;
    }
}

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

.block-hero-banner .swiper-slide {
    min-height: calc(100vh - var(--notice-height));
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

body.micos-theme.admin-bar .block-hero-banner .swiper-slide {
    min-height: calc(100vh - var(--notice-height) - var(--admin-height));
}

.wp-block .block-hero-banner .swiper-slide {
    min-height: 990px;
}

.block-hero-banner .wysiwyg-content {
    max-width: 800px;
    padding-right: 60px;
}

.block-hero-banner .carousel-hero-banner div[class*="background-"].has-overlay:before {
    background: linear-gradient(180deg, var(--deep-space) 0.35%, rgba(var(--dark-grey-rgb), 0) 30%);
}

.block-hero-banner .swiper-footer {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin: auto;
    justify-content: flex-end;
}

.block-hero-banner .swiper-footer .swiper-pagination-bullets span {
    background: var(--azure-mist);
}

/* Responsive */

@media (max-width: 991px) {
    .block-hero-banner .wysiwyg-content {
        max-width: 600px;
    }
}

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

.block-page-banner .wysiwyg-content h4 span {
    color: var(--mid-grey);
}

.block-page-banner .background-parallax {
    position: relative;
    min-height: 280px;
    max-height: 720px;
    height: 50vw;
}

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

.block-call-to-action .background-parallax.has-overlay:before {
    background: linear-gradient(90deg, var(--deep-space) 0%, rgba(var(--deep-space-rgb), 10%) 60%) !important;
}

.block-call-to-action div[class*="container-"] {
    padding: 80px 0 80px 40px;
    min-height: 620px;
}

.block-call-to-action .wysiwyg-content h4 {
    max-width: 460px;
}

.block-call-to-action .wysiwyg-content:first-child {
    padding-bottom: 40px;
}

.block-call-to-action .wysiwyg-content:last-child {
    padding-top: 40px;
}

.block-call-to-action div[class*="container-"]:before,
.block-call-to-action .wysiwyg-content:first-child:before {
    content: "";
    display: block;
    position: absolute;
    transition: var(--transition-anim) all;
    transition-delay: 0.25s;
    z-index: 1;
}

.block-call-to-action div[class*="container-"]:before {
    left: 0;
    top: -100%;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--baltic-blue-rgb), 20%) 50%, transparent 100%);
}

.block-call-to-action.is-visible div[class*="container-"]:before,
.wp-block .block-call-to-action div[class*="container-"]:before {
    top: 0;
}

.block-call-to-action div[style*="--block-background-color: var(--deep-space)"] div[class*="container-"]:before,
.block-call-to-action div[style*="--block-background-color: var(--baltic-blue)"] div[class*="container-"]:before {
    background: linear-gradient(180deg, transparent 0%, rgba(var(--azure-mist-rgb), 40%) 50%, transparent 100%);
}

.block-call-to-action .wysiwyg-content:first-child:before {
    bottom: 0;
    left: -100%;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--baltic-blue-rgb), 20%) 5%, transparent 100%);
}

.block-call-to-action.is-visible .wysiwyg-content:first-child:before,
.wp-block .block-call-to-action .wysiwyg-content:first-child:before {
    left: -80px;
}

.block-call-to-action div[style*="--block-background-color: var(--deep-space)"] .wysiwyg-content:first-child:before,
.block-call-to-action div[style*="--block-background-color: var(--baltic-blue)"] .wysiwyg-content:first-child:before {
    background: linear-gradient(90deg, transparent 0%, rgba(var(--azure-mist-rgb), 40%) 5%, transparent 100%);
}

/*-----------------------------------------------------------------------
    Block - Solutions
-----------------------------------------------------------------------*/

.block-solutions .entry-accordion {
    counter-increment: item;
}

.block-solutions .entry-accordion .inner-entry-title:before {
    content: counter(item, decimal-leading-zero);
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    width: 85px;
    color: rgba(var(--mid-grey-rgb), 50%);
}

.block-solutions .text-color-white .entry-accordion .inner-entry-title:before {
    color: var(--pacific-blue);
}

.block-solutions .entry-accordion .inner-entry-content {
    padding-left: 100px;
}

/* Layout 2 */

.micos-theme .listing-solutions.is-layout-2 .entry-accordion .inner-entry-title:before {
    line-height: 40px;
}

.micos-theme .listing-solutions.is-layout-2 .entry-accordion .inner-title-icon {
    min-width: 42px;
    min-height: 42px;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    border: 1px solid var(--pacific-blue);
}

.micos-theme .listing-solutions.is-layout-2 .entry-accordion.is-active .inner-title-icon svg {
    transform: rotate(180deg);
}

/* Responsive */

@media (min-width: 861px) {
    .block-solutions .listing-solutions.is-layout-1 > .grid-col-2 {
        grid-template-columns: 1.25fr 1fr;
    }
}

@media (max-width: 991px) {
    .block-solutions .entry-accordion .inner-entry-title:before {
        width: 25px;
    }

    .block-solutions .entry-accordion .inner-entry-content {
        padding-left: 40px;
    }
}

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

.block-metrics {
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
}

.block-metrics .listing-metrics {
    gap: 0;
}

/* Entry */

.micos-theme .entry-metric {
    padding-top: 50px;
}

.micos-theme .entry-metric .inner-entry-content span.h2 {
    display: block;
    margin-bottom: 90px;
}

.micos-theme .entry-metric .inner-entry-content span.h2,
.micos-theme .entry-metric .inner-entry-content span.h2 * {
    color: var(--pacific-cyan);
    font-weight: 400;
}

/* Responsive */

@media (max-width: 641px) {
    .micos-theme .entry-metric .inner-entry-content span.h2 {
        margin-bottom: 40px;
    }
}

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

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

/* Entry */

.micos-theme .entry-review {
    height: 100%;
    padding: 35px 35px 25px;
    margin-bottom: 20px;
    background: var(--azure-mist);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(3px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.micos-theme div[style*="--block-background-color: var(--azure-mist)"] .entry-review {
    background: var(--white);
}

.micos-theme .entry-review .toggle-read-more {
    text-decoration: underline;
}

.micos-theme .entry-review .inner-entry-author {
    flex-wrap: nowrap;
    flex: 1;
}

.micos-theme .entry-review .inner-entry-author p {
    color: var(--baltic-blue);
    text-transform: uppercase;
}

.micos-theme .entry-review .inner-entry-author .inner-author-image {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-color: transparent;
}

/* Resposive */

@media (max-width: 782px) {
    .micos-theme .entry-review .inner-entry-image {
        width: 50px;
        height: 50px;
    }

    .micos-theme .entry-review {
        padding: 20px;
    }
}

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

.block-icon-grid {
    border-top: 1px solid var(--light-grey);
}

/* Entry  */

.micos-theme .entry-icon-grid .inner-entry-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 50px;
}

.micos-theme .entry-icon-grid .inner-entry-content > *:not(:last-child) {
    margin-bottom: 8px;
}

/*-----------------------------------------------------------------------
    Block - Project Feed
-----------------------------------------------------------------------*/

.block-project-feed:not(:has(.entry-project-featured)) .swiper-carousel-wrap,
.block-project-feed:not(:has(.entry-project-featured)) .carousel-projects {
    overflow: visible;
}

.micos-theme .listing-projects {
    gap: 30px 0;
}

/* Entry */

.micos-theme .entry-project .inner-entry-image .group-categories {
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 99;
}

.micos-theme .entry-project .inner-entry-content {
    margin-top: 20px;
}

.micos-theme .entry-project.is-style-list .inner-entry-content {
    margin-bottom: 20px;
}

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

.micos-theme .entry-project .inner-entry-content p {
    color: var(--pacific-cyan);
}

.micos-theme .text-color-white .entry-project .inner-entry-content p {
    color: var(--pacific-blue) !important;
}

/* Entry Featured */

.micos-theme .entry-project-featured .grid-col-2 .col-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.micos-theme .entry-project-featured .inner-entry-image {
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    box-shadow: 30px 30px 0 0 var(--pacific-blue);
}

.block-project-feed div[style*="--block-background-color: var(--baltic-blue)"] .entry-project-featured .inner-entry-image {
    box-shadow: 30px 30px 0 0 var(--deep-space);
}

.block-project-feed div[style*="--block-background-color: var(--deep-space)"] .entry-project-featured .inner-entry-image {
    box-shadow: 30px 30px 0 0 var(--baltic-blue);
}

.micos-theme .entry-project-featured .inner-entry-button {
    margin-top: auto;
}

.micos-theme .entry-project-featured .inner-entry-content {
    margin-bottom: 30px;
}

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

/* Responsive */

@media (max-width: 641px) {
    .micos-theme .entry-project:before {
        display: none;
    }
}

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

.block-post-feed .swiper-carousel-wrap,
.block-post-feed .carousel-posts {
    overflow: visible;
}

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

/* Entry */

.micos-theme .entry-post .inner-entry-image .group-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 99;
}

.micos-theme .entry-post .inner-entry-content {
    padding: 15px 0;
    margin-bottom: 90px;
}

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

.block-contact:after {
    content: "";
    display: block;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    background: var(--light-grey);
    transition: var(--transition-anim) all;
}

.block-contact.is-visible:after {
    top: 0;
}

.block-contact:has(.text-color-white):after {
    opacity: 30%;
}

.block-contact .listing-contact-details {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px;
}

/* Entry */

.micos-theme .entry-contact-detail {
    height: auto !important;
}

.micos-theme .entry-contact-detail h6 {
    margin-bottom: 12px;
}

.micos-theme .entry-contact-detail .button-group {
    margin-top: 20px;
}

.micos-theme .entry-contact-detail .inner-entry-content > p:not(:last-child) {
    margin-bottom: 5px !important;
}

.micos-theme .outer-entry-wrap:has(.entry-contact-detail) .entry-contact-detail:not(:last-child) {
    margin-bottom: 30px;
}

/* Responsive */

@media (max-width: 991px) {
    .block-contact:after {
        display: none;
    }
}

@media (max-width: 641px) {
    .block-contact .listing-contact-details {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

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

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

/*-----------------------------------------------------------------------
    Block - Project Listing
-----------------------------------------------------------------------*/

.block-project-listing .project-filter-wrap {
    margin-bottom: 30px;
}

.block-project-listing .project-filter-wrap > h6 {
    margin-bottom: 24px;
    color: var(--baltic-blue);
}

.block-project-listing .project-filter-wrap .button {
    flex: 1;
}

.block-project-listing .inner-filter-option {
    position: relative;
    /* height: 54px; */
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition) all;
}

.block-project-listing .inner-filter-option .inner-option-label,
.block-project-listing .inner-option-select .select-button span {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--mid-grey);
}

.block-project-listing .inner-filter-option .inner-option-label {
    width: 80px;
}

.block-project-listing .inner-option-select .select-button {
    display: flex;
    align-items: center;
    gap: 12px;
}

.block-project-listing .inner-option-select .select-button span {
    color: var(--deep-space);
}

.block-project-listing .inner-option-select .select-button svg {
    width: 10px;
    height: 10px;
    color: var(--deep-space);
}

.block-project-listing .inner-option-select.is-active .select-button svg {
    transform: rotate(180deg);
}

.block-project-listing .inner-option-select ul.select-list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    list-style: none;
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    z-index: 99;
}

.block-project-listing .inner-option-select.is-active ul.select-list {
    display: block;
}

.block-project-listing .inner-option-select ul.select-list li {
    padding: 12px 15px;
    color: var(--deep-space);
    font-size: 15px;
    transition: var(--transition) all;
    cursor: pointer;
}

.block-project-listing .inner-option-select ul.select-list li:hover {
    color: var(--white);
    background: var(--pacific-cyan);
}

/* Responsive */

@media (max-width: 782px) {
    .block-project-listing .inner-option-select {
        flex: 1;
    }
}

/*-----------------------------------------------------------------------
    Block - Project Banner
-----------------------------------------------------------------------*/

.block-project-banner div[class*="block-setting-"] {
    min-height: calc(100vh - var(--notice-height));
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

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

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

.block-project-banner div[class*="background-"].has-overlay:before {
    background: linear-gradient(180deg, var(--deep-space) 0.35%, rgba(var(--dark-grey-rgb), 0) 30%, rgba(var(--dark-grey-rgb), 0) 70%, var(--deep-space) 99.35%);
}

/*-----------------------------------------------------------------------
    Block - Project Details
-----------------------------------------------------------------------*/

/* Entry */

.block-project-details .entry-detail h6 {
    color: var(--baltic-blue);
    margin-bottom: 5px;
}

.block-project-details .entry-detail p {
    color: var(--mid-grey);
}

/* Responsive */

@media (min-width: 781px) {
    .block-project-details .grid-col-2 {
        grid-template-columns: 1fr 1.5fr;
    }
}

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

.block-post-header h1 {
    max-width: var(--container-sm);
}

.block-post-header .image-landscape {
    margin-top: 30px;
}

.block-post-header .image-landscape,
.block-post-header .image-landscape img {
    aspect-ratio: 2 / 1;
}

/*-----------------------------------------------------------------------
    Block - Post Content
-----------------------------------------------------------------------*/

.block-post-content {
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
}

.block-post-content .group-tags {
    position: relative;
    left: inherit;
    top: inherit;
}

.block-post-content .inner-block-wrap .col-sidebar,
.block-post-content .inner-block-wrap .col-main {
    padding: 30px 0;
}

.block-post-content .inner-block-wrap .col-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 380px;
}

.block-post-content .inner-block-wrap .col-main {
    flex: 1;
    border-left: 1px solid var(--light-grey);
    padding-left: 30px;
}

.block-post-content .inner-block-wrap .col-1 h6 {
    color: var(--baltic-blue);
    margin-bottom: 10px;
}

/* Responsive */

@media (max-width: 1201px) {
    .block-post-content .inner-block-wrap .col-sidebar {
        width: 250px;
    }
}

@media (max-width: 782px) {
    .block-post-content .inner-block-wrap .col-sidebar,
    .block-post-content .inner-block-wrap .col-main {
        width: 100%;
        padding-left: 0;
        border: none;
    }

    .block-post-content .inner-block-wrap .col-main {
        border-top: 1px solid var(--light-grey);
    }

    .block-post-content .inner-block-wrap {
        gap: 0;
    }
}

/*-----------------------------------------------------------------------
    Block - Sharing
-----------------------------------------------------------------------*/

.block-sharing .flex-layout > h6 {
    color: var(--baltic-blue);
}
