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

@font-face {
    font-family: "SF Pro Display";
    font-weight: 400;
    font-style: normal;
    src: url(../font/SF-Pro-Display-Regular.otf);
}

@font-face {
    font-family: "SF Pro Display";
    font-weight: 400;
    font-style: italic;
    src: url(../font/SF-Pro-Display-RegularItalic.otf);
}

@font-face {
    font-family: "SF Pro Display";
    font-weight: 500;
    font-style: normal;
    src: url(../font/SF-Pro-Display-Medium.otf);
}

@font-face {
    font-family: "SF Pro Display";
    font-weight: 500;
    font-style: italic;
    src: url(../font/SF-Pro-Display-MediumItalic.otf);
}

@font-face {
    font-family: "SF Pro Display";
    font-weight: 600;
    font-style: normal;
    src: url(../font/SF-Pro-Display-Semibold.otf);
}

@font-face {
    font-family: "SF Pro Display";
    font-weight: 600;
    font-style: italic;
    src: url(../font/SF-Pro-Display-SemiboldItalic.otf);
}

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

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

    --font-primary: "SF Pro Display", sans-serif;

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

    --light-grey: #f7f7f7;
    --light-grey-rgb: 247, 247, 247;

    --grey: #606060;
    --grey-rgb: 96, 96, 96;

    --navy: #192e43;
    --navy-rgb: 25, 46, 67;

    --teal: #16a8a9;
    --teal-rgb: 22, 168, 169;

    --true-blue: #177fbd;
    --true-blue-rgb: 23, 127, 189;

    --sky-blue: #ebf6f7;
    --sky-blue-rgb: 235, 246, 247;

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

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

    --container-xs: 560px;
    --container-sm: 820px;
    --container-md: 1080px;
    --container-lg: 1180px;

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

    --transition: 0.25s ease;
}

/* Responsive */

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

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

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

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

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

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

body.actpras-theme,
.editor-styles-wrapper {
    background: var(--white);
}

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

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

/* Containers */

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

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

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

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

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

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

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

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

@media (min-width: 990px) {
    .actpras-theme .flex-layout.has-sidebar {
        gap: 60px;
    }

    .actpras-theme .flex-layout.has-sidebar .flex-sidebar {
        width: 350px;
    }

    .actpras-theme .flex-layout.has-sidebar .flex-main {
        flex: 1;
    }
}

