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

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

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

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

    --font-primary: "Archivo", sans-serif;
    --font-secondary: "Archivo", sans-serif;

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

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

    --bone: #eee3d1;
    --bone-rgb: 238, 227, 209;
--gold: #d6b584;
    --gold-rgb: 214, 181, 132;

    --blue: #7892d2;
    --blue-rgb: 120, 146, 210;

    --navy: #203361;
    --navy-rgb: 32, 51, 97;

    --black: #080d17;
    --black-rgb: 8, 13, 23;

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

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

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

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

    --transition: 0.25s ease;
}

/* Responsive */

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

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

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

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

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

body.ach2026-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(--black);
    line-height: 1.5;
    font-weight: 400;
}

body.ach2026-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.ach2026-theme {
    padding-top: calc(var(--header-height) + var(--notice-height)) !important;
}

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

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

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

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

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

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

/* Flex Layout */

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

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

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

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

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

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

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

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

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

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

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

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

.ach2026-theme .flex-gap-33{
    gap: 33px;
}



/* Containers */

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

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

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

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

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

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

/* Padding */

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

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

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

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

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

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

/* Grid Layout */

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

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

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

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

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

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

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

/* Visibility */

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

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

/* Block Settings */

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

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

/* Responsive */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ach2026-theme h1,
.ach2026-theme h1 *,
.ach2026-theme .h1,
.ach2026-theme .h1 * {
    font-size: 56px;
    line-height: 61px;
}

.ach2026-theme h1 span{
    color: #1C7ED6;
}


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

.ach2026-theme h2 span{
    color: #1C7ED6;
}

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

.ach2026-theme h4,
.ach2026-theme h4 *,
.ach2026-theme .h4,
.ach2026-theme .h4 * {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
}

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

.ach2026-theme h6,
.ach2026-theme h6 *,
.ach2026-theme .h6,
.ach2026-theme .h6 * {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.ach2026-theme p,
.ach2026-theme li {
    font-weight: 400;
    font-size: 18px !important;
    line-height: 1.5 !important;
    color: #707070;
}

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

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

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

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

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

.ach2026-theme mark {
    background: none;
}

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

/* Responsive */

@media (max-width: 990px) {
    .ach2026-theme h1,
    .ach2026-theme h1 *,
    .ach2026-theme .h1,
    .ach2026-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;
    }
}

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

/* Sizes */

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

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

/* Alignment */

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

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

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

/* Colours */

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

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

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

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

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

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

/* Links */

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

/* Lists */

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

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

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

.wysiwyg-content ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 3px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: var(--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 {
    margin-left: 0;
    margin-right: 0;
    padding: 20px 0 20px 20px;
    border-left: 1px solid var(--black);
}

/* Hr */

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

/* Images */

.wysiwyg-content img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
}

.wysiwyg-content img:not(:first-child) {
    margin-top: 40px !important;
}

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

.wysiwyg-content img.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none;
}

.wysiwyg-content img.alignleft {
    float: left;
}

.wysiwyg-content img.alignright {
    float: right;
}

.wysiwyg-content img.size-full {
    width: 100% !important;
}

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

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

/* Labels */



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

.ach2026-theme ::placeholder {
    color: var(--black);
}

/* Select */

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

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

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

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

.ach2026-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(--black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

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

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

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

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

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

/* Checkbox & Radio */

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

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

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

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

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

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

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

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

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

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

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

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

/* Validation */

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

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

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

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

/* Labels */

.gravity-theme form .ginput_preview *,
.gravity-theme form .gform-field-label,
.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    margin: 5px 0;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: var(--black);
}

.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;
    font-weight: 300;
    color: rgba(var(--black-rgb), 50%);
}

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

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

/* Footer */

.gravity-theme form .gform-footer,
.gravity-theme form .gform-page-footer {
    padding-bottom: 0 !important;
}

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

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

.ach2026-theme .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

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

/* Default Styles */


/* Additional Styles */

.ach2026-theme .button.button-white {
    border-color: var(--white);
}

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

/* Responsive */

@media (max-width: 640px) {
    .ach2026-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:auto;
    max-height: 60px;
    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: 358px;
    max-height: 120px;
}

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

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

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

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

/* Main Menu */

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

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

}

.site-header .main-menu ul > li.current-menu-item > a,
.site-header .main-menu ul > li.current-menu-parent > a,
.site-header .main-menu ul li a:hover,
.site-header .main-menu ul li a:focus {
    text-decoration: none;
    color: #847F7D;
}

.site-header .main-menu ul li a:hover,
.site-header .main-menu ul li a:focus {
    text-decoration: underline;
    color: #1C7ED6;
}

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

/* Sub Menu */

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

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

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

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

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

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

/* Hamburger */

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

.site-header .icon-hamburger span,
.site-header .icon-hamburger span:before,
.site-header .icon-hamburger span:after {
    display: block;
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--black);
    transition: background 0s 0.3s;
}

.site-header .icon-hamburger span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

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

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

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

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

/* Responsive Menu */

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

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

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

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