@media (max-width: 990px) {
    .actpras-theme .flex-layout.has-sidebar {
        gap: 40px;
    }

    .actpras-theme .flex-sidebar {
        flex: 1;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.actpras-theme h1,
.actpras-theme h1 *,
.actpras-theme .h1,
.actpras-theme .h1 * {
    font-size: 62px;
    line-height: 64px;
    font-weight: 500;
}

.actpras-theme h2,
.actpras-theme h2 *,
.actpras-theme .h2,
.actpras-theme .h2 * {
    font-size: 50px;
    line-height: 52px;
    font-weight: 500;
}

.actpras-theme h3,
.actpras-theme h3 *,
.actpras-theme .h3,
.actpras-theme .h3 * {
    font-size: 40px;
    line-height: 42px;
    font-weight: 500;
}

.actpras-theme h4,
.actpras-theme h4 *,
.actpras-theme .h4,
.actpras-theme .h4 * {
    font-size: 30px;
    line-height: 34px;
    font-weight: 500;
}

.actpras-theme h5,
.actpras-theme h5 *,
.actpras-theme .h5,
.actpras-theme .h5 * {
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.actpras-theme h5 strong,
.actpras-theme .h5 strong {
    font-weight: 500 !important;
}

.actpras-theme h6,
.actpras-theme h6 *,
.actpras-theme .h6,
.actpras-theme .h6 * {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.actpras-theme p,
.actpras-theme li {
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400;
    letter-spacing: 0.02em;
}

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

/* Links */

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

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

/* Lists */

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

/* Misc */

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

.actpras-theme mark {
    background: none;
}

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

/* Responsive */

@media (max-width: 860px) {
    .actpras-theme h1,
    .actpras-theme h1 *,
    .actpras-theme .h1,
    .actpras-theme .h1 * {
        font-size: 50px;
        line-height: 52px;
    }
}

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

    .actpras-theme h1,
    .actpras-theme h1 *,
    .actpras-theme .h1,
    .actpras-theme .h1 * {
        font-size: 44px;
        line-height: 46px;
    }

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

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

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

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

@media (max-width: 640px) {
    .actpras-theme h1,
    .actpras-theme h1 *,
    .actpras-theme .h1,
    .actpras-theme .h1 *,
    .actpras-theme h2,
    .actpras-theme h2 *,
    .actpras-theme .h2,
    .actpras-theme .h2 * {
        font-size: 30px;
        line-height: 34px;
    }

    .actpras-theme h3,
    .actpras-theme h3 *,
    .actpras-theme .h3,
    .actpras-theme .h3 * {
        font-size: 24px;
        line-height: 28px;
    }

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

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

/* Sizes */

.actpras-theme .text-small,
.actpras-theme .text-small * {
    font-size: 14px !important;
    line-height: 20px !important;
}

.actpras-theme .text-sub,
.actpras-theme .text-sub * {
    font-size: 12px !important;
    line-height: 16px !important;
}

/* Alignment */

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

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

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

/* Colours */

.actpras-theme .text-muted {
    opacity: 60%;
}

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

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

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

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

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

.wysiwyg-content h5,
.wysiwyg-content p,
.wysiwyg-content li {
    color: var(--grey);
}

.wysiwyg-content h6 {
    color: var(--teal);
}

.wysiwyg-content .button-group {
    margin-top: 35px;
}

/* Links */

.wysiwyg-content h5 a,
.wysiwyg-content p a,
.wysiwyg-content li a,
.wysiwyg-content span a {
    color: inherit;
    text-decoration: underline;
}
.wysiwyg-content h5 a:hover,
.wysiwyg-content p a:hover,
.wysiwyg-content li a:hover,
.wysiwyg-content span a:hover {
    color: var(--teal);
}

/* Lists */

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

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

.wysiwyg-content ul ul,
.wysiwyg-content ul ol,
.wysiwyg-content ol ol,
.wysiwyg-content ol ul,
.wysiwyg-content ul li {
    padding-left: 25px;
}

.wysiwyg-content ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background: var(--teal);
    outline: 1px solid rgba(var(--teal-rgb), 40%);
    outline-offset: 1px;
}

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

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

.wysiwyg-content ul.list-style-checkmark-alt li:before {
    background: url(../img/icon-checkmark-alt.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;
    margin-right: 4px;
}

/* Blockquote */

.wysiwyg-content blockquote {
    position: relative;
    padding: 40px;
    padding-top: 80px;
    max-width: 640px;
    margin-left: auto !important;
    margin-right: auto !important;
    background: var(--sky-blue);
    border-radius: 2px;
}

.wysiwyg-content blockquote:before {
    content: "";
    display: block;
    position: absolute;
    left: 40px;
    top: 40px;
    width: 22px;
    height: 22px;
    background: url(../img/icon-quote.svg) 50% no-repeat;
    background-size: 22px;
}

/* Hr */

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

/* Images */

.wysiwyg-content img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    border-radius: var(--border-radius-sm);
}

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

/* Responsive */

@media (max-width: 640px) {
    .wysiwyg-content blockquote {
        padding: 25px;
        padding-top: 60px;
    }

    .wysiwyg-content blockquote:before {
        left: 25px;
        top: 25px;
    }
}

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

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

/* Labels */

.actpras-theme label,
.actpras-theme legend {
    display: block;
    margin: 5px 0;
    color: var(--navy);
    font-size: 12px;
    line-height: 14px;
    font-weight: 500 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

/* Basic Fields */

.actpras-theme input:not([type="button"], [type="submit"]),
.actpras-theme select,
.actpras-theme textarea {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0 !important;
    padding: 14px 16px !important;
    color: var(--navy);
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: 0.02em !important;
    font-weight: 400;
    text-align: left;
    background: var(--sky-blue);
    outline: 0 !important;
    border: 0;
    border: 1px solid var(--sky-blue);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition) border-color;
    resize: none;
}

.actpras-theme input:not([type="button"], [type="submit"]):focus,
.actpras-theme select:focus,
.actpras-theme textarea:focus {
    border-color: rgba(var(--true-blue-rgb), 20%);
}

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

.actpras-theme input::placeholder,
.actpras-theme textarea::placeholder {
    color: var(--navy);
}

/* Select */

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

.actpras-theme select:not([multiple="multiple"]),
.actpras-theme .select2-container .select2-selection {
    background: var(--sky-blue) url(../img/icon-arrow-down.svg) no-repeat;
    background-size: 12px;
    background-position: center right 20px;
    cursor: pointer;
}

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

.actpras-theme .select2-container .select2-selection,
.actpras-theme .select2-container .select2-selection .selection__rendered {
    line-height: 20px;
}

.actpras-theme .select2-container .select2-selection {
    margin: 0;
    outline: 0;
    display: block;
    height: auto;
    padding: 14px 16px;
    border: 1px solid var(--grey);
    background: transparent;
    color: var(--navy);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

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

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

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

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

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

/* Checkbox & Radio */

.actpras-theme input[type="checkbox"],
.actpras-theme input[type="radio"] {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    margin: 0 10px 0 0;
    min-height: 25px !important;
    min-width: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    box-shadow: none;
    transition: none;
    cursor: pointer;
}

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

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

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

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

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

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

/* Submit */

.actpras-theme form button[type="submit"],
.actpras-theme form .button[type="submit"] {
    background: var(--teal);
    border-color: var(--teal);
}

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

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

.gravity-theme form .gform_footer {
    margin-top: 20px !important;
}

.gravity-theme form .gform_fields {
    gap: 10px !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 {
    width: 12px;
    height: 12px;
    margin: auto 0 auto 20px;
}

.gravity-theme .gform_validation_errors {
    margin-bottom: 20px !important;
    padding: 14px 16px !important;
    border-width: 1px !important;
    border-radius: var(--border-radius-sm) !important;
    letter-spacing: 0.02em;
    outline: 0 !important;
    box-shadow: none !important;
}

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

.gravity-theme .gform_validation_errors > h2 {
    padding: 0 0 0 35px !important;
}

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

/* Labels */

.gravity-theme form .ginput_preview *,
.gravity-theme form .gform-field-label,
.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    margin: 5px 0 !important;
    padding: 0 !important;
    color: var(--navy);
    font-size: 12px !important;
    line-height: 14px;
    font-weight: 500 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    padding: 0 !important;
    color: rgba(var(--navy-rgb), 50%);
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    text-transform: none;
}

/* Checkbox & Radio */

.gravity-theme form .gfield--type-choice .gchoice {
    margin: 10px 0 !important;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"],
.gravity-theme form .gfield--type-choice input[type="radio"],
.gravity-theme form .gfield--type-consent input[type="checkbox"] {
    display: inline-block;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"] + label,
.gravity-theme form .gfield--type-consent input[type="checkbox"] + label {
    display: inline-block;
    margin: 3px 0 !important;
    width: calc(100% - 40px) !important;
    vertical-align: top !important;
}

/* Date & Time */

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

.gravity-theme form .hour_minute_colon {
    line-height: 42px !important;
}

/* List */

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

/* File Upload */

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

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

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

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

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

/* Product */

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

/* Progress Bar */

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

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

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

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

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

/* Page Footer */

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

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

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

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

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

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

.actpras-theme .button svg {
    width: 10px;
    height: 10px;
    color: var(--white);
}

/* Default Styles */

.actpras-theme button,
.actpras-theme button:hover,
.actpras-theme button:focus,
.actpras-theme .button,
.actpras-theme .button:hover,
.actpras-theme .button: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: 100px;
    min-height: 0 !important;
    padding: 14px 30px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 15px !important;
    line-height: 20px !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 2px !important;
    transition: var(--transition) all;
    cursor: pointer;
}

/* Additional Styles */

.actpras-theme .button.button-teal {
    background: var(--teal);
    border-color: var(--teal);
}

.actpras-theme .button.button-white {
    background: transparent;
    border-color: var(--white);
}

.actpras-theme .button.button-white,
.actpras-theme .button.button-white svg {
    color: var(--white);
}

.actpras-theme .button.button-link {
    padding: 0 !important;
    min-width: 0 !important;
    font-weight: 600 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--navy);
}

.actpras-theme .button.button-link svg {
    color: var(--teal);
}

/* Hover/Focus */

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

.actpras-theme button:hover svg,
.actpras-theme button:focus svg,
.actpras-theme .button:not(.button-link):hover svg,
.actpras-theme .button:not(.button-link):focus svg {
    transform: translateX(3px);
}

.actpras-theme .button.button-link:hover,
.actpras-theme .button.button-link:focus {
    color: var(--teal);
}

/* Responsive */

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

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

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

/* Responsive */

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

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

.site-header {
    top: 0;
    width: 100%;
    display: block;
    position: fixed;
    height: var(--header-height);
    background: rgba(var(--navy-rgb), 40%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition) all;
    z-index: 2000000002;
}

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

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

/* Menus */

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

.site-header ul li a {
    padding: 10px;
    display: block;
    transition: var(--transition) all;
}

.site-header ul:not(.sub-menu) > li > a {
    color: var(--white);
}

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

body.actpras-theme.category-5 .site-header li.menu-item-29 a:not(:hover) {
    text-decoration: none;
}

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

/* Sub Menu */

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

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

.site-header .main-menu ul.sub-menu {
    padding: 10px;
    background: var(--sky-blue);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

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

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

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

/* Hamburger */

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

.site-header .icon-hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--white);
    transition: background 0s 0.3s;
}

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

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

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

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

/* Responsive Menu */

.site-header .responsive-menu {
    opacity: 0;
    pointer-events: none;
    transition: var(--transition) all;
}

/* Responsive Menu: Menu */

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

.site-header .responsive-menu ul:not(.sub-menu) {
    margin: 25px 0;
}

.site-header .responsive-menu ul li a {
    padding: 15px 0;
    font-size: 28px;
    line-height: 32px;
    color: var(--white);
}

/* Responsive Menu: Sub Menu */

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

.site-header .responsive-menu ul.sub-menu li a {
    font-size: 18px;
    padding: 3px 15px;
}

.site-header .responsive-menu ul li.menu-item-has-children ul.sub-menu,
.site-header .responsive-menu ul li.menu-item-has-children .sub-menu-wrap {
    display: none;
}

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

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

/* Responsive */

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

@media (max-width: 920px) {
    body.actpras-theme.menu-active .site-header {
        height: 100%;
        background: rgba(var(--navy-rgb), 80%);
    }

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

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

    .site-header .responsive-menu {
        display: block;
    }

    body.actpras-theme.menu-active .site-header .responsive-menu {
        opacity: 1;
        pointer-events: all;
    }
}

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

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

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

.site-search .close-search {
    margin-left: 15px;
    cursor: pointer;
}

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

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

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

/* Responsive */

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

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

.site-footer {
    position: relative;
    background: var(--navy);
}

.site-footer:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/bkg-footer.jpg) 50% no-repeat;
    mix-blend-mode: multiply;
    background-size: cover;
    opacity: 30%;
    pointer-events: none;
}

.site-footer .grid-col-4 {
    grid-template-columns: 350px repeat(3, 1fr);
}

.site-footer .site-logo {
    margin: 0 0 25px;
}

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

/* Footer Menu */

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

.site-footer ul li {
    margin: 0 0 8px;
}

.site-footer ul li,
.site-footer ul li a {
    color: var(--white);
    font-size: 14px !important;
    line-height: 20px !important;
}

.site-footer ul li a {
    display: inline-block;
    color: var(--white);
    opacity: 60%;
    font-size: 14px;
    line-height: 20px;
}

.site-footer .footer-menu p,
.site-footer .footer-contact p {
    margin: 0 0 15px;
    font-weight: 500;
}

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

/* Copyright */

.site-footer .footer-copyright div[class*="container"] {
    padding: 15px 0;
    border-top: 1px solid rgba(var(--white-rgb), 10%);
}

/* Responsive */

@media (max-width: 920px) {
    .site-footer .grid-col-4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }

    .site-footer .footer-logo {
        grid-column: span 3;
    }
}

@media (max-width: 770px) {
    .site-footer .grid-col-4 {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer .footer-logo {
        grid-column: span 1;
    }
}

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

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

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

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

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

.actpras-theme .image-portrait {
    aspect-ratio: 5 / 6;
}

.actpras-theme .image-landscape {
    aspect-ratio: 37 / 26;
}

/* Background Elements */

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

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

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

.actpras-theme .background-overlay:before {
    content: "";
    background: rgba(var(--navy-rgb), 30%);
}

/* Video Embed */

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

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

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

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

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

/* Pagination */

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

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

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

/* Navigation */

.actpras-theme .swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.actpras-theme .swiper-navigation div[class*="swiper-nav-"] {
    cursor: pointer;
    transition: var(--transition) opacity;
}

.actpras-theme .swiper-navigation div[class*="swiper-nav-"].swiper-button-disabled {
    opacity: 20%;
}

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

/* Responsive */

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

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

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

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

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

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

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

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

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

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

.actpras-theme .social-icons a,
.actpras-theme .social-icons div {
    padding: 10px;
    background: var(--teal);
    border-radius: var(--border-radius-sm);
    transition: var(--transition) background;
}

.actpras-theme .social-icons a:hover,
.actpras-theme .social-icons div:hover {
    background: var(--true-blue);
}

.actpras-theme .social-icons svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

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

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

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

.actpras-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) transparent transparent transparent;
}

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

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

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

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

.actpras-theme .popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--navy-rgb), 80%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 20000000000;
}

/* Containers */

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

/* Close Button */

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

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

/* Responsive */

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

    .actpras-theme .popup-overlay .close-popup:not(.button) {
        padding: 5px;
    }
}

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

.actpras-theme .post-pagination,
.actpras-theme .archive-pagination {
    margin-top: 40px;
}

.actpras-theme .archive-pagination {
    gap: 10px;
}

.actpras-theme .archive-pagination a,
.actpras-theme .archive-pagination span {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
    color: var(--grey);
}

.actpras-theme .archive-pagination a {
    width: 30px;
    border-radius: 1px;
    background: transparent;
    outline: 1px solid transparent;
    outline-offset: 1px;
    transition: var(--transition) all;
}

.actpras-theme .archive-pagination a:hover,
.actpras-theme .archive-pagination a.is-current {
    color: var(--white);
    background: var(--navy);
    outline-color: rgba(var(--navy-rgb), 40%);
}

.actpras-theme .post-pagination {
    padding-top: 25px;
    border-top: 1px solid rgba(var(--grey-rgb), 20%);
}

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

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

.actpras-theme *[class^="entry-"] .inner-entry-content {
    padding: 10px 0;
}

.actpras-theme *[class^="entry-"] .inner-entry-content > *:not(:last-child) {
    margin: 0 0 10px !important;
}