/* Responsive Menu: Menu */

.site-responsive-menu .main-menu ul li,
.site-responsive-menu .main-menu ul li a {
    position: relative;
}

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

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

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

/* Responsive Menu: Sub Menu */

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

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

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

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

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

/* Responsive */

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

@media (max-width: 990px) {
    .site-header .main-menu ul {
        display: none !important;
    }

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

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

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

/*-----------------------------------------------------------------------
    Site 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.ach2026-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;
}

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

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

/* Responsive */

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

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

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

/* Footer Menu */

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

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

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

/* Policies */

.site-footer .footer-policies {
    margin-right: auto;
}

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

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

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

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

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

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

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

/* Background Elements */

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

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

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

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

/* Video Embed */

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

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

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

body.wp-admin .ach2026-theme .swiper-carousel-wrap {
    pointer-events: none;
}

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

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

/* Pagination */

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

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

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

/* Navigation */

.ach2026-theme .swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.ach2026-theme .swiper-navigation div[class*="swiper-nav-"] {
    padding: 10px;
    cursor: pointer;
}

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

/* Responsive */

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

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

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

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

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

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

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

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

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

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

.ach2026-theme .social-icons svg {
    width: 25px;
    height: 25px;
    color: #19477a;
}

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

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

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

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

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

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

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

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

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

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

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

/* Close Button */

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

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

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

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

.ach2026-theme .archive-pagination a {
    margin: 0 10px;
    font-size: 12px;
    text-align: center;
}

.ach2026-theme .archive-pagination a:hover,
.ach2026-theme .archive-pagination a.is-current {
    text-decoration: underline;
}

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

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

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

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

.ach2026-theme *[class^="entry-"]:not(.entry-accordion) .inner-entry-content {
    padding: 10px 0;
}

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

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

/* Responsive */

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

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

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

.ach2026-theme .entry-accordion {
    display: block;
    margin: 0;
    height: auto;
    padding: 20px;
    background: #E9F3FB;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: left;
}

.ach2026-theme.block-accordion .container{
    position: relative;
}

.ach2026-theme.block-accordion .container-lg:after {
    position: absolute;
    bottom: -133px;
    width: 100%;
    height: 150px;
    background: url('../img/accordian_before.png') no-repeat right bottom;
    content: "";
    right: 90px;
}

.ach2026-theme .entry-accordion.is-active {
    background: #fff;
}

.ach2026-theme.block-accordion .top_title{
    margin-bottom: 40px;
}

.ach2026-theme.block-accordion .inner-entry-title h5{
    font-size: 20px;
}

.ach2026-theme.block-accordion .inner-entry-content p{
    font-size: 18px !important;
}

.ach2026-theme .entry-accordion .inner-entry-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    transition: var(--transition) all;
    cursor: pointer;
}

.ach2026-theme .entry-accordion .inner-entry-title svg {
    width: 16px;
    height: 20px;
    min-width: 31px;
    min-height: 31px;
}

.ach2026-theme .entry-accordion.is-active .inner-entry-title svg {
    transform: rotate(180deg);
}
.ach2026-theme .entry-accordion .inner-entry-content {
    display: none;
}

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

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

.block-image-gallery .carousel-gallery img {
    width: auto;
    height: 50px;
   
}

.block-image-gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1C7ED6;
}

.block-image-gallery .swiper-wrapper {
    transition-timing-function: linear !important;
}


.block-image-gallery img{
    height: 60px;
}

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

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

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

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

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

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

.ach2026-theme .entry-review .inner-entry-image {
    width: 60px;
    height: auto;
}

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

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

/*-----------------------------------------------------------------------
    Block - hero-banner
-----------------------------------------------------------------------*/
.block-hero-banner{
    background: #D2EAFF;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.block-hero-banner:before {
    position: absolute;
    bottom: -61px;
    width: 100%;
    height: 249px;
    content: "";
    background: url('../img/hero-banner-before.svg') no-repeat left top;
    background-size: cover;
}
.banner_main{
    display: flex;
    align-items: center;
}


.banner_left{
    width: 50%;
    padding-right: 15px;
}

.banner_right{
    width: 50%;
    padding-left: 15px;
}

.video_main, .video-wrapper {
    position: relative;
    height: auto;
    background-color: rgb(0 0 0 / 40%);
    border-radius: 20px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    display: block;
    height: 370px;
    object-fit: cover;
}

.video-wrapper iframe{
    height: 100%;
    border-radius: 20px;
}