/*-----------------------------------------------------------------------
   Archive - Post
-----------------------------------------------------------------------*/

.archive-index form.form-post-filter select,
.archive-index form.form-post-filter input {
    width: auto;
    min-width: 260px;
    padding-right: 45px !important;
}

.archive-index form.form-post-filter input {
    background: var(--sky-blue) url(../img/icon-search.svg) no-repeat;
    background-size: 12px;
    background-position: center right 20px;
}

/* Responsive */

@media (max-width: 640px) {
    .archive-index form.form-post-filter select,
    .archive-index form.form-post-filter input {
        width: 100%;
    }
}

/*-----------------------------------------------------------------------
   Single — Post
-----------------------------------------------------------------------*/

body.actpras-theme.admin-bar .single-post {
    padding-top: var(--admin-height);
}

.block-post-content .inner-post-meta {
    gap: 5px 15px;
    margin: 30px 0;
    padding: 15px 0;
    border-top: 1px solid var(--sky-blue);
    border-bottom: 1px solid var(--sky-blue);
}

.block-post-content .inner-post-meta span {
    width: 3px;
    height: 3px;
    border-radius: var(--border-radius-sm);
    background: var(--teal);
}

.block-post-content .inner-post-content .flex-sidebar {
    padding: 30px;
    border-radius: var(--border-radius-sm);
    background: var(--white);
    box-shadow: 0 0 15px rgba(var(--grey-rgb), 10%);
}

.block-post-content .inner-post-content .flex-sidebar > hr {
    margin: 25px -30px;
    width: calc(100% + 60px);
}

.block-post-content .inner-post-content .flex-sidebar > h5 {
    margin-bottom: 18px;
}

/* Related Posts */

.actpras-theme .listing-thumbnails .entry-thumbnail:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--sky-blue);
}

.actpras-theme .entry-thumbnail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.actpras-theme .entry-thumbnail .inner-entry-content .inner-entry-meta {
    margin: 0 !important;
}

.actpras-theme .entry-thumbnail .inner-entry-content {
    padding: 0;
}

.actpras-theme .entry-thumbnail .inner-entry-content > p {
    font-weight: 500 !important;
    line-height: 20px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 5px 0;
    transition: var(--transition) color;
}

.actpras-theme .entry-thumbnail .inner-entry-image {
    width: 70px;
    height: 70px;
}

.actpras-theme .entry-thumbnail:hover .inner-entry-content > p {
    color: var(--teal);
}

/* Responsive */

@media (max-width: 640px) {
    .block-post-content > div[class*="block-setting"] {
        padding-top: calc(var(--header-height) + 40px);
    }

    .block-post-content .inner-post-content .flex-sidebar {
        padding: 20px;
    }

    .block-post-content .inner-post-content .flex-sidebar > hr {
        margin: 25px -20px;
        width: calc(100% + 50px);
    }

    .block-post-content .inner-post-content .flex-sidebar > h5 {
        margin-bottom: 15px;
    }
}

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

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

.actpras-theme .inner-block-head .col-1 {
    max-width: 480px;
}

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

.actpras-theme .block-setting-background-colour:not([style*="--block-background-colour: var(--none)"], [style*="--block-background-colour: var(--navy)"]) {
    margin: 40px;
    border-radius: 2px;
    overflow: hidden;
}

/* Responsive */

@media (max-width: 990px) {
    .actpras-theme .block-setting-background-colour:not([style*="--block-background-colour: var(--none)"], [style*="--block-background-colour: var(--navy)"]) {
        margin: 20px;
    }
}

@media (max-width: 640px) {
    .actpras-theme .block-setting-background-colour:not([style*="--block-background-colour: var(--none)"], [style*="--block-background-colour: var(--navy)"]) {
        margin: 0;
    }
}

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

.block-hero-banner {
    border-bottom: 4px solid var(--true-blue);
}

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

.block-hero-banner div[class*="container"] {
    margin: 0 auto;
}

.block-hero-banner .background-overlay:before {
    background: linear-gradient(237deg, rgba(25, 46, 67, 0) 0%, rgba(25, 46, 67, 1) 70%);
    opacity: 80%;
}

.block-hero-banner h1 {
    max-width: 800px;
}

.block-hero-banner h5 {
    max-width: 600px;
}

/* Responsive */

@media (max-width: 770px) {
    .block-hero-banner > div[class*="block-setting"] {
        height: auto;
    }

    .block-hero-banner div[class*="container"] {
        padding: calc(200px + var(--header-height)) 0 100px;
    }
}

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

.block-page-banner {
    border-bottom: 4px solid var(--true-blue);
}

.block-page-banner .background-overlay:before {
    background: linear-gradient(237deg, rgba(var(--navy-rgb), 0) 0%, rgba(var(--navy-rgb), 1) 70%);
    opacity: 80%;
}

/* Responsive */

@media (max-width: 860px) {
    .block-page-banner > div[class*="block-setting"] {
        padding-top: calc(var(--header-height) + 100px);
    }
}

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

.block-call-to-action .background-overlay:before {
    background: linear-gradient(237deg, rgba(var(--navy-rgb), 0) 0%, rgba(var(--navy-rgb), 1) 70%);
    opacity: 80%;
}

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

/* Responsive */