.block-hero-banner .video-wrapper iframe {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.video_main:before{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    content: "";
    left: 0;
    border-radius: 20px;
    z-index: 1;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}


/*-----------------------------------------------------------------------
    Block - Partner-logo
-----------------------------------------------------------------------*/
.partner-logo .image {
    padding: 20px 31px;
    background: #FAFAFA;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    max-width: 224px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo .image img {
    height: 38PX;
    display: block;
}

.partner-logo {
    padding: 40px 0 80px;
}

/*-----------------------------------------------------------------------
    Block - continuous-slider
-----------------------------------------------------------------------*/
.block_continuous_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.block_continuous_slider .swiper-slide {
  width: auto; /* important for smooth flow */
}

.block_continuous_slider {
    background: #1C7ED6;
    padding: 16px;
    margin: 0px 0 80px;
}

.block_continuous_slider h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 39px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

.block_continuous_slider h2 img {
    margin-right: 8px;
}


/*-----------------------------------------------------------------------
    Block - Account Connection
-----------------------------------------------------------------------*/
.account-connection{
    padding: 80px 0;
}
.account_left{
    width: 35%;
}

.account-r-video .video-wrapper video, .account-r-video .video-wrapper {
    height: auto;
    aspect-ratio: 18 / 9;
}

.account-connection h2{
    margin-bottom: 40px;
}

.account-connection .partner_main{
    flex-wrap: nowrap;
}

.account_right{
    display: flex;
    align-items: center;
    width: 65%;
    box-shadow: 0px 0px 21px -8px rgba(28, 126, 214, 0.61);
    border-radius: 10px;
    padding: 80px 24px;
    position: relative;
}

.account-r-desc {
    width: 42%;
}

.account-r-desc  ul{
    margin: 0;
    padding: 25px 0 0 ;
}

.account-connection .account-r-desc ul li {
    background: url('../img/tick-circle.svg') no-repeat left top 2px;
    padding-left: 32px;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 26px !important;
    margin-bottom: 9px;
    color: #2D2D2D;

} 

.account-connection h4, .account-connection h3{
    margin-bottom: 6px;
}

.account-r-video {
    width: 58%;
    padding-left: 20px;
}

.account_list {
    gap: 34px;
    display: flex;
    flex-direction: column;
}

.account_box{
    display: flex;
}

.box_image {
    padding: 1px;
    border-radius: 5px;
    background: linear-gradient(90deg, #438BE3 0%, #DAE8FF 100%);
    margin-right: 14px;
    height: 52px;
    width: 52px;
}

.account_box figure {
    margin: 0;
    width: 50px;
    height: 50px;
    background: rgba(245, 249, 255, 0.78);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
   
}


/*-----------------------------------------------------------------------
    Block - data secure
-----------------------------------------------------------------------*/
.data_bg {
    background: linear-gradient(180deg, #3373F5 0%, #1E438F 100%);
    border-radius: 30px;
    padding: 40px 60px 150px;
}

.data-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.data-top p {
    color: #fff;
    padding-right: 140px;
}

.data_left {
    width: 50%;
}

.data_right {
    width: 50%;
    padding-left: 20px;
}

.data-secure{
    margin: 80px 0;
    position: relative;
}

.data-secure:after {
    position: absolute;
    bottom: -116px;
    width: 100%;
    height: 291px;
    content: "";
    background: url('../img/cloud_white.png') no-repeat left bottom;
    left: 0;
    display: inline-block;
    z-index: 99;
    background-size: 100%;
}

.data_box {
    display: flex;
}

.data_box figure {
    background: rgba(245, 249, 255, 0.78);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data_box .desc {
    width: calc(100% - 40px);
    padding-left: 24px;
}

.data_right h2, .data_right p, .data_right h3{
    color: #fff;
}

.data_right h3{
    font-weight: 700;
    margin-bottom: 6px;
}

.data_right .account_list{
    margin-top: 38px;
}


/*-----------------------------------------------------------------------
    Block - solutions section
-----------------------------------------------------------------------*/
.solutions-section {
    padding: 120px 0 0;
    background: linear-gradient(180deg, rgba(243, 249, 255, 0.28) 0%, rgba(171, 207, 240, 0.26) 100%);
    margin-bottom: 120px;
}


.solutions-section .solutions-wrapper {
    display: flex;
    margin: 0 -12px;
}

.solutions-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.solution-card {
    width: 33.33%;
    padding: 0 12px;
}

.solution-card  a{
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    box-shadow: 0px 0px 12px rgba(28, 126, 214, 0.2);
    border-radius: 20px;
    display: inline-block;
    height: 100%;
}

.solution-content {
    padding: 24px 20px 24px 14px;
}

.solution-content h3{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 14px;
    background: url('../img/info-circle.svg') no-repeat left top 3px;
    padding-left: 34px;
}

.solution-content p{
    margin-bottom: 14px;
    background: url('../img/info_icon.svg') no-repeat left top 3px;
    padding-left: 34px;
    min-height: 109px;
}

.solution-content span{
    color: #969696;
    text-decoration: underline;
    font-weight: 400;
    font-size: 18px;
}

.solution-image img {
    border-radius: 20px 20px 0 0;
    display: block;
    height: 200px;
    width: 100%;
    object-fit: contain;
}

.solution_title {
    position: static;
    margin: 0 auto;
    max-width: 915px;
    width: 100%;
    margin-top: -45px;
}


.testimonial-section{
    background: #fff;
    padding: 120px 0;
    position: relative;
    background: url('../img/test_bg.png') no-repeat center;
}

.test_bottom {
    display: flex;
    align-items: center;
}

.profile_desc {
    padding-left: 10px;
    margin: 14px 0;
}

.testimonial-section h2{
    text-align: center;
    color: #1C7ED6;
    margin-bottom: 40px;
    display: block;
}

.testimonial_main {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 20px;
    padding: 0 50px;
}


.testimonial_left {
    width: 227px;
    padding-top: 30px;
    position: sticky;
    top: 110px;
    align-self: start;
}

.testimonial_left h3{
    font-weight: 600;
    font-size: 36px !important;
    line-height: 39px !important;
    display: flex;
    align-items: center;
    letter-spacing: 0.0015em;
    text-transform: capitalize;
    margin-bottom: 30px;
    color: #1C7ED6;
}

.testimonial_left p {
    font-size: 16px !important;
    margin-bottom: 30px;
}

.testimonial_right{
    width: calc(100% - 227px);
    padding-left: 39px;
}

.testimonial_right .mask {
	display: flex;
	gap: 30px;
}

.testimonial_right .swiper-container {
	width: 300px;
	height: 750px;
    overflow: hidden;
}

.testimonial_right .swiper-slide {
	background: rgba(28, 126, 214, 0.1);
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    margin-bottom: 24px;
    padding: 20px 20px;
    height: auto;
}

.testimonial_right .swiper-wrapper{
  transition-timing-function: linear !important;
}
.testimonial_right .swiper-two {
    transform: rotateX(180deg);
}
.testimonial_right .swiper-two .seiper-desc{
    transform: rotateX(180deg);
}


.why-choose {
    padding: 120px 0 80px;
}


.choose_top{
    text-align: center;
}

.choose_top h2{
    margin-bottom: 12px;
    color: #1C7ED6;
}

.choose_top p{
    font-size: 20px !important;
    max-width: 587px;
    margin: 0 auto;
}

.choose_middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 50px auto ;
    position: relative;
}

.choose_middle img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.choose-box {
    max-width: 1080px;
    margin: 30px auto 0;
    text-align: center;
    position: sticky;
    top: 152px;
    background: #fff;
    z-index: 9;
    min-height: 220px;
}

.choose-box  h3{
    background: linear-gradient(23.36deg, #D9EDFF 17.18%, #1C7ED6 87.04%);
    border: 1px solid #1C7ED6;
    border-radius: 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.choose_main {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 23px;
    text-align: left;
}

.choose_left, .choose_right {
    width: 50%;
    background: rgba(28, 126, 214, 0.1);
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    padding: 20px 60px;
}

.choose_left li, .choose_right li{
    font-size: 24px !important;
    font-weight: 300;
}

.choose_left li{
    color: #CE0404;
    background: url('../img/close-circle.svg') no-repeat left center;
    padding-left: 36px;
}

.choose_right li{
    color: #29A54A;
    background: url('../img/right-circle.svg') no-repeat left center;
    padding-left: 36px;
}


.block-accordion{
    padding: 120px 0;
    text-align: center;
}

.link_btn {
    border: 0;
    max-width: max-content;
    color: #1C7ED6 !important;
    margin: 20px auto 0 !important;
    display: block;
    font-size: 18px !important;
    font-weight: bold;
}

.block-accordion h2{
    color: #1C7ED6;
    margin-bottom: 12px;
}

.block-accordion p{
    font-size: 20px !important;
}


.block-cloud-accounts{
    padding: 120px 0 80px;
}


.cloud_image {
    background: #FFFFFF;
    border-radius: 20px;
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 34px;
}

.cloud_main{
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 65px 0;
    
}

.cloud_main:before{
    background: linear-gradient(180deg, rgba(28, 126, 214, 0.7) -15.51%, rgba(255, 255, 255, 0.36) 88.77%);
    filter: blur(102px);
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
}

.cloud_desc {
    position: relative;
}  

.cloud_desc h2{
    margin-bottom: 35px;
}

.cloud_desc .btn-primary{
    margin-bottom: 40px;
    display: block;
}

.block-post-feed{
    background-size: cover !important;
}

.block-post-feed .entry-post {
    background: rgba(28, 126, 214, 0.1);
    border: 1px solid #D0D0D0;
    border-radius: 10px;
}

.block-post-feed .entry-post .background-image, .ach2026-theme .image-landscape{
    border-radius: 10px 10px 0 0;
}

.block-post-feed .inner-entry-content{
    padding: 24px 20px !important;
}

.post-feed-top {
    display: flex;
    align-items: center;
    margin-bottom: 44px;
    justify-content: space-between;
}

.post_title {
    max-width: 640px;
}

.post_title h2{
    margin-bottom: 12px;
    color: #1C7ED6;
}

.button.button-transparent{
    
    color: #1C7ED6;
    border: 1px solid #1C7ED6;
    border-radius: 4px;
    height: 40px;
    padding: 0 13px;
    max-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
}   

.button.button-transparent:hover{
     height: 40px;
    padding: 0 13px;
    max-width: max-content;
}


footer{
    background: url('../img/footer.jpg') no-repeat left top;
    width: 100%;
    padding: 40px 0 16px;
}

footer {
    background: url('../img/footer.jpg') no-repeat left top;
    width: 100%;
    padding: 40px 0 0;
    background-size: cover !important;
}

.footer_left {
    max-width: 391px;
}



.footer_main {
    display: flex;
}

.footer_right {
    width: calc(100% - 391px);
    padding-left: 78px;
}

.footer_left form.wpcf7-form {
    display: flex;
    align-items: center;
    margin-top: 28px;
}

.footer_left .wpcf7-form-control {
    height: 47px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0px 0px 50px 4px rgba(17, 77, 85, 0.2);
    border-radius: 6px 0 0 6px !important;
    border: 0 !important;
    font-size: 18px;
    color: #000;
    padding: 0 30px;
    width: 100%;
}

.footer_left .wpcf7-form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #A1A1A1 !important;
}
.footer_left .wpcf7-form-control::-moz-placeholder { /* Firefox 19+ */
  color: #A1A1A1 !important;
}
.footer_left .wpcf7-form-control:-ms-input-placeholder { /* IE 10+ */
  color: #A1A1A1 !important;
}
.footer_left .wpcf7-form-control:-moz-placeholder { /* Firefox 18- */
  color: #A1A1A1 !important;
}

.footer_left .wpcf7-submit {
    background: #1C7ED6 !important;
    height: 47px;
    border: 0;
    padding: 0 20px;
    color: #fff;
    border-radius: 0 6px 6px 0 !important;
}

span.wpcf7-spinner {
    position: absolute;
    /* display: none; */
    right: 0;
}
.footer-menu h6 {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 36px;
}

.footer-menu li a {
    font-weight: 400 !important;
    font-size: 18px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.7) !important;
}

.site-footer .social-icons a{
    background: #FFFFFF;
    box-shadow: 0px 2px 10px rgba(28, 126, 214, 0.33);
    border-radius: 103px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer .social-icons{
    display: flex;
    gap: 20px;
    margin-top: 28px;
}

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

.footer-copyright p.text-small {
    display: flex;
    justify-content: center;
    width: 100%;
    color: #6B6B6B;
    padding: 16px 0;
}

.footer-copyright p.text-small a{
    color: #6B6B6B;
    font-size: 14px;
    padding-left: 2px;
    font-weight: 400;
}

.button-default {
    background: #1C7ED6;
    height: 50px;
    padding: 5px 26px !important;
    background: #1C7ED6;
    border-radius: 10px;
    max-width: max-content;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}

.site-header a.button.button-default {
    height: 40px;
    padding: 10px !important;
    font-size: 14px;
    font-weight: 700;
}

.site-header ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.004em;
    color: #847F7D;
}

.tabs__area {
    display: none;
}

.tabs__area.tabs__area--active {
    display: block;
}


ul.tabs__list {
    width: 35%;
    gap: 23px;
    display: flex;
    flex-direction: column;
}

.tabs__area.tabs__item--active {
    display: block;
   
}

.tabs__list li.tabs__item.tabs__item--active{
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    background: #1C7ED6;
}

.tabs__area {
    display: none;
}

.tabs__list li.tabs__item {
    border: 1px solid transparent;
    padding: 10px;
}

.tabs__list li.tabs__item.tabs__item--active h4 {
    color: #fff;
}

.tabs__list li.tabs__item.tabs__item--active p {
    color: #fff;
}

.tabs__content {
    width: 65%;
    box-shadow: 0px 0px 21px -8px rgba(28, 126, 214, 0.61);
    border-radius: 10px;
    padding: 80px 24px;
    position: relative;
    height: 460px;
}

.tabs__area .account_main{
    display: flex;
    align-items: center;
}

.account-connection .tabs {
    flex-wrap: nowrap;
}



.hover-container .comparison-card {
    margin: 0 ;
    position: relative;
    border-radius: 90px;
    border-radius: 80px;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    cursor: pointer;
    width: 230px;
    background: linear-gradient(92.65deg, #1C67C2 8.41%, #0C307B 95.41%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-container .comparison-card:not(:hover) {
    width: calc(190px - 0px) !important;
    opacity: 1 !important;
    background: linear-gradient(92.65deg, #7CB7FF 8.41%, #1E66BE 95.41%);
}

.hover-container .comparison-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) -1.48%, rgba(255, 255, 255, 0.15) 4.64%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.3s ease;
}

.hover-container .comparison-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 80px;
    transition: left 0.6s;
}

.hover-container .icon-wrapper {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.hover-container .vs-divider {
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 1;
    transition: opacity 0.3s;
    flex: 1;
}

.hover-container .icon-wrapper img {
    object-fit: contain;
}

.hover-container .vs-line {
    flex: 1;
    height: 2px;
    background-image: linear-gradient(to right, #ffffff 50%, transparent 50%) !important;
    background-size: 10px 2px !important;
    background-repeat: repeat-x;
    position: relative;
}

.hover-container .vs-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    transition: width 0.4s;
}

.hover-container .vs-text {
   
    height: 30px;
    width: 30px;
   
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
}

.hover-container .compare-button {
    color: white;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 58px;
    white-space: nowrap;
}

body {
    background-color: #6094fb;
}

/* .hover-container .comparison-card:hover::before {
    background: linear-gradient(270deg, #0042f9, #00b5e2, #a8e665, #ec5afe, #ffb81c, #0042f9);
    background-size: 600% 600%;
    padding: 2px;
    animation: borderRunning 4s linear infinite;
} */


.hover-container .comparison-card:hover .vs-text {
    color: #fff !important;
    background: rgba(255, 255, 255, .1);
}

.hover-container .comparison-card:hover .compare-button {
    opacity: 1;
}

.hover-container .comparison-card:hover .icon-wrapper.hover-none,
.hover-container .comparison-card:hover .vs-divider {
    opacity: 0 !important;
}

.icon-wrapper img {
    width: 28px;
}

.home .page-default .inner-pages-container {
    max-width: 100%;
}

.page-default .inner-pages-container{
    max-width: 1280px;
}


.ach2026-theme .entry-post{
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.25s ease;
    border: 0;
}

.ach2026-theme .listing-posts{
    gap: 2rem;
}

.ach2026-theme .entry-post .inner-entry-image{
    background: #fff;
}

.ach2026-theme .entry-post .inner-entry-image .background-image {
   z-index: 0;
    display: flex;
    width: calc(100% - 12%);
    height: auto;
    transition: transform 0.4s ease;
    max-height: 100%;
    position: static;
    margin: 6% 6% 6%;
    overflow: hidden;
}

.ach2026-theme .entry-post .inner-entry-image .background-image img{
   object-fit: contain;
    transform: scale(1.0);
    transition: 0.3s;
}

.ach2026-theme .entry-post:hover .inner-entry-image .background-image img{
     transform: scale(1.1);
    transition: 0.3s;
}

.ach2026-theme .image-landscape {
    aspect-ratio: 4 / 2;
}


.ach2026-theme .archive-pagination a{
    padding: 8px 16px;
    margin: 0;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none !important;
}

.ach2026-theme .archive-pagination a.is-current{
    background-color: #1c7ed6;
    color: #fff;
    font-weight: 600;
}


.ach2026-theme.block-price {
    padding: 90px 0 120px;
    background: #f5f9fd;
}

.price_top {
    text-align: center;
    max-width: 628px;
    margin: 0 auto;
}

.price_top h1 {
    margin-bottom: 30px;
}

.price_left {
    box-shadow: 0px 10px 36px -3px rgba(28, 126, 214, 0.16);
    border-radius: 20px;
    width: 50%;
    padding: 50px;
    background: linear-gradient(180deg, rgba(243, 122, 34, 0.3) -54.09%, rgba(255, 255, 255, 0.72) 100%);
    height: max-content;
}
.price_right {
    width: 50%;
    padding: 50px 38px;
    background: linear-gradient(180deg, rgba(28, 126, 214, 0.6) -54.09%, rgba(255, 255, 255, 0.72) 100%);
    box-shadow: 0px 10px 36px -3px rgba(28, 126, 214, 0.16);
    border-radius: 20px;
    position: relative;
}
.price_main {
    display: flex;
    gap: 38px;
    max-width: 1140px;
    margin: 60px auto 0;
}
.price_main h2{
    font-weight: 500;
    margin-bottom: 14px;
}

.price_main p{
    margin-bottom: 12px;
}

.price_main .price{
    font-weight: 700;
    font-size: 50px;
    line-height: 54px;
    max-height: 54px;
    color: #000;
    margin-bottom: 18px;
    display: block;
}

.price_main span.sale-price {
    color: #92979C;
    text-decoration: line-through;
    font-size: 36px;
    font-weight: 500;
}

.price_main span.month, .price_right span.sub_title {
    color: #616773;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
}

.ach2026-theme.block-price .price_left ul li, .ach2026-theme.block-price .price_right ul li{
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #1D1D1D;
    margin-bottom: 8px;
    padding-left: 32px;
}

.ach2026-theme.block-price .price_left ul li{
    background: url('../img/icon-o-user.svg') no-repeat left center;
}

.ach2026-theme.block-price .price_right ul li{
    background: url('../img/icon-b-user.svg') no-repeat left center;
}

.price_right h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 19px;
}

.price_main .border_btn {
    background: #FFFFFF;
    border: 1px solid #FB8027;
    border-radius: 10px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 13px 0;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    margin-top: 18px;
    color: #FB8027;
}

.price_main .border_btn:hover {
    background: #FB8027;
}

.price_main .button.primary_btn{
    background: #1C7ED6;
    padding: 13px 0;
    margin-bottom: 30px;
     border-radius: 10px;
    width: 100%;
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    border: 1px solid transparent;
}

.price_main .button.primary_btn:hover{
    background: #fff;
    border: 1px solid #1C7ED6;
    color: #1C7ED6;
}

.page-id-1249 .inner-pages-container {
    max-width: 100%;
}

.page-id-1249 .ach2026-theme.block-accordion .container-lg:after{
    display: none;
}

a.link_btn {
    position: relative;
    z-index: 9;
}


.ach2026-theme.block-cta-section {
    padding: 38px 0 120px;
    background: #f5f9fd;
}

.google_main {
    border: 1px solid #1C7ED6;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
}

.google_main p {
    max-width: 882px;
    font-size: 24px !important;
    font-weight: 400;
    line-height: 29px !important;
    color: #000;
    margin-bottom: 0;
}

.block-image-gallery {
    padding: 0 0 120px;
}

body.page-id-1249 .block_continuous_slider{
    margin: 0;
}


span.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -39px;
    font-size: 15px;
}

.wpcf7 form .wpcf7-response-output{
    display: none;
}

.hover-container {
    margin-top: 38px;
}


.ach2026-theme .site-header .flex-gap {
    gap: 23px;
}

.ach2026-theme .site-header span.trigger-sub-menu {
    content: '';
    position: relative;
    width: 7px;
    height: 7px;
    top: 15px;
    -webkit-transform: rotate(45deg);
    border-right: 2px #847f7d solid;
    border-bottom: 2px #847f7d solid;
    left: auto;
    transition: all 0.3s ease-in-out;
    display: block;
    position: absolute;
    right: -3px;
}

.ach2026-theme .site-header span.trigger-sub-menu svg{
    display: none;
}

.sub-menu-wrap ul.sub-menu li a {
    text-align: left;
}

.page-id-624 h1.h2 {
    padding-top: 80px;
    text-align: center;
    margin-bottom: 50px;
    color: #1c7ed6;
}

span.most_popular {
    background: linear-gradient(342.89deg, #394A59 11.07%, #1C7ED6 119.26%);
    border: 1px solid rgba(28, 126, 214, 0.37);
    border-radius: 90px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(-9.93deg);
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 9px 20px;
}

.video_embed {
    position: relative;
    padding-bottom: 53%;
    aspect-ratio: 17 / 9;
    /* height: 370px; */
    width: 100%;
}

.block-hero-banner span.sub_title {
    margin-top: 10px;
    display: block;
    font-weight: 400;
}

.site-header .main-menu ul.sub-menu li {
    margin-bottom: 6px;
}

.site-header .main-menu ul.sub-menu li:last-child {
    margin-bottom: 0;
}

.seiper-desc>img {
    margin-bottom: 10px;
}


@media (max-width: 860px) {
    .banner_main{
        flex-direction: column;
    }

    div#ez-toc-container {
        width: 100% !important;
    }

     .contact_us_form .row{
        flex-wrap:wrap
    }
    .contact_us_form .row .col{
        width:100%
    }

    .page-id-624 .inner-pages-container{
        padding: 0 30px;
    }

    .contact_us_form form{
        margin-top: 30px !important;
    }

    .contact_us_form form label{
        font-size: 16px;
        margin-top: 15px;
    }

    .page-id-624 h1.h2{
        padding-top: 50px   ;
    }

    .contact_us_form .row{
        gap: 0;
    }

    .block-cloud-accounts{
        padding: 60px 0;
    }

    .solution-content p{
        min-height: auto;
    }

    .account-connection .tabs{
        flex-direction: column;
    }

    body ul.tabs__list {
        gap: 11px;
        width: 100%;
        white-space: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        flex-direction: row;
    }

    body ul.tabs__list .box_image {
        display: none;
    }

    body ul.tabs__list .account_box .desc {
        width: 260px;
    }

    .site-footer .social_icon ul li a{
        width: 45px;
        height: 45px;
    }

    .site-footer .social_icon ul li a img{
        max-width: 50%;
    }

    body .tabs__content{
        width: 100%;
        padding: 40px 20px;
        height: auto;
        margin-top: 30px;
    }

    .site-footer ul li{
        margin-bottom: 3px;
    }

    .footer-menu li a{
        font-size: 16px;
    }

    .footer-menu h6{
        font-size: 18px;
    }

   

    
    body .tabs__content .account_main{
        flex-direction: column;
    }

    .banner_right {
        width: 100%;
        padding-left: 0;
    }
    .banner_left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .block-hero-banner{
        padding: 40px 0;
    }

    .ach2026-theme h1, .ach2026-theme h1 *, .ach2026-theme .h1, .ach2026-theme .h1 *{
        font-size: 36px;
        line-height: 42px;
    }

    .ach2026-theme .flex-gap-33{
        gap: 13px;
    }

    .partner-logo{
        padding: 30px 0;
    }

    .block_continuous_slider{
        padding: 20px 0;
        margin: 0;
    }

    .block_continuous_slider h2{
        font-size: 26px;
        line-height: 34px;
    }

    .account-connection{
        padding: 40px 0;
    }

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

    .account-connection .partner_main{
        flex-direction: column;
    }

    .account_left {
        width: 100%;
        margin-bottom:30px;
    }

    .account_right{
        width: 100%;
        padding: 40px 0 0;
        flex-direction: column;
    }

    .account-r-desc{
        width: 100%;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .account-r-video{
        width: 100%;
        padding-left: 0
    }

    .data-secure{
        margin: 40px 0;
    }

    .data_bg{
        padding: 40px 30px 100px;
    }

    .data-top{
        flex-direction: column;
        gap: 20px;
    }

    .data-top p{
        padding-right: 0;
    }

    .data-main{
        flex-direction: column;
    }

    .data_left {
        width: 100%;
    }

    .data_right{
        width: 100%;
        padding-left: 0;
    }

    .ach2026-theme h3, .ach2026-theme h3 *, .ach2026-theme .h3, .ach2026-theme .h3 *{
        font-size: 20px;
        line-height: 20px;
    }

    .ach2026-theme p, .ach2026-theme li{
        font-size: 17px !important;
    }

    .data-secure:after{
        bottom: -16px;
    }

    .solution-card {
        width: 100%;
        padding: 0 12px 30px;
    }

    .testimonial_main{
        flex-direction: column;
        padding: 0;
    }

    .testimonial_left {
        width: 100%;
        padding: 30px 20px 0;
        position: static;
    }

    .choose-box{
        position: static;
    }
    .testimonial_right{
        width: 100%;
        padding-left: 0;
    }

    .post-feed-top .button-group {
        margin-bottom: 0;
    }

    .testimonial_right .mask{
        flex-direction: column;
    }

    .testimonial_right .swiper-container{
        height: auto;
    }

    .testimonial_right .swiper-container{
        width: 100%;
    }

    .testimonial_left h3{
        margin-bottom: 20px;
        font-size: 25px !important;
        line-height: 29px !important;
    }

    .testimonial_right .swiper-slide{
        margin-bottom: 0;
    }

    .swiper-container .swiper-wrapper{
        gap: 20px;
    }

    .solutions-section{
        padding: 60px 0 0;
        margin-bottom: 0;
    }

    .solution_title img{
        max-width: 300px;
        margin: 0 auto;
    }

    .testimonial-section{
        padding: 60px 0;
    }
    .why-choose{
        padding: 30px 0 40px;
    }

    .choose_middle{
        flex-direction: column;
    }

    .choose_middle img{
        position: static;
        margin: 20px auto;
        transform: none;
    }

    .choose_main{
        flex-direction: column;
        gap: 15px;
    }

    .choose_left, .choose_right{
        width: 100%;
        padding: 20px 40px;
    }

    .post_title {
        max-width: 640px;
        margin-bottom: 30px;
    }

    .block-post-feed .block-setting-padding{
        padding: 40px 0 !important;
    }

    .post-feed-top{
        flex-direction: column;
    }

    .block-accordion{
        padding: 40px 0;
    }

    .ach2026-theme.block-accordion .inner-entry-title h5, .ach2026-theme.block-accordion .inner-entry-content p {
        font-size: 16px;
    }

    .cloud_main{
        padding: 60px 30px 0;
    }

    .footer_main{
        flex-direction: column;
    }

    .footer_right{
        width: 100%;
        padding-left: 0;
    }

    .site-header a.button.button-default{
        display: none;
    }

    .site-logo, .site-logo img, .site-logo svg{
        width: 200px;
    }

    .footer_left{
        margin-bottom: 30px;
    }

    .footer-menu h6{
        margin-bottom: 8px;
    }

    .footer-columns{
            grid-template-columns: repeat(2, 2fr) !important;
    }

    .price_main{
        flex-direction: column;
        margin: 30px auto 0;
        gap: 58px;
    }

    .price_top h1 {
        margin-bottom: 20px;
    }

    .site-responsive-menu .main-menu ul li {
        border-bottom: 1px solid #ccc;
    }

    .site-responsive-menu .main-menu ul li:last-child {
        border-bottom: 0;
    }

    .site-responsive-menu .main-menu ul li a{
        padding: 15px 20px;
        font-size: 18px !important;
    }

    .site-responsive-menu .main-menu ul.sub-menu li{
        border-bottom: 0 !important;
    }

    .price_left, .price_right{
        width: 100%;
        padding: 30px;
    }

    .ach2026-theme.block-price{
        padding: 50px 0 0;
    }

    .google_main{
        flex-direction: column;
        padding: 30px 30px;
    }

    .google_main p{
        margin-bottom: 30px;
    }

    .ach2026-theme.block-cta-section{
        padding: 50px 0 50px;
    }

    .block-image-gallery{
        padding: 50px 0;
    }

    .page-id-1249 .block-accordion {
        padding-bottom: 0;
    }

}

@media(max-width:600px){
    .ach2026-theme h2, .ach2026-theme h2 *, .ach2026-theme .h2, .ach2026-theme .h2 *{
        font-size: 26px;
        line-height: 30px;
    }

    .partner-logo .image{
        max-width: 100%;
    }

  
}