@media (max-width: 770px) {
    .block-call-to-action div[class*="container"] {
        padding-top: 25vw;
    }

    .block-call-to-action .background-overlay:before {
        background: linear-gradient(to top, rgba(var(--navy-rgb), 1) 30%, rgba(var(--navy-rgb), 0) 100%);
        opacity: 100%;
    }

    .block-call-to-action .wysiwyg-content {
        text-align: center;
    }

    .block-call-to-action .wysiwyg-content .button-group {
        justify-content: center;
    }
}

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

.actpras-theme .listing-accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.actpras-theme .entry-accordion {
    margin: 0;
    height: auto;
    display: block;
    padding: 25px 30px;
    background: var(--white);
    border: 1px solid rgba(var(--navy-rgb), 10%);
    border-radius: var(--border-radius-sm);
    transition: var(--transition) border-color;
}

.actpras-theme .entry-accordion .trigger-accordion {
    position: relative;
    flex-wrap: nowrap;
    gap: 20px;
    flex: 1;
    cursor: pointer;
}

.actpras-theme .entry-accordion .trigger-accordion span {
    margin: 2px 0;
    font-weight: 500;
    flex: 1;
    transition: var(--transition) color;
}

.actpras-theme .entry-accordion .trigger-accordion svg {
    width: 16px;
    height: 30px;
    min-width: 16px;
    min-height: 30px;
    transform: rotate(45deg);
}

.actpras-theme .entry-accordion .trigger-accordion img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.actpras-theme .entry-accordion.is-active {
    border-color: rgba(var(--teal-rgb), 50%);
}

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

.actpras-theme .entry-accordion.is-active .trigger-accordion span {
    color: var(--teal);
}

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

/* Responsive */

@media (max-width: 640px) {
    .actpras-theme .entry-accordion {
        padding: 15px 20px;
    }

    .actpras-theme .entry-accordion .trigger-accordion span {
        margin: 4px 0;
    }

    .actpras-theme .entry-accordion .trigger-accordion svg {
        width: 14px;
        min-width: 14px;
    }
}

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

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

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

.block-videos .listing-videos {
    gap: 40px;
}

.block-videos video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.block-videos video,
.block-videos .responsive-embed {
    margin-bottom: 20px;
}

/*-----------------------------------------------------------------------
   Block - Multicolumn
-----------------------------------------------------------------------*/

.block-multicolumn.block-values .grid-col-2 {
    gap: 30px 80px;
}

/* Responsive */

@media (max-width: 860px) {
    .block-multicolumn.block-values .grid-col-2 {
        gap: 20px;
    }
}

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

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

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

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

.block-split-content .flex-layout {
    gap: 80px;
}

.block-split-content .col-image {
    width: 40%;
}

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

.block-split-content .col-content {
    flex: 1;
}

/* Responsive */

@media (max-width: 860px) {
    .block-split-content .flex-layout {
        gap: 40px;
    }

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

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

/*-----------------------------------------------------------------------
   Block - Page Links
-----------------------------------------------------------------------*/

.block-page-links .listing-page-links {
    gap: 40px;
}

.block-page-links .listing-page-links span {
    width: 1px;
    height: 50px;
    background: rgba(var(--white-rgb), 20%);
}

.block-page-links .listing-page-links span:last-child {
    display: none;
}

.actpras-theme .entry-page-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.actpras-theme .entry-page-link:hover {
    text-decoration: underline;
}

.actpras-theme .entry-page-link svg,
.actpras-theme .entry-page-link svg * {
    color: var(--teal);
}

/* Responsive */

@media (max-width: 770px) {
    .block-page-links .listing-page-links {
        flex-direction: column;
        gap: 20px;
    }

    .block-page-links .listing-page-links span {
        width: 100%;
        height: 1px;
    }

    .actpras-theme .entry-page-link {
        padding: 10px;
    }
}

/*-----------------------------------------------------------------------
   Block - Resources
-----------------------------------------------------------------------*/

.actpras-theme .listing-resources .entry-resource:not(:last-child) {
    margin-bottom: 20px;
}

.actpras-theme .entry-resource {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    background: var(--white);
    border: 1px solid rgba(var(--grey-rgb), 20%);
    font-size: 18px;
    font-weight: 500;
}

.actpras-theme .entry-resource svg {
    min-width: 20px;
    width: 20px;
    color: var(--teal);
}

.actpras-theme .entry-resource:hover {
    border-color: rgba(var(--teal-rgb), 50%);
    color: var(--teal);
}

/* Responsive */

@media (min-width: 860px) {
    .actpras-theme .listing-resources {
        columns: 2;
        column-gap: 20px;
    }
}

@media (max-width: 640px) {
    .actpras-theme .listing-resources .entry-resource:not(:last-child) {
        margin-bottom: 10px;
    }

    .actpras-theme .entry-resource {
        padding: 16px;
    }
}

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

.block-reviews .grid-col-2 {
    grid-template-columns: 340px 1fr;
}

.block-reviews .grid-col-2 div[class*="col-"] {
    min-width: 100%;
}

.block-reviews .col-1 img.image-square {
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(var(--navy-rgb), 10%);
}

.block-reviews .inner-block-head {
    margin-bottom: 30px;
}

.block-reviews .carousel-reviews .swiper-navigation {
    justify-content: flex-end;
}

.actpras-theme .entry-review .inner-entry-content {
    padding: 0;
}

.actpras-theme .entry-review .inner-entry-meta {
    margin-top: 25px;
}

.actpras-theme .entry-review .inner-entry-meta .text-true-blue {
    font-weight: 500;
}

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

/* Responsive */

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

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

    .block-reviews .col-1 img.image-square {
        max-width: 340px;
        margin: auto;
    }

    .block-reviews .inner-block-head,
    .block-reviews .entry-review {
        text-align: center;
    }

    .block-reviews .inner-block-head {
        margin: 0;
    }

    .block-reviews .carousel-reviews .swiper-navigation {
        justify-content: center;
        margin-top: 25px;
    }
}

/*-----------------------------------------------------------------------
   Block - Clinical Trials
-----------------------------------------------------------------------*/

.block-clinical-trials.has-all-trials div[class*="container-"]:not(.inner-block-head) {
    max-width: 1360px;
}

.actpras-theme .entry-trial {
    background: var(--navy);
    padding: 35px;
    border-radius: var(--border-radius-sm);
}

.actpras-theme .entry-trial .inner-entry-content .inner-entry-tag {
    font-size: 10px;
    line-height: 10px;
    padding: 10px 15px;
    border-radius: 2px;
    background: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 25px !important;
}

.actpras-theme .has-completed-trials .entry-trial .inner-entry-content .inner-entry-tag {
    background: var(--true-blue);
}

.actpras-theme .entry-trial h5.inner-entry-title {
    font-weight: 500;
}

.actpras-theme .entry-trial .inner-entry-content .button-link {
    width: fit-content;
    margin-top: 25px !important;
}

.actpras-theme .entry-trial .inner-entry-content .button-link:not(:hover) {
    color: var(--white);
}

.actpras-theme .entry-trial.is-active .inner-entry-content .button-link svg {
    transform: rotate(-180deg);
}

.actpras-theme .entry-trial .wysiwyg-content {
    display: none;
}

.actpras-theme .listing-trials .entry-trial:not(:last-child) {
    margin-bottom: 10px;
}

.actpras-theme .listing-trial-types {
    gap: 0;
    background: var(--navy);
    border-radius: vaR(--border-radius-sm);
    overflow: hidden;
}

.actpras-theme .listing-trial-types div[class*="col-"] {
    padding: 50px;
}

.actpras-theme .listing-trial-types .col-2 {
    background: #223b54;
}

.actpras-theme .listing-trial-types .wysiwyg-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.actpras-theme .listing-trial-types .wysiwyg-content ul {
    margin-bottom: 25px !important;
}

.actpras-theme .listing-trial-types .wysiwyg-content ul li:not(:last-child) {
    margin-bottom: 10px !important;
}

.actpras-theme .listing-trial-types .wysiwyg-content ul li {
    font-size: 18px !important;
    line-height: 24px !important;
}

.actpras-theme .listing-trial-types .wysiwyg-content .button-group {
    margin-top: auto !important;
}

/* Responsive */

@media (max-width: 770px) {
    .actpras-theme .listing-trial-types div[class*="col-"] {
        padding: 30px;
    }

    .actpras-theme .entry-trial {
        padding: 25px;
    }
}

/*-----------------------------------------------------------------------
   Block - Blog Posts
-----------------------------------------------------------------------*/

.actpras-theme .entry-post {
    padding: 5px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(var(--grey-rgb), 20%);
    transition: var(--transition) border-color;
}

.actpras-theme .entry-post .inner-entry-image {
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

.actpras-theme .entry-post .inner-entry-content {
    padding: 20px;
}

.actpras-theme .entry-post .inner-entry-meta,
.actpras-theme .entry-thumbnail .inner-entry-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.actpras-theme .entry-post .inner-entry-meta p,
.actpras-theme .entry-thumbnail .inner-entry-meta p {
    font-weight: 500;
}

.actpras-theme .entry-post .inner-entry-meta span,
.actpras-theme .entry-thumbnail .inner-entry-meta span {
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: var(--teal);
}

.actpras-theme .entry-post .inner-entry-title,
.actpras-theme .entry-post .inner-entry-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.actpras-theme .entry-post .inner-entry-title {
    font-weight: 500;
}

.actpras-theme .entry-post .button {
    width: fit-content;
    max-width: 100%;
}

.actpras-theme .entry-post:hover {
    border-color: rgba(var(--grey-rgb), 50%);
}

.actpras-theme .entry-post:hover .button {
    color: var(--teal);
}

/* Responsive */

@media (max-width: 640px) {
    .actpras-theme .entry-post .inner-entry-content {
        padding: 15px;
    }
}

/*-----------------------------------------------------------------------
   Block - Publications
-----------------------------------------------------------------------*/

.actpras-theme .listing-publications {
    gap: 20px;
}

.actpras-theme .entry-publication {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--sky-blue);
    border-color: rgba(var(--true-blue-rgb), 20%);
}

.actpras-theme .entry-publication .inner-entry-meta p {
    text-transform: capitalize;
}

.actpras-theme .entry-publication .inner-entry-title {
    display: block;
    margin: 15px 0 30px;
}

.actpras-theme .entry-publication .button {
    margin: auto 0 0 !important;
}

.actpras-theme .entry-publication:hover {
    border-color: rgba(var(--true-blue-rgb), 50%);
}

/* Responsive */

@media (max-width: 770px) {
    .actpras-theme .entry-publication {
        padding: 25px;
    }

    .actpras-theme .entry-publication .inner-entry-title {
        display: block;
        margin: 8px 0 20px;
    }
}

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

.actpras-theme .entry-team {
    width: 280px;
    padding: 5px;
    border: 1px solid rgba(var(--grey-rgb), 20%);
}

.actpras-theme .entry-team,
.actpras-theme .entry-team .inner-entry-image {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.actpras-theme .entry-team .inner-entry-content {
    padding: 30px 20px;
}

.actpras-theme .entry-team .inner-entry-content > *:not(h5, :last-child) {
    margin: 0 0 5px !important;
}

.actpras-theme .entry-team .inner-entry-content h6 {
    text-transform: none;
    letter-spacing: 0.02em;
}

.actpras-theme .entry-team .button-group {
    margin-top: 25px;
}

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

.actpras-theme div[id*="popup-team"] .wysiwyg-content p.text-small:first-child {
    margin: 0 0 10px !important;
}

.actpras-theme div[id*="popup-team"] .wysiwyg-content h6 {
    color: var(--grey);
}

/* Responsive */

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

/*-----------------------------------------------------------------------
   Block - History
-----------------------------------------------------------------------*/

.block-history .swiper-slide:not(.swiper-slide-active) {
    opacity: 0 !important;
}

.block-history .swiper-slide .h1 {
    font-weight: 300;
    margin-bottom: 10px !important;
}

.block-history .swiper-navigation {
    width: fit-content;
    margin: 30px 0 0;
}

.block-history .listing-nav .entry-nav {
    font-size: 16px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 1px;
    background: transparent;
    outline: 1px solid transparent;
    outline-offset: 1px;
    transition: var(--transition) all;
    cursor: pointer;
}

.block-history .listing-nav .entry-nav:hover,
.block-history .listing-nav .entry-nav.is-active {
    color: var(--white);
    background: var(--navy);
    outline-color: rgba(var(--navy-rgb), 50%);
}

.block-history .listing-nav span {
    flex: 1;
    max-width: 40px;
    min-width: 20px;
    height: 1px;
    background: rgba(var(--grey-rgb), 20%);
}

.block-history .listing-nav span:last-child {
    display: none;
}

/* Responsive */

@media (min-width: 860px) {
    .block-history .swiper-slide .grid-col-2 {
        grid-template-columns: 420px 1fr;
    }

    .block-history .swiper-navigation {
        margin: 0 auto 0 500px;
    }
}

/*-----------------------------------------------------------------------
   Block - Partners
-----------------------------------------------------------------------*/

.actpras-theme .listing-partners .entry-partner:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(var(--teal-rgb), 30%);
}

.actpras-theme .entry-partner .col-1 img {
    display: block;
    max-width: 220px;
    max-height: 110px;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    object-position: left;
}

.actpras-theme .entry-partner .entry-contact {
    margin: 6px 0;
}

.actpras-theme .entry-partner .entry-contact a {
    font-size: 18px;
    font-weight: 500;
}

.actpras-theme .entry-partner .entry-contact a:hover {
    color: var(--teal);
}

.actpras-theme .entry-partner .entry-contact svg {
    width: 22px;
    height: 22px;
}

/* Responsive */

@media (min-width: 860px) {
    .actpras-theme .entry-partner .grid-col-2 {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 860px) {
    .actpras-theme .entry-partner .grid-col-2 {
        gap: 20px;
    }
}

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

.actpras-theme .entry-contact {
    display: flex;
    gap: 20px;
}

.actpras-theme .entry-contact svg {
    width: 30px;
    height: 30px;
    color: var(--teal);
}

.block-contact-form .entry-contact {
    margin: 40px 0;
}

.block-contact-form .entry-contact div > *:not(:last-child) {
    margin-bottom: 6px;
}

.block-contact-form .entry-contact h5,
.block-contact-form .entry-contact h5 a {
    font-weight: 500;
}

.block-contact-form .entry-contact h6 {
    color: var(--grey);
    margin-bottom: 10px !important;
}

.block-contact-form .entry-contact p a {
    text-decoration: underline;
}

.block-contact-form .entry-contact a:hover {
    color: var(--teal);
}

.block-contact-form .col-2 {
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 15px rgba(var(--grey-rgb), 10%);
}
