:root {
    --e-global-color-primary: #4a9fb5;
    --e-global-color-secondary: #75b6c7;
    --e-global-color-text: #222;
    --e-global-color-accent: #4a9fb5;
    --e-global-color-light: #d9ebef;
    --e-global-typography-primary-font-family: -apple-system, "BlinkMacSystemFont", "Segoe UI", "Helvetica Neue", sans-serif;
    --e-global-typography-primary-font-weight: 600;
    --e-global-typography-secondary-font-family: var(--e-global-typography-primary-font-family);
    --e-global-typography-secondary-font-weight: 600;
    --e-global-typography-text-font-family: var(--e-global-typography-primary-font-family);
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-family: var(--e-global-typography-primary-font-family);
    --e-global-typography-accent-font-weight: 500;
    --az-color-text: #222;
    --az-color-border: #ededed;
    --az-color-border2: #e3e3e3;
    --az-color-white: #ffffff;
    --az-font-size-default: 16px;
    --az-fontsize-content: 18px;
    --az-h1-font-size: 58px;
    --az-h2-font-size: 46px;
    --az-h3-font-size: 24px;
    --az-h4-font-size: 21px;
    --az-h5-font-size: 18px;
    --az-h6-font-size: var(--az-fontsize-content);
    --az-h1-line-height: 1.2;
    --az-h2-line-height: 1.2;
    --az-h3-line-height: 1.3;
    --az-h4-line-height: 1.5;
    --az-h5-line-height: 1.5;
    --az-h6-line-height: 1.7;
    --az-h1-font-weight: 900;
    --az-h2-font-weight: 700;
    --az-h3-font-weight: 700;
    --az-h4-font-weight: 700;
    --az-h5-font-weight: 700;
    --az-h6-font-weight: 700;
    --az-default-border-radius: 25px;
    --az-border-radius-btn: 25px;
    --az-default-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    --az-default-transition2: all 0.7s cubic-bezier(.2, 1, .22, 1);
    --az-container-max-width: 1240px;
    --az-list-indent: 2rem;
    --az-list-spacing: 0;
    --az-content-spacing: 1rem;
    --az-content-spacing2: .75rem;
    --az-heading-spacing: .75rem;
    --az-col-spacing: 20px;
    --az-col-v-spacing: 100px;
    --az-col-sm-spacing: 50px;
    --az-col-gap: 30px;
    --az-pagetitle-spacing: 100px;
    --az-sidebar-max-width: 25%;
    --az-widget-spacing: 50px;
    --az-input-height: 50px;
    --az-btn-padding: 25px;
    --az-navbar-height: 70px;
    --az-block-max-width: 850px;
    --az-page-title-size: 32px;
    --az-admin-bar: 0px
}

@media (max-width:1024px) {
    :root {
        --az-h1-font-size: 44px;
        --az-h2-font-size: 34px;
        --az-h3-font-size: 21px;
        --az-h4-font-size: 18px;
        --az-h5-font-size: 16px;
        --az-h6-font-size: 16px;
        --az-fontsize-content: 16px;
        --az-page-title-size: 28px
    }
}

@media (max-width:766.98px) {
    :root {
        --az-h1-font-size: 32px;
        --az-h2-font-size: 26px;
        --az-h3-font-size: 20px;
        --az-h4-font-size: 18px;
        --az-h5-font-size: 16px;
        --az-h6-font-size: 14px;
        --az-fontsize-content: 16px;
        --az-page-title-size: 24px;
        --az-content-spacing2: 0.5rem;
        --az-widget-spacing: 30px
    }
}

@media (min-width:767px) and (max-width:1023.98px) {
    :root {
        --az-block-max-width: 100%
    }
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: #fff0
}

body {
    margin: 0;
    padding: 0;
    border: none;
    overflow-x: hidden;
    overflow-wrap: break-word;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    color: var(--az-color-text);
    font-family: var(--e-global-typography-text-font-family);
    font-size: var(--az-font-size-default);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: 1.7;
    background-color: #ffffff
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
em,
ol,
ul,
li,
tr,
th,
td,
dl,
img,
ins,
sub,
sup,
big,
cite,
code,
form,
small,
label,
table,
figure,
button,
legend,
strike,
address,
caption,
fieldset,
blockquote {
    margin: 0;
    padding: 0;
    border: none;
    font-size: inherit;
    text-align: inherit;
    line-height: inherit
}

input,
select,
textarea {
    margin: 0
}

textarea {
    resize: none
}

address {
    font-size: var(--az-fontsize-content);
    line-height: 1.875
}

b,
strong {
    font-weight: 700
}

em {
    font-style: italic
}

small {
    font-size: 75%
}

ins {
    text-decoration: none
}

del {
    opacity: .5
}

hr {
    height: 1px;
    border: none
}

mark {
    color: var(--e-global-color-text);
    font-weight: var(--e-global-typography-secondary-font-weight);
    background: #fff0
}

a {
    transition: var(--az-default-transition);
    color: var(--e-global-color-text);
    text-decoration: none
}

a:hover {
    color: #2f3821
}

a:focus,
button:focus {
    transition: none;
    outline-width: 0
}

a:focus-visible,
button:focus-visible {
    outline-width: 2px;
    outline-color: var(--e-global-color-primary)
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle
}

figure,
iframe,
textarea {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block
}

embed,
iframe,
object,
video {
    max-width: 100%
}

svg>* {
    transition: none
}

ul {
    list-style-type: square
}

ol {
    list-style-type: decimal
}

code,
kbd,
samp {
    padding: 5px 10px
}

code,
kbd,
samp,
pre {
    tab-size: 5;
    border-radius: var(--az-default-border-radius);
    background: var(--e-global-color-light)
}

code:focus,
kbd:focus,
samp:focus,
pre:focus {
    outline: none
}

pre {
    overflow: auto;
    padding: 15px 20px
}

pre code {
    padding: 0;
    background: #fff0
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    width: 100%;
    max-width: 100%
}

table,
th,
td {
    font-size: var(--az-font-size-default);
    border-width: 1px;
    border-style: solid;
    border-color: var(--az-color-border)
}

th,
td {
    padding: .7em 1em
}

th {
    font-weight: 500
}

caption {
    font-weight: 500;
    padding: .7rem
}

dl>*:last-child {
    margin-bottom: 0
}

dt {
    font-weight: 500
}

dd p:last-child {
    margin-bottom: 0
}

p:last-child {
    margin-bottom: 10px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem
}

ul,
ol {
    padding-inline-start: var(--az-list-indent);
    margin-bottom: var(--az-content-spacing)
}

ul li,
ol li {
    margin-bottom: var(--az-list-spacing)
}

ul li:last-child,
ol li:last-child {
    margin-bottom: 0
}

ul ul,
ul ol,
ol ul,
ol ol {
    margin-top: var(--az-list-spacing);
    margin-bottom: 0
}

.article-single .entry-content blockquote,
.article-single .entry-content table,
.article-single .entry-content dl,
.article-single .entry-content ol,
.article-single .entry-content ul,
.article-single .entry-content address,
.article-single .entry-content pre,
.aziwp-comment-content blockquote,
.aziwp-comment-content table,
.aziwp-comment-content dl,
.aziwp-comment-content ol,
.aziwp-comment-content ul,
.aziwp-comment-content address,
.aziwp-comment-content pre {
    margin-bottom: var(--az-content-spacing)
}

.article-single .entry-content blockquote:last-child,
.article-single .entry-content table:last-child,
.article-single .entry-content dl:last-child,
.article-single .entry-content ol:last-child,
.article-single .entry-content ul:last-child,
.article-single .entry-content address:last-child,
.article-single .entry-content pre:last-child,
.aziwp-comment-content blockquote:last-child,
.aziwp-comment-content table:last-child,
.aziwp-comment-content dl:last-child,
.aziwp-comment-content ol:last-child,
.aziwp-comment-content ul:last-child,
.aziwp-comment-content address:last-child,
.aziwp-comment-content pre:last-child {
    margin-bottom: 0
}

blockquote,
code,
dd,
dt,
figcaption,
hr,
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
input[type=week],
kbd,
li,
ol,
p,
pre,
samp,
small,
table,
td,
textarea,
th,
tr,
ul {
    font-size: var(--az-fontsize-content);
    line-height: 1.6
}

em,
i {
    font-style: italic
}

h1,
.h1 {
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: var(--az-h1-font-weight);
    font-size: var(--az-h1-font-size);
    line-height: var(--az-h1-line-height);
    color: var(--e-global-color-text)
}

h2,
.h2 {
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: var(--az-h2-font-weight);
    font-size: var(--az-h2-font-size);
    line-height: var(--az-h2-line-height);
    color: var(--e-global-color-text)
}

h3,
.h3 {
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: var(--az-h3-font-weight);
    font-size: var(--az-h3-font-size);
    line-height: var(--az-h3-line-height);
    color: var(--e-global-color-text)
}

h4,
.h4 {
    font-family: var(--e-global-typography-secondary-font-family);
    font-weight: var(--az-h4-font-weight);
    font-size: var(--az-h4-font-size);
    line-height: var(--az-h4-line-height);
    color: var(--e-global-color-text)
}

h5,
.h5 {
    font-family: var(--e-global-typography-secondary-font-family);
    font-weight: var(--az-h5-font-weight);
    font-size: var(--az-h5-font-size);
    line-height: var(--az-h5-line-height);
    color: var(--e-global-color-text)
}

h6,
.h6 {
    font-family: var(--e-global-typography-secondary-font-family);
    font-weight: var(--az-h6-font-weight);
    font-size: var(--az-h6-font-size);
    line-height: var(--az-h5-line-height);
    color: var(--az-color-text)
}

p {
    font-family: var(--e-global-typography-text-font-family);
    font-weight: var(--e-global-typography-text-font-weight);
    font-size: var(--az-fontsize-content);
    line-height: 1.7;
    color: var(--az-color-text)
}

.hidden {
    display: none
}

.aligncenter {
    clear: both;
    display: block;
    text-align: center
}

.wp-caption,
.sticky,
.bypostauthor,
.wp-caption-text,
.gallery-caption,
.screen-reader-text {
    background: #fff0
}

.page-title .breadcrumbs,
.aziwp-widget ul,
.menu,
.entry-meta,
.commentlist,
.aziwp-comments li,
.aziwp-comments .aziwp-comment-list,
.trail-items {
    margin-bottom: 0;
    --az-list-indent: 0;
    list-style-type: none
}

.aziwp-comment-content li ul,
.aziwp-comment-content li ol {
    --az-list-indent: 20px
}

ul li,
ol li {
    margin-bottom: var(--az-list-spacing)
}

@media screen and (max-width:782px) {
    .admin-bar {
        --az-admin-bar: 46px
    }
}

@media screen and (min-width:783px) {
    .admin-bar {
        --az-admin-bar: 32px
    }
}

#page {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    overflow: clip;
    z-index: 0
}

#page .content-wrapper {
    flex-grow: 1
}

.elementor-container {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative
}

.bv-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    width: 100%;
    padding-left: var(--az-col-spacing);
    padding-right: var(--az-col-spacing);
    padding-top: var(--az-col-v-spacing);
    padding-bottom: var(--az-col-v-spacing);
    max-width: var(--az-container-max-width)
}

.bv-container .content-area {
    width: 100%
}

@media (max-width:766.98px) {
    .bv-container {
        padding-top: var(--az-col-sm-spacing);
        padding-bottom: var(--az-col-sm-spacing)
    }
}

body.aziwp-boxed {
    max-width: 1040px;
    margin: 0 auto
}

body.aziwp-boxed .content-wrapper {
    background-color: #fff
}

body.aziwp-boxed.aziwp-border {
    border-left: 1px solid var(--az-color-border);
    border-right: 1px solid var(--az-color-border)
}

.aziwp-white-bg {
    background-color: var(--az-color-white)
}

.aziwp-gray-bg {
    background-color: var(--e-global-color-light)
}

.aziwp-primary-bg {
    background-color: var(--e-global-color-primary)
}

.aziwp-secondary-bg {
    background-color: var(--e-global-color-secondary)
}

.aziwp-dark-bg {
    background-color: var(--e-global-color-text)
}

.main-sidebar {
    --az-sidebar-grid: 100%;
    display: grid;
    grid-template-columns: var(--az-sidebar-grid);
    grid-column-gap: 30px;
    grid-row-gap: 30px
}

.main-sidebar>aside {
    order: var(--az-sidebar-order)
}

@media (min-width:1024.02px) {
    .main-sidebar.sidebar-right {
        --az-sidebar-grid: minmax(100px, 1fr) var(--az-sidebar-max-width)
    }
    .main-sidebar.sidebar-left {
        --az-sidebar-order: -1;
        --az-sidebar-grid: var(--az-sidebar-max-width) minmax(100px, 1fr)
    }
}

.aziwp-sidebar {
    position: relative;
    z-index: 1
}

@media (min-width:767px) {
    .sticky-sidebar .aziwp-sidebar {
        align-self: flex-start;
        position: sticky;
        top: calc(var(--az-navbar-height) + var(--az-admin-bar))
    }
}

.no-sidebar.blog-layout-classic .site-main,
.single-post .no-sidebar .site-main {
    max-width: var(--az-block-max-width);
    margin-right: auto;
    margin-left: auto
}

.no-sidebar .article-single .category-meta,
.no-sidebar .article-single .entry-meta {
    justify-content: center
}

.no-sidebar .article-single .single-post-title {
    text-align: center
}

.blog-layout-classic article:not(:last-child) {
    margin-bottom: calc(var(--az-col-v-spacing)/2)
}

.blog-layout-horizontal .site-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: var(--az-col-gap);
    grid-row-gap: var(--az-widget-spacing)
}

@media (max-width:1024px) {
    .blog-layout-horizontal .site-main {
        grid-template-columns: 1fr
    }
}

.blog-layout-horizontal.main-sidebar .site-main {
    grid-template-columns: 1fr
}

.blog-layout-grid .site-main,
.blog-layout-grid.related-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: var(--az-col-gap);
    grid-row-gap: var(--az-col-gap)
}

@media (max-width:1239.98px) {
    .blog-layout-grid .site-main,
    .blog-layout-grid.related-content {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 20px
    }
}

@media (max-width:766.98px) {
    .blog-layout-grid .site-main,
    .blog-layout-grid.related-content {
        grid-template-columns: 1fr
    }
}

.blog-layout-grid .site-main {
    grid-row-gap: var(--az-widget-spacing)
}

.blog-layout-grid.main-sidebar .site-main {
    grid-template-columns: 1fr 1fr
}

@media (max-width:766.98px) {
    .blog-layout-grid.main-sidebar .site-main {
        grid-template-columns: 1fr
    }
}

.aziwp-card {
    display: flex
}

.aziwp-card .post-title {
    margin: initial
}

.aziwp-card .post-title a:hover {
    color: inherit
}

.aziwp-card .entry-content-card {
    margin-top: var(--az-content-spacing2)
}

.aziwp-card .entry-content-card .post-content {
    word-break: break-word
}

.aziwp-card .entry-content-card .post-content p:last-child {
    margin-bottom: 0
}

.blog-layout-classic .aziwp-card {
    flex-direction: column
}

.blog-layout-classic .aziwp-card .post-title {
    font-size: var(--az-page-title-size);
    line-height: 1.25
}

.blog-layout-grid .aziwp-card {
    flex-direction: column
}

.blog-layout-grid .aziwp-card .post-title {
    font-family: var(--e-global-typography-secondary-font-family);
    font-weight: var(--e-global-typography-secondary-font-weight);
    line-height: var(--az-h5-line-height);
    font-size: var(--az-h5-font-size)
}

.blog-layout-horizontal .aziwp-card {
    flex-direction: row;
    align-items: center
}

.blog-layout-horizontal .aziwp-card .entry-image {
    flex: 1;
    padding-bottom: 0;
    margin: 0;
    aspect-ratio: 1
}

.blog-layout-horizontal .aziwp-card .entry-image img {
    object-fit: cover
}

.blog-layout-horizontal .aziwp-card .entry-wrapper {
    flex: 2.5;
    padding-left: var(--az-col-gap);
    padding-right: var(--az-col-gap)
}

.blog-layout-horizontal .aziwp-card .entry-wrapper .post-title {
    font-size: var(--az-h3-font-size);
    line-height: var(--az-h3-line-height)
}

.blog-layout-horizontal .aziwp-card .entry-wrapper .entry-content-card {
    display: none
}

@media (max-width:766.98px) {
    .blog-layout-horizontal .aziwp-card {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--az-col-spacing)
    }
    .blog-layout-horizontal .aziwp-card .entry-image {
        flex: 100%;
        aspect-ratio: auto
    }
    .blog-layout-horizontal .aziwp-card .entry-wrapper {
        padding: 0
    }
}

.entry-image {
    border-radius: var(--az-default-border-radius);
    overflow: hidden;
    display: block;
    line-height: 0;
    position: relative;
    margin-bottom: var(--az-col-gap)
}

.entry-image img {
    height: 100%;
    backface-visibility: hidden;
    transition: var(--az-default-transition2);
    border-radius: var(--az-default-border-radius)
}

.aziwp-card:hover .entry-image img {
    transform: scale(1.07)
}

article:not(.aziwp-card) .entry-image {
    margin-bottom: var(--az-widget-spacing)
}

article:not(.aziwp-card) .entry-image a {
    pointer-events: none
}

.blog-single-layout-modern .modern-entry-image {
    min-height: calc(50vh - var(--az-navbar-height));
    padding: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center
}

@media (min-width:1240px) {
    .blog-single-layout-modern .bv-container.no-sidebar,
    .blog-single-layout-modern .bv-container.main-sidebar {
        background: var(--az-color-white);
        border-radius: var(--az-default-border-radius);
        padding-top: calc(var(--az-col-v-spacing)* 0.75);
        margin-top: calc((50vh - var(--az-navbar-height))/ -2)
    }
}

.blog-single-layout-modern .bv-container.no-sidebar .entry-content,
.blog-single-layout-modern .bv-container.main-sidebar .entry-content {
    margin-top: var(--az-widget-spacing)
}

.blog-single-layout-modern .bv-container.no-sidebar .entry-image,
.blog-single-layout-modern .bv-container.main-sidebar .entry-image {
    display: none
}

@media (min-width:1240px) {
    .blog-single-layout-modern .bv-container.main-sidebar {
        padding-left: calc(var(--az-col-v-spacing)* 0.75);
        padding-right: calc(var(--az-col-v-spacing)* 0.75)
    }
}

select,
textarea,
input[type="url"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="password"],
.aziwp-widget select {
    appearance: none;
    width: 100%;
    height: var(--az-input-height);
    font-family: inherit;
    font-size: var(--az-fontsize-content);
    color: var(--e-global-color-text);
    padding-left: var(--az-col-spacing);
    padding-right: var(--az-col-spacing);
    border: 1px solid var(--az-color-border);
    border-radius: var(--az-default-border-radius);
    transition: var(--az-default-transition);
    background: var(--az-color-white)
}

select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible,
input[type="url"]:focus,
input[type="url"]:focus-visible,
input[type="tel"]:focus,
input[type="tel"]:focus-visible,
input[type="text"]:focus,
input[type="text"]:focus-visible,
input[type="time"]:focus,
input[type="time"]:focus-visible,
input[type="date"]:focus,
input[type="date"]:focus-visible,
input[type="datetime"]:focus,
input[type="datetime"]:focus-visible,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:focus-visible,
input[type="email"]:focus,
input[type="email"]:focus-visible,
input[type="number"]:focus,
input[type="number"]:focus-visible,
input[type="search"]:focus,
input[type="search"]:focus-visible,
input[type="password"]:focus,
input[type="password"]:focus-visible,
.aziwp-widget select:focus,
.aziwp-widget select:focus-visible {
    outline: none;
    border-color: var(--e-global-color-primary)
}

.aziwp-widget select,
select:focus,
select:focus-visible,
select {
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5.379L20.621 2.5 10.5 12.621.379 2.5 2.5.379l8 8z' fill='%234F5D6D' fill-rule='nonzero'/%3E%3C/svg%3E");
    background-repeat: no-repeat, repeat;
    background-size: 9px auto, 100%;
    background-position: right 15px top 50%, 0 0;
    white-space: nowrap;
    text-overflow: ellipsis
}

.aziwp-widget select option,
select:focus option,
select:focus-visible option,
select option {
    color: initial
}

.elementor-field-textual,
textarea {
    padding-top: var(--az-col-spacing);
    padding-bottom: var(--az-col-spacing);
    line-height: 1.2;
    min-height: 150px
}

fieldset {
    padding: 30px;
    border: 1px solid var(--az-color-border);
    border-radius: var(--az-default-border-radius, )
}

legend {
    font-weight: var(--e-global-typography-secondary-font-weight);
    padding-left: var(--az-col-spacing, 15px);
    padding-right: var(--az-col-spacing, 15px);
    margin-left: -15px
}

label {
    font-size: var(--az-font-size-default);
    line-height: inherit;
    cursor: pointer;
    margin: 0 0 .5em 0
}

label:last-child {
    margin-bottom: 0
}

.aziwp-checkbox,
.comment-form input[type="checkbox"],
.aziwp-radiobox {
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    top: 3px;
    min-width: 16px;
    width: 16px;
    height: 15px;
    min-height: initial;
    padding: 0;
    margin: 0 .5em 0 0;
    border: 1px solid var(--az-color-border2);
    cursor: pointer;
    -webkit-appearance: none;
    background: #fff0
}

.aziwp-checkbox:before,
.comment-form input[type="checkbox"]:before,
.aziwp-radiobox:before {
    position: absolute;
    content: "";
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    margin: auto
}

.aziwp-checkbox:checked,
.comment-form input[type="checkbox"]:checked,
.aziwp-radiobox:checked {
    border-color: var(--e-global-color-primary);
    background: var(--e-global-color-primary)
}

.aziwp-checkbox:checked:before,
.comment-form input[type="checkbox"]:checked:before,
.aziwp-radiobox:checked:before {
    opacity: 1
}

.aziwp-checkbox:focus,
.comment-form input[type="checkbox"]:focus,
.aziwp-radiobox:focus {
    outline: none;
    border-color: var(--e-global-color-primary)
}

.aziwp-checkbox,
.comment-form input[type="checkbox"] {
    border-radius: 3px
}

.aziwp-checkbox:before,
.comment-form input[type="checkbox"]:before {
    top: -2px;
    width: 8px;
    height: 5px;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg)
}

.aziwp-radiobox {
    border-radius: 100% !important
}

.aziwp-radiobox:before {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: inherit
}

.navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: var(--az-widget-spacing)
}

.navigation.post-navigation .nav-links {
    justify-content: space-between
}

.navigation.post-navigation .nav-links .nav-previous a,
.navigation.post-navigation .nav-links .nav-next a {
    margin: 0
}

.navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    width: 100%;
    font-weight: var(--e-global-typography-secondary-font-weight)
}

.navigation .nav-links .page-numbers,
.navigation .nav-links .nav-previous a,
.navigation .nav-links .nav-next a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-width: 36px;
    margin: 0 5px;
    border-radius: var(--az-default-border-radius);
    border: 1px solid var(--az-color-border)
}

.navigation .nav-links .page-numbers.current,
.navigation .nav-links .nav-previous a.current,
.navigation .nav-links .nav-next a.current {
    color: var(--az-color-white);
    background: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary)
}

.navigation .nav-links .page-numbers:hover,
.navigation .nav-links .nav-previous a:hover,
.navigation .nav-links .nav-next a:hover {
    border-color: var(--e-global-color-primary)
}

.navigation .nav-links .prev,
.navigation .nav-links .next,
.navigation .nav-links .nav-previous a,
.navigation .nav-links .nav-next a {
    font-size: 11px;
    text-transform: uppercase;
    padding: 0 17px;
    white-space: nowrap;
    border-color: var(--az-color-border)
}

.navigation .nav-links .prev:after,
.navigation .nav-links .next:after,
.navigation .nav-links .nav-previous a:after,
.navigation .nav-links .nav-next a:after {
    content: ">";
    font-size: 18px;
    margin-left: 5px;
    color: rgb(71 85 49 / .5)
}

.navigation .nav-links .prev,
.navigation .nav-links .nav-previous a {
    flex-direction: row-reverse
}

.navigation .nav-links .prev:after,
.navigation .nav-links .nav-previous a:after {
    transform: scale(-1, -1);
    margin-right: 5px;
    margin-left: 0
}

.page-links {
    display: flex;
    align-items: center;
    font-size: 11px;
    width: 100%;
    font-weight: var(--e-global-typography-secondary-font-weight);
    margin-top: var(--az-col-gap)
}

.page-links .post-page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-width: 36px;
    margin: 0 10px 0 0;
    border-radius: var(--az-default-border-radius);
    border: 1px solid var(--az-color-border)
}

.page-links .post-page-numbers.current {
    color: var(--az-color-white);
    background: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary)
}

.page-links .post-page-numbers:hover {
    border-color: var(--e-global-color-primary)
}

.entry-meta,
.category-meta {
    margin-top: var(--az-content-spacing2);
    text-transform: uppercase;
    font-size: 13px;
    transition: var(--az-default-transition);
    font-weight: var(--e-global-typography-secondary-font-weight);
    display: flex
}

.entry-meta .published,
.category-meta .published {
    color: var(--e-global-color-text)
}

.entry-meta>span,
.category-meta>span {
    margin-right: var(--az-content-spacing2)
}

.entry-meta:empty,
.category-meta:empty {
    display: none
}

article:not(.aziwp-card) .entry-meta {
    margin-bottom: var(--az-widget-spacing)
}

.category-meta {
    margin-top: 0;
    margin-bottom: var(--az-content-spacing2)
}

.category-meta a {
    color: var(--e-global-color-primary)
}

.category-meta a:hover {
    color: var(--e-global-color-text)
}

.category-meta+h1 {
    margin-top: var(--az-col-spacing);
    margin-bottom: var(--az-col-spacing)
}

.entry-footer {
    margin-top: var(--az-widget-spacing)
}

.entry-footer .tags {
    --az-list-indent: 0;
    list-style-type: none;
    --az-content-spacing: 0
}

.breadcrumbs {
    padding: 0
}

.breadcrumbs a {
    opacity: .75
}

.breadcrumbs a:hover {
    opacity: 1
}

.breadcrumbs ul {
    display: flex;
    flex-flow: wrap;
    --az-list-indent: 0;
    list-style-type: none;
    --az-list-spacing: 0;
    --az-content-spacing: 0;
    color: var(--e-global-color-text)
}

.breadcrumbs .trail-item:before {
    display: inline-flex;
    content: ">";
    font-size: 18px;
    margin: 0 5px;
    color: rgb(71 85 49 / .5)
}

.breadcrumbs .trail-item:first-of-type:before,
.breadcrumbs .trail-item.trail-begin:before {
    display: none
}

.button,
.aziwp-button,
[type="submit"],
.wp-element-button,
.wp-block-button__link {
    position: relative;
    display: var(--display, inline-flex);
    align-items: center;
    justify-content: center;
    min-height: var(--az-input-height);
    padding: 0 var(--az-btn-padding);
    appearance: none;
    cursor: pointer;
    user-select: none;
    text-align: center;
    border-radius: var(--az-border-radius-btn);
    transition: var(--az-default-transition)
}

.button:disabled,
.button.disabled,
.aziwp-button:disabled,
.aziwp-button.disabled,
[type="submit"]:disabled,
[type="submit"].disabled,
.wp-element-button:disabled,
.wp-element-button.disabled,
.wp-block-button__link:disabled,
.wp-block-button__link.disabled {
    opacity: .5;
    cursor: not-allowed
}

.button,
.aziwp-button,
[type="submit"],
.wp-element-button,
.wp-block-button__link {
    color: var(--az-color-white);
    border: none;
    background-color: var(--e-global-color-primary)
}

.button:hover,
.aziwp-button:hover,
[type="submit"]:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
    background-color: var(--e-global-color-secondary);
    color: var(--az-color-white)
}

.button,
.aziwp-button,
[type="submit"],
.wp-element-button,
.wp-block-button__link {
    font-size: var(--az-font-size-default);
    line-height: var(--az-font-size-default);
    font-family: var(--e-global-typography-accent-font-family);
    font-weight: var(--e-global-typography-accent-font-weight);
    font-style: normal;
    letter-spacing: 0em;
    text-transform: none;
    text-decoration: none
}

[type="submit"] {
    border-radius: var(--az-default-border-radius)
}

.related-posts {
    border-top: 1px solid var(--az-color-border)
}

.related-posts .bv-container {
    display: flex;
    flex-direction: column
}

.related-posts .related-title h3 {
    margin-bottom: var(--az-col-gap)
}

.related-posts .columns-2 {
    grid-template-columns: 1fr 1fr
}

.related-posts .columns-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr
}

.related-posts .columns-4 .author {
    display: none
}

@media (max-width:1239.98px) {
    .related-posts .columns-2,
    .related-posts .columns-4 {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:766.98px) {
    .related-posts .columns-2,
    .related-posts .columns-4 {
        grid-template-columns: 1fr
    }
}

@media (min-width:767px) and (max-width:1024px) {
    .related-posts .columns-3 article:nth-child(3) {
        display: none
    }
}

@media (min-width:1024.02px) and (max-width:1239.98px) {
    .related-posts .columns-3 article:nth-child(3) {
        display: none
    }
}

.main-header ul li:focus>ul,
.main-header ul li:hover>ul {
    display: block
}

.main-header .main-header-wrapper {
    border-bottom: 1px solid rgb(71 85 49 / .3);
    box-shadow: 0 0 5px rgb(0 0 0 / .2)
}

.main-header .nav-primary {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    --az-fontsize-content: 16px;
    --padding-sub-menu-vertical-mobile: .8rem;
    --padding-sub-menu-horizontal-mobile: var(--az-col-spacing);
    --margin-left-sub-menu: 1rem;
    pointer-events: none
}

.main-header ul,
.main-header li,
.main-header a {
    position: relative;
    --az-list-spacing: 0;
    --az-list-indent: 0
}

.main-menu {
    display: block;
    padding: 0;
    padding-top: 15px;
    width: 100%;
    list-style: none;
    text-align: center
}

.main-menu .menu-item a {
    color: var(--az-color-white);
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5px;
    padding: 0;
    position: relative;
    text-decoration: none;
    z-index: 0
}

.main-menu .sub-menu {
    margin-left: 0;
    padding-left: 0;
    list-style: none
}

.main-menu .sub-menu .sub-menu a {
    padding-left: 15px
}

.main-menu .menu-item a:hover,
.main-menu .menu-item a:focus {
    color: #4a9fb5
}

.main-menu .menu-item.current-menu-item>a {
    color: #deeef2
}

.main-header {
    position: relative;
    z-index: 100
}

.main-header .main-header-wrapper {
    background-color: #deeef2
}

.main-header .bv-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: auto auto;
    padding-left: var(--az-col-spacing);
    padding-right: var(--az-col-spacing);
    padding-top: .5rem;
    padding-bottom: .5rem
}

.main-header.sticky-header {
    position: sticky;
    width: 100%;
    top: var(--az-admin-bar);
    transform: translate3d(0, 0, 0);
    transition: transform .1s ease-in-out
}

.main-header.sticky-header.hide-menu {
    transform: translate3d(0, -100%, 0);
    transition: transform .1s ease-in-out
}

.site-branding .site-logo {
    display: inline-flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.site-branding .site-logo img {
    max-width: unset;
    width: auto;
    height: 48px
}

.content-wrapper {
    transition: transform .3s ease-in-out
}

.page-title {
    display: block;
    padding-top: var(--az-pagetitle-spacing-top, var(--az-pagetitle-spacing));
    padding-bottom: var(--az-pagetitle-spacing-bottom, var(--az-pagetitle-spacing));
    background-color: #deeef2
}

.page-title .bv-container {
    padding-left: var(--az-col-spacing);
    padding-right: var(--az-col-spacing);
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0
}

.page-title .entry-title {
    margin-bottom: var(--az-content-spacing2);
    max-width: var(--az-block-max-width)
}

.page-title .entry-title:last-child {
    margin-bottom: 0
}

.page-title .entry-title+p {
    margin-bottom: var(--az-content-spacing2);
    max-width: var(--az-block-max-width)
}

.page-title.breadcrumbs-position-top .entry-title {
    margin-top: var(--az-content-spacing2);
    margin-bottom: 0
}

.page-title.breadcrumbs-position-top .entry-title {
    order: 2
}

.page-title.breadcrumbs-position-top .entry-title+p {
    order: 3;
    margin-top: var(--az-content-spacing2);
    margin-bottom: 0
}

.page-title.page-title-text-center {
    text-align: center
}

.page-title.page-title-text-center .breadcrumbs ul {
    justify-content: center
}

.page-title.page-title-text-center .entry-title,
.page-title.page-title-text-center .entry-title+p {
    align-self: center
}

.page-title.default-text-color * {
    color: var(--e-global-color-text)
}

.page-title.default-text-color .entry-subtitle {
    color: var(--az-color-text)
}

.page-title.primary-text-color * {
    color: var(--e-global-color-primary)
}

.page-title.secondary-text-color * {
    color: var(--e-global-color-secondary)
}

.page-title.white-text-color * {
    color: var(--az-color-white)
}

.page-title.dark-text-color * {
    color: var(--e-global-color-text)
}

.page-title.gray-text-color * {
    color: var(--e-global-color-light)
}

.page-title.primary-background-color {
    background-color: var(--e-global-color-primary)
}

.page-title.secondary-background-color {
    background-color: var(--e-global-color-secondary)
}

.page-title.white-background-color {
    background-color: var(--az-color-white)
}

.page-title.dark-background-color {
    background-color: var(--e-global-color-text)
}

.page-title.gray-background-color {
    background-color: var(--e-global-color-light)
}

.page-title.primary-font .entry-title {
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: var(--e-global-typography-primary-font-weight)
}

.page-title.secondary-font .entry-title {
    font-family: var(--e-global-typography-secondary-font-family);
    font-weight: var(--e-global-typography-secondary-font-weight)
}

.page-title.text-font .entry-title {
    font-family: var(--e-global-typography-text-font-family);
    font-weight: var(--e-global-typography-text-font-weight)
}

@media (max-width:766.98px) {
    .page-title {
        --az-pagetitle-spacing: 50px;
        padding-top: var(--az-col-sm-spacing);
        padding-bottom: var(--az-col-sm-spacing)
    }
}

.text-center {
    text-align: center !important
}

.main-footer {
    background: #fff;
}

.footer-text {
    padding-bottom: 40px;
    width: 100%
}

.footer-copyright-text,
.footer-text,
.footer-text p {
    color: #181818
}

.footer-text b {
    font-weight: 700
}

.main-footer a {
}

.main-footer a:hover {
}

.footer-copyright-inner {
    border-top: 1px solid var(--az-color-border)
}

.footer-copyright-inner .bv-container {
    justify-content: center;
    padding-top: var(--az-content-spacing);
    padding-bottom: var(--az-content-spacing)
}

.aziwp-comments {
    color: var(--az-color-text);
    margin-top: var(--az-col-v-spacing)
}

@media (max-width:766.98px) {
    .aziwp-comments {
        margin-top: var(--az-col-sm-spacing)
    }
}

.aziwp-has-avatar .aziwp-comment-content {
    padding-inline-start: 90px
}

@media (max-width:766.98px) {
    .aziwp-has-avatar .aziwp-comment-content {
        padding-inline-start: 50px
    }
}

.aziwp-comments-title {
    margin-bottom: var(--az-widget-spacing)
}

.aziwp-comment-list .children {
    margin-top: 0
}

@media (max-width:766.98px) {
    .aziwp-comment-list .children {
        --az-list-indent: 30px
    }
}

@media (min-width:767px) {
    .aziwp-comment-list .children {
        --az-list-indent: var(--az-widget-spacing)
    }
}

.aziwp-comment-list .comment-respond {
    padding-bottom: var(--az-widget-spacing)
}

.aziwp-comment-list .aziwp-comment-author {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 0
}

.aziwp-comment-inner {
    padding-top: var(--az-widget-spacing);
    padding-bottom: var(--az-widget-spacing);
    border-top: 1px solid var(--az-color-border)
}

.aziwp-comment-inner:not(.aziwp-has-reply-form):hover .comment-reply-link {
    color: #fff;
    background: var(--e-global-color-primary)
}

.aziwp-comment-inner:not(.aziwp-has-reply-form) .comment-reply-link:hover {
    background: var(--e-global-color-secondary)
}

.aziwp-comment-meta {
    position: relative;
    margin-bottom: var(--az-col-spacing)
}

@media (min-width:767px) {
    .aziwp-comment-meta {
        display: flex;
        align-items: center
    }
}

.aziwp-comment-meta img {
    position: absolute;
    left: 0;
    border-radius: var(--az-default-border-radius);
    max-width: 60px;
    max-height: 60px
}

@media (max-width:766.98px) {
    .aziwp-comment-meta img {
        max-width: 30px;
        max-height: 30px
    }
}

@media (min-width:767px) {
    .aziwp-comment-meta img {
        top: 0
    }
}

@media (max-width:766.98px) {
    .aziwp-has-avatar .aziwp-comment-meta {
        padding-inline-start: 50px
    }
}

@media (min-width:767px) {
    .aziwp-has-avatar .aziwp-comment-meta {
        padding-inline-start: 90px
    }
}

.aziwp-comment-meta-data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    font-weight: var(--e-global-typography-secondary-font-weight);
    text-transform: uppercase
}

@media (min-width:767px) {
    .aziwp-comment-meta-data {
        margin-inline-start: auto
    }
}

.aziwp-comment-meta-data .comment-edit-link:before,
.aziwp-comment-meta-data .comment-reply-login:before {
    content: "/";
    margin-left: 5px;
    margin-right: 5px
}

@media (max-width:766.98px) {
    .aziwp-comment-meta-data .comment-edit-link {
        display: none
    }
}

.aziwp-comment-meta-data .comment-reply-link {
    display: flex;
    line-height: 24px;
    height: 24px;
    padding: 0 10px;
    border-radius: var(--az-border-radius-btn);
    margin-inline-start: 10px;
    transition: var(--az-default-transition);
    align-items: center;
    transform: translateY(-2px)
}

#reply-title {
    display: flex;
    align-items: center;
    justify-content: space-between
}

#cancel-comment-reply-link {
    text-transform: uppercase;
    font-size: 12px;
    transition: var(--az-default-transition);
    font-weight: var(--e-global-typography-secondary-font-weight);
    letter-spacing: normal;
    display: flex
}

.comment-respond:not(:only-child) .comment-reply-title {
    padding-top: var(--az-widget-spacing);
    border-top: 1px solid var(--az-color-border)
}

.comment-respond+.aziwp-comment-list {
    margin-top: var(--az-widget-spacing)
}

.comment-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    --az-content-spacing: 0
}

.comment-form a {
    font-weight: var(--e-global-typography-accent-font-weight)
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
    --grid-col-span: span 1
}

.comment-form>* {
    grid-column: var(--grid-col-span, 1/-1)
}

.comment-form .logged-in-as,
.comment-form .comment-notes {
    font-size: var(--az-font-size-default)
}

.comment-form .required {
    color: red
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    position: relative
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-comment label {
    display: flex;
    font-size: var(--az-font-size-default);
    color: var(--az-color-text);
    margin-bottom: 0;
    position: absolute;
    align-items: center;
    cursor: text;
    margin-bottom: 0;
    height: var(--az-input-height);
    padding-left: var(--az-col-spacing);
    padding-right: var(--az-col-spacing);
    transition: var(--az-default-transition)
}

.comment-form-author:focus-within label,
.comment-form-author.aziwp-not-empty label,
.comment-form-email:focus-within label,
.comment-form-email.aziwp-not-empty label,
.comment-form-url:focus-within label,
.comment-form-url.aziwp-not-empty label,
.comment-form-comment:focus-within label,
.comment-form-comment.aziwp-not-empty label {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(20px, 0, 0)
}

.aziwp-comments-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid var(--az-color-border)
}

.error404 .content-wrapper .bv-container {
    height: calc(100vh - var(--az-navbar-height) - var(--az-admin-bar));
    align-items: center;
    padding: 0
}

.error404 .block-error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.error404 .block-error-404 .container {
    max-width: 80%
}

@media (min-width:767px) {
    .error404 .block-error-404 .container {
        max-width: 45%
    }
}

@media (min-width:1024.02px) {
    .error404 .block-error-404 .container {
        max-width: 33%
    }
}

.error404 h1 {
    font-size: 120px;
    letter-spacing: -.05em;
    color: var(--e-global-color-primary);
    line-height: .875em;
    margin-bottom: 0
}

@media (max-width:766.98px) {
    .error404 h1 {
        font-size: 90px;
        line-height: 85px
    }
}

.error404 .content-area h3 {
    margin-top: calc(0.3em + 10px)
}

.search-results .blog-layout-horizontal.main-sidebar .site-main {
    grid-template-columns: 1fr;
    grid-row-gap: var(--az-col-gap)
}

.search-results .aziwp-card {
    background: var(--e-global-color-light);
    border-radius: var(--az-default-border-radius);
    overflow: hidden
}

@media (max-width:766.98px) {
    .search-results .aziwp-card {
        gap: 0
    }
}

.search-results .aziwp-card .entry-wrapper {
    padding: var(--az-col-gap);
    flex: 3
}

.search-results .aziwp-card .entry-image {
    border-radius: 0
}

.search-results .aziwp-card .post-title a:hover {
    color: var(--e-global-color-primary)

}

.search-results .aziwp-card.type-aziwp-portfolio .entry-wrapper {
    padding-bottom: 0
}

.aziwp-widget>*:last-child {
    margin-bottom: 0
}

.aziwp-widget:not(:last-child) {
    margin-bottom: var(--az-widget-spacing, 50px)
}

.aziwp-widget .widget-title:not(:empty) {
    display: block;
    margin-bottom: 20px
}

@media (max-width:766.98px) {
    .aziwp-widget .widget-title:not(:empty) {
        margin-bottom: 15px
    }
}

.aziwp-widget ol,
.aziwp-widget ul {
    --az-list-indent: 0;
    list-style-type: none;
    --az-content-spacing: 0
}

.aziwp-widget li {
    color: var(--e-global-color-text)
}

.aziwp-widget li ul,
.aziwp-widget li ol {
    --az-list-indent: 20px
}

.aziwp-widget li .post_count {
    float: right
}

.search-form {
    position: relative
}

.search-form input {
    position: relative
}

.search-form input[type="search"]::-webkit-search-cancel-button,
.search-form #search-clear {
    display: none !important
}

.search-form button[type="submit"],
.search-form .wp-element-button[type="submit"],
.search-form .search-submit[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    padding: initial;
    width: var(--az-input-height);
    min-height: var(--az-input-height);
    border: none;
    box-shadow: none;
    transition: var(--az-default-transition);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23757575' aria-hidden='true' width='15' height='15' viewBox='0 0 15 15'%3E%3Cpath d='M14.8,13.7L12,11c0.9-1.2,1.5-2.6,1.5-4.2c0-3.7-3-6.8-6.8-6.8S0,3,0,6.8s3,6.8,6.8,6.8c1.6,0,3.1-0.6,4.2-1.5l2.8,2.8c0.1,0.1,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2C15.1,14.5,15.1,14,14.8,13.7z M1.5,6.8c0-2.9,2.4-5.2,5.2-5.2S12,3.9,12,6.8S9.6,12,6.8,12S1.5,9.6,1.5,6.8z'%3E%3C/path%3E%3C/svg%3E");
    background-color: #fff0;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    border-radius: var(--az-default-border-radius)
}

.search-form button[type="submit"]:hover,
.search-form .wp-element-button[type="submit"]:hover,
.search-form .search-submit[type="submit"]:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231a1a1a' aria-hidden='true' width='15' height='15' viewBox='0 0 15 15'%3E%3Cpath d='M14.8,13.7L12,11c0.9-1.2,1.5-2.6,1.5-4.2c0-3.7-3-6.8-6.8-6.8S0,3,0,6.8s3,6.8,6.8,6.8c1.6,0,3.1-0.6,4.2-1.5l2.8,2.8c0.1,0.1,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2C15.1,14.5,15.1,14,14.8,13.7z M1.5,6.8c0-2.9,2.4-5.2,5.2-5.2S12,3.9,12,6.8S9.6,12,6.8,12S1.5,9.6,1.5,6.8z'%3E%3C/path%3E%3C/svg%3E");
    background-color: #fff0
}

.search-form button[type="submit"]:focus,
.search-form .wp-element-button[type="submit"]:focus,
.search-form .search-submit[type="submit"]:focus {
    outline: none
}

.widget_media_gallery .gallery,
.entry-content .gallery {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: var(--az-content-spacing)
}

.widget_media_gallery .gallery-columns-2,
.entry-content .gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr)
}

.widget_media_gallery .gallery-columns-3,
.entry-content .gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr)
}

.widget_media_gallery .gallery-columns-4,
.entry-content .gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr)
}

.widget_media_gallery .gallery-columns-5,
.entry-content .gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr)
}

.widget_media_gallery .gallery-columns-6,
.entry-content .gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr)
}

.widget_media_gallery .gallery-item,
.entry-content .gallery-item {
    border-radius: var(--az-default-border-radius);
    overflow: hidden;
    display: block;
    line-height: 0;
    position: relative
}

.widget_media_gallery .gallery-item img,
.entry-content .gallery-item img {
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    transition: var(--az-default-transition2)
}

.widget_media_gallery .gallery-item:hover img,
.entry-content .gallery-item:hover img {
    transform: scale(1.07)
}

.widget_media_gallery .gallery-icon,
.entry-content .gallery-icon {
    overflow: hidden
}

.widget_rss li {
    --az-list-spacing: 1.5em
}

.widget_rss li .rsswidget {
    font-weight: var(--e-global-typography-secondary-font-weight)
}

.widget_rss .rsswidget {
    display: block
}

.widget_rss .rsswidget img {
    display: none
}

.widget_rss cite {
    font-weight: var(--e-global-typography-secondary-font-weight);
    color: var(--e-global-color-text);
    margin-top: .5em;
    display: block
}

.widget_rss .rss-date {
    margin-bottom: .5em;
    display: block
}

.widget_calendar table {
    position: relative;
    width: 100%;
    font-size: var(--az-font-size-default);
    border: none
}

.widget_calendar table caption {
    font-weight: inherit;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--az-color-border);
    font-size: var(--az-fontsize-content);
    color: var(--e-global-color-text)
}

.widget_calendar table thead th,
.widget_calendar table tbody td {
    text-align: center;
    padding: 10px 0;
    border: none;
    font-weight: inherit;
    color: var(--e-global-color-text);
    font-size: var(--az-font-size-default)
}

.widget_calendar table tbody td {
    overflow: hidden;
    position: relative;
    line-height: 1.3
}

.widget_calendar table tbody td a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 0;
    margin: -10px 0;
    background: rgb(215 222 229 / .2);
    transition: var(--az-default-transition)
}

.widget_calendar table tbody td a:after {
    position: absolute;
    content: "";
    bottom: 7px;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: var(--e-global-color-primary);
    transition: var(--az-default-transition)
}

.widget_calendar table tbody td a:hover {
    color: var(--az-color-white);
    background: var(--e-global-color-primary)
}

.widget_calendar table tbody td a:hover:after {
    background: var(--az-color-white)
}

.widget_calendar table tbody #today {
    color: var(--az-color-white);
    font-weight: var(--e-global-typography-accent-font-weight);
    background: var(--e-global-color-primary);
    border-radius: var(--az-default-border-radius)
}

.widget_calendar table tbody #today a {
    color: inherit;
    background: inherit
}

.widget_calendar table tbody #today a:after {
    background: currentColor
}

.widget_calendar table tfoot {
    position: absolute;
    top: 0;
    width: 100%;
    font-weight: var(--e-global-typography-accent-font-weight)
}

.widget_calendar table tfoot tr {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.widget_calendar table tfoot td {
    border: none
}

.tagcloud,
.entry-footer .tags {
    display: flex;
    flex-wrap: wrap;
    margin: -8px -4px 0 -4px
}

.tagcloud a,
.entry-footer .tags a {
    display: flex;
    align-items: center;
    height: 36px;
    font-size: 11px !important;
    text-transform: uppercase;
    line-height: 100%;
    padding: 0 12px;
    margin: 8px 4px 0 4px;
    border-radius: var(--az-default-border-radius);
    border: 1px solid var(--az-color-border);
    transition: var(--az-default-transition);
    font-weight: var(--e-global-typography-secondary-font-weight)
}

.tagcloud a:hover,
.entry-footer .tags a:hover {
    color: #fff;
    border-color: var(--e-global-color-primary);
    background: var(--e-global-color-primary)
}

.tagcloud a span,
.entry-footer .tags a span {
    margin-left: .3em
}

.widget_recent_entries ul li {
    display: flex;
    flex-direction: column;
    --az-list-spacing: 0.75em
}

.widget_recent_entries ul li:not(:last-child) .post-date {
    margin-bottom: 10px
}

.widget_recent_entries .recent-posts-thumb li {
    margin-bottom: var(--az-col-spacing)
}

.widget_recent_entries .recent-posts-thumb a {
    display: flex;
    gap: var(--az-col-spacing);
    align-items: center
}

.widget_recent_entries .recent-posts-thumb a .recent-post-thumbnail {
    flex: 1;
    border-radius: var(--az-default-border-radius);
    overflow: hidden;
    display: block;
    line-height: 0;
    position: relative;
    height: fit-content;
    max-width: max-content
}

.widget_recent_entries .recent-posts-thumb a .recent-post-thumbnail img {
    backface-visibility: hidden;
    transition: var(--az-default-transition2);
    aspect-ratio: 1;
    object-fit: cover
}

.widget_recent_entries .recent-posts-thumb a .recent-post-title {
    flex: 2;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    font-weight: var(--e-global-typography-accent-font-weight);
    color: var(--e-global-color-text);
    transition: var(--az-default-transition)
}

.widget_recent_entries .recent-posts-thumb a:hover img {
    transform: scale(1.07)
}

.widget_recent_entries .recent-posts-thumb a:hover .recent-post-title {
    color: var(--e-global-color-primary)
}

.widget_recent_comments ul li a {
    word-wrap: break-word
}

.widget_recent_comments li {
    --az-list-spacing: 0.75em
}

.widget_recent_comments .comment-author-link {
    font-weight: var(--e-global-typography-secondary-font-weight);
    color: var(--e-global-color-text)
}

.default-btn {
    border-radius: var(--az-border-radius-btn);
    font-size: 15px;
    padding: 15px 30px;
    display: inline-block;
    color: #fff;
    fill: #fff;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    background-color: #4a9fb5;
    -webkit-transition: var(--az-default-transition);
    transition: var(--az-default-transition)
}

.default-btn::before {
    position: absolute;
    content: "";
    border-radius: inherit;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: 102% 102%;
    opacity: 0
}

.default-btn:hover {
    background-color: #2d361f
}

.default-btn:hover::before {
    opacity: 1
}

.default-btn i {
    display: inline-block;
    vertical-align: middle
}

body.single-post article.article-single>.entry-content>*.alignwide {
    max-width: var(--az-container-max-width)
}

body.single-post article.article-single>.entry-content>*:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
    max-width: var(--az-block-max-width);
    margin-right: auto;
    margin-left: auto
}

body.single-post article.article-single>.entry-content a:not(.wp-block-button__link) {
    color: var(--e-global-color-primary)
}

.no-thumbnail .entry-content {
    margin-top: var(--az-widget-spacing)
}

.alignleft,
.alignright {
    margin-top: .3em;
    margin-bottom: .3em
}

.alignleft {
    float: left;
    margin-inline-end: 1.5em
}

.alignright {
    float: right;
    margin-inline-start: 1.5em
}

.aligncenter {
    margin-left: auto;
    margin-right: auto
}

.entry-content .alignleft {
    margin-inline-end: var(--az-content-spacing)
}

.entry-content .alignright {
    margin-inline-start: var(--az-content-spacing)
}

.entry-content:after {
    display: table;
    clear: both;
    content: ""
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
    width: var(--az-block-max-width);
    max-width: var(--az-container-max-width)
}

.wp-block-image:last-child {
    margin-bottom: 0
}

.wp-block-image.is-style-rounded img {
    border-radius: var(--az-default-border-radius)
}

.wp-block-buttons .wp-block-button .wp-block-button__link.is-style-outline {
    padding: var(--az-btn-padding)
}

.wp-block-button {
    margin-bottom: var(--az-content-spacing)
}

article>.entry-content>table,
article>.entry-content>iframe {
    max-width: var(--az-block-max-width)
}

article>.entry-content .wp-block-embed {
    margin-bottom: var(--az-widget-spacing)
}

article>.entry-content .wp-block-embed iframe {
    max-width: 100%;
    aspect-ratio: 1.7777777778;
    height: auto;
    border-radius: var(--az-default-border-radius)
}

.entry-content figcaption {
    font-size: var(--az-fontsize-content);
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    padding: var(--az-col-spacing) 0 !important;
    background: var(--e-global-color-light)
}

.wp-block-table:not(.has-border-color) td,
.wp-block-table:not(.has-border-color) th {
    border-color: var(--az-color-border)
}

.wp-block-search .wp-block-search__label {
    margin-bottom: var(--az-content-spacing2);
    font-weight: var(--e-global-typography-text-font-weight);
    display: block
}

.wp-block-spacer {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.wp-block-spacer+* {
    margin-top: 0 !important
}

.wp-block-columns {
    gap: var(--az-col-gap)
}

.wp-block-columns .wp-block-column>*:last-child {
    margin-bottom: 0
}

.wp-block-gallery {
    width: 100%;
    margin-bottom: calc(var(--az-widget-spacing) - 15px)
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
    display: inline-flex
}

.wp-block-gallery a:after {
    display: none
}

.wp-block-separator {
    border: none;
    background: var(--e-global-color-primary)
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    --block-max-width: 100px
}

.wp-block-separator:not(.is-style-dots) {
    height: 2px
}

@media (max-width:600px) {
    .wp-block-media-text .wp-block-media-text__content {
        padding: var(--az-content-spacing)
    }
}

.wp-block-media-text .wp-block-media-text__content p:last-child {
    margin-bottom: 0
}

@media (max-width:600px) {
    .wp-block-media-text:not(.has-background) .wp-block-media-text__content {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0
    }
}

.post-password-form>p:last-child {
    display: grid;
    align-items: flex-end;
    grid-column-gap: var(--az-col-spacing);
    grid-row-gap: var(--az-col-spacing)
}

@media (min-width:767px) {
    .post-password-form>p:last-child {
        grid-template-columns: 1fr 200px
    }
}

.post-password-form>p:last-child>label {
    margin-bottom: 0
}

.post-password-form>p:last-child>label input {
    margin-top: .5em
}

.entry-content blockquote,
.wp-block-quote {
    padding: var(--az-col-gap);
    border: 1px solid var(--az-color-border);
    border-radius: var(--az-default-border-radius)
}

.entry-content blockquote:not(.is-style-plain):not(.has-text-align-center):not(.has-text-align-right),
.wp-block-quote:not(.is-style-plain):not(.has-text-align-center):not(.has-text-align-right) {
    border-inline-start: 4px solid var(--e-global-color-primary)
}

.entry-content blockquote:not(.is-style-plain).has-text-align-center,
.wp-block-quote:not(.is-style-plain).has-text-align-center {
    padding-block: 30px;
    border-block: 3px solid var(--e-global-color-primary)
}

.entry-content blockquote:not(.is-style-plain).has-text-align-right,
.wp-block-quote:not(.is-style-plain).has-text-align-right {
    border-inline-end: 4px solid var(--e-global-color-primary)
}

.entry-content blockquote:not(.has-text-align-center):not(.has-text-align-right),
.wp-block-quote:not(.has-text-align-center):not(.has-text-align-right) {
    padding-inline-start: 30px
}

.entry-content blockquote.has-text-align-right,
.wp-block-quote.has-text-align-right {
    padding-inline-end: 30px
}

.entry-content blockquote p:last-of-type,
.wp-block-quote p:last-of-type {
    margin-bottom: 0
}

.entry-content blockquote cite,
.wp-block-quote cite {
    display: block;
    margin-top: var(--az-content-spacing2);
    font-size: var(--az-fontsize-content);
    color: var(--e-global-color-primary);
    font-weight: var(--e-global-typography-secondary-font-weight)
}

.wp-block-pullquote {
    position: relative;
    padding: var(--az-input-height);
    text-align: initial;
    border-width: 2px;
    border-style: solid;
    border-color: var(--e-global-color-primary);
    border-radius: var(--az-default-border-radius)
}

.wp-block-pullquote blockquote {
    position: relative;
    isolation: isolate
}

.wp-block-pullquote blockquote p {
    margin-bottom: 1em
}

.wp-block-pullquote blockquote p:last-child {
    margin-bottom: 0
}

.has-background:is(p,
.wp-block-group) {
    padding: var(--az-content-spacing)
}

body.single-post article.article-single>.entry-content .wp-block-cover-image-text,
body.single-post article.article-single>.entry-content .wp-block-cover-image-text a,
body.single-post article.article-single>.entry-content .wp-block-cover-image-text a:active,
body.single-post article.article-single>.entry-content .wp-block-cover-image-text a:focus,
body.single-post article.article-single>.entry-content .wp-block-cover-image-text a:hover,
body.single-post article.article-single>.entry-content .wp-block-cover-text,
body.single-post article.article-single>.entry-content .wp-block-cover-text a,
body.single-post article.article-single>.entry-content .wp-block-cover-text a:active,
body.single-post article.article-single>.entry-content .wp-block-cover-text a:focus,
body.single-post article.article-single>.entry-content .wp-block-cover-text a:hover,
body.single-post article.article-single>.entry-content section.wp-block-cover-image h2,
body.single-post article.article-single>.entry-content section.wp-block-cover-image h2 a,
body.single-post article.article-single>.entry-content section.wp-block-cover-image h2 a:active,
body.single-post article.article-single>.entry-content section.wp-block-cover-image h2 a:focus,
body.single-post article.article-single>.entry-content section.wp-block-cover-image h2 a:hover {
    color: #fff
}

.aziwp-widget.widget_block .wp-block-heading,
.aziwp-widget.widget_block .wp-block-search__label {
    font-family: var(--e-global-typography-secondary-font-family);
    font-weight: var(--az-h4-font-weight);
    font-size: var(--az-h4-font-size);
    line-height: var(--az-h4-line-height);
    color: var(--e-global-color-text);
    margin-bottom: calc(0.3em + 10px)
}

.aziwp-widget.widget_block .wp-block-latest-comments__comment {
    margin-bottom: var(--az-list-spacing)
}

.aziwp-widget.widget_block .wp-block-latest-comments__comment-author {
    font-weight: var(--e-global-typography-secondary-font-weight)
}

body.single-post article.article-single>.entry-content .wp-block-social-link-anchor {
    color: currentColor
}

.top-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

@media screen and (max-width:767px) {
    .top-btn {
        display: none
    }
}

.primary-btn {
    color: #fff;
    background: var(--e-global-color-primary);
    display: inline-flex;
    line-height: 34px;
    height: 34px;
    padding: 0 1rem;
    border-radius: var(--az-border-radius-btn);
    margin-inline-start: 10px;
    transition: var(--az-default-transition);
    align-items: center;
    transform: translateY(0)
}

.primary-btn:hover {
    background: #2D361D;
    color: #fff
}

.h-100 {
    height: 100%
}
.wizardStarted,
.elementor-widget-aziwp-forms .elementor-widget-container {
	margin-left:-1.5rem;
	margin-right:-1.5rem;
}

.wizard {
    display: block;
    width: 100%;
	padding:1.5rem;
}

.wizard a {
    outline: 0;
}

.wizard ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.wizard ul > li
{
    display: block;
    padding: 0;
}
/*
    Wizard
*/
.wizard > .actions,
.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
}
.wizard > .steps
{
	margin-bottom:1rem;
}
.wizard > .actions
{
	margin-top:1rem;
}
.wizard > .steps .number
{
    font-size: 1.429em;
}
.wizard > .actions > ul,
.wizard > .steps > ul
{
    display: flex;
	justify-content:center;
	align-items:center;
	gap:1rem;
	width:100%;
}
.wizard > .actions > ul li {
	width:50%;
}
.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    display: block;
    width: auto;
    margin: 0;
    padding: 1rem;
    text-decoration: none;

    -webkit-border-radius: .8rem;
    -moz-border-radius: .8rem;
    border-radius: .8rem;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    background: #eee;
    color: #aaa;
    cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    background: #2184be;
    color: #fff;
    cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background: #9dc8e2;
    color: #fff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #ff3111;
    color: #fff;
}

.wizardStarted,
.wizard > .content
{
    background: #fff;
    display: block;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-border-radius: .8rem;
    -moz-border-radius: .8rem;
    border-radius: .8rem;
	box-shadow:0 0 10px rgba(0,0,0,.2);
}
.wizardStarted {
	padding:2.5rem;
}
.wizard > .content > .body
{
    float: left;
    position: absolute;
    width: 100%;
    height: auto;
    padding:2.5rem;
}
.wizardStarted  header,
.wizard > .content > .body header {
	margin-bottom:1.5rem;
	text-align:center;
}
.wizardStarted  header h2,
.wizard > .content > .body header h2 {
	text-align:center;
	font-size:26px;
}
.wizardStarted  header .step-icon,
.wizard > .content > .body header .step-icon{
	display:flex;
	width:100%;
	justify-content:center;
	margin:15px 0 30px;
	font-size:52px;
}
.wizardStarted  header .step-icon svg,
.wizard > .content > .body header .step-icon svg{
	width:52px;
	height:auto;
}
.wizard > .content > .body input.error
{
	border: 1px solid #dc3545;
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.wizard > .content > .body input.valid
{
    border:1px solid #198754;
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.wizard > .content > .body em.error
{
    color: #dc3545;
    display: block;
	line-height:1.5;
	margin-top:5px;
}
.wizard > .content > .body .step-html-plainn{
	text-align:center;
}
.wizard > .content > .body .step-html-alert{
	background: #f0f7fa;
	border-left: 4px solid #4a9fb5;
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 25px;
	text-align:center;
}
.wizard > .actions button {
    background: #4a9fb5;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	width:100%;
	text-align:center;
	cursor:pointer;
}
.wizard > .actions button:hover,
.wizard > .actions button:active {
    background: #3a8fa5;
}
.wizard > .actions button[data-btn=prev] {
    background: #f5f5f5;
    color: #666;
}
.wizard > .actions li:not(.disabled) button[data-btn=prev]:hover,
.wizard > .actions li:not(.disabled) button[data-btn=prev]:active {
    background: #e0e0e0;;
}

.wizard > .actions .disabled button,
.wizard > .actions .disabled button:hover,
.wizard > .actions .disabled button:active{
	opacity:.5;
	cursor:not-allowed;
}
.is-loading {
	position:relative;
}
.is-loading::before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	background-color:rgba(255, 255, 255,.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index:998;
}
.is-loading::after {
	content:"";
	position:absolute;
	top:50%;
	left:calc(50% - 25px);
	height:50px;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side, #4a9fb5 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#4a9fb5);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
	z-index:999;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}
.wizard > .loading
{
}

.wizard > .loading .spinner
{
}

.form-group {
	margin-bottom:1rem;
}
.form-group input[type=checkbox],
.form-group input[type=radio] {
  width: 1rem;
  height: 1rem;
  vertical-align:middle;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}
.form-group input[type=checkbox] {
  border-radius: 0.25em;
}
.form-group input[type=radio] {
  border-radius: 50%;
}
.form-group input[type=checkbox]:active,
.form-group input[type=radio]:active {
  filter: brightness(90%);
}
.form-group input[type=checkbox]:focus,
.form-group input[type=radio]:focus {
  border-color: #c1dee6;
  outline: 0;
}
.form-group input[type=checkbox]:checked,
.form-group input[type=radio]:checked {
  background-color: #4a9fb5;
  border-color: #4a9fb5;
}
.form-group input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-group input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-group input[type=checkbox]:indeterminate {
  background-color: #4a9fb5;
  border-color: #4a9fb5;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-group input[type=checkbox]:disabled,
.form-group input[type=radio]:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-group input[type=checkbox][disabled] ~ label,
.form-group input[type=radio][disabled] ~ label,
.form-group input[type=checkbox]:disabled ~ label,
.form-group input[type=radio]:disabled ~ label {
  cursor: default;
  opacity: 0.5;
}
.form-group label{

  display:block;
  color: #222;
  font-weight: 600;
  margin-bottom: 0;
}
.form-group .input-field{
	border-radius: 0.375rem;
	background-color: #ffffff; 
	box-shadow: 0px 2px 2px #D6D6D6;
	border:none;
	padding: .5rem .75rem;
	margin-bottom: 0;
	width: 100%;
	box-sizing:border-box;
	position:relative;
	border: 1px solid #ced4da;
}
.list-checkbox {
	display:flex;
	align-items:flex-start;
	flex-direction:column;
	gap:.2rem 1rem;
}
.list-checkbox-img {
	display:flex;
	gap:.2rem 1rem;
	position:relative;
	align-items: stretch; 
	flex-wrap: wrap;
}
.list-checkbox-img input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.list-checkbox-img li {
	flex:1;
	padding:0px;
	margin:0px;
	width:50%;
	display:flex;
	flex-direction:column;
}
.list-checkbox-img li label {
	display:block;
	text-align:center;
	width:100%;
	height:100%;
	padding:1rem;
	border-radius:1rem;
	background-color:#ffffff;
	border:2px solid #ededed;
	transition: all 0.3s;
}
.list-checkbox-img li label:hover {
  transform: scale(1.01);
  background-color: #f0f7fa;
}
.list-checkbox-img li input[type="radio"] + label:hover,
.list-checkbox-img li input[type="radio"]:checked + label {
	border-color:#4a9fb5;
	background-color: #f0f7fa;
}

.list-checkbox-img li label img {
	max-width:50px;
}
.list-checkbox-img li label span {
	margin-top:1rem;
	display:block;
	text-align:center;
	font-size:18px;
	font-weight:700;
	color:#4a9fb5;
}

.list-checkbox li{
	display:flex;
	width:100%;
}
.list-checkbox li label{
	display:flex;
	align-items:center;
	gap:.3rem;
	width:100%;
	padding:10px;
	background-color:#fff;
	border:1px solid #ededed;
}
.list-checkbox li label:hover,
.list-checkbox li label.selected {
	border-color:#4a9fb5;
	background-color:#f0f7fa;
}

.form-group select.input-field {
  display: block;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #181818;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-group select.input-field {
    transition: none;
  }
}
.form-group .input-field:focus {
  border-color: #c1dee6;
  outline: 0;
}
.form-group select.input-field[multiple], 
.form-group select.input-field[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-group .input-field:disabled {
  background-color: #e9ecef;
}
.form-group select.input-field:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}
.form-group.floating {
  position: relative;
}
.form-group.floating > .input-field {
  height: calc(3.5rem + 10px);
  line-height: 1.25;
}
.form-group.floating > label {
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 100%;
  padding: .5rem 0.75rem 1.75rem;
  line-height:normal;
  font-size:13px;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.form-group.floating input.valid,
.form-group.floating input.error {
	background-position: right calc(.75rem + 2px) top calc(1.725rem + 2px) !important;
}
.form-group.floating > .input-field,
.form-group.floating > .input-field-plaintext {
  padding: 1.725rem 0.75rem 0.725rem;
}
.form-group.floating > .input-field ~ label,
.form-group.floating > .input-field-plaintext ~ label {
  opacity: 1;
}
.form-group.floating > .input-field-plaintext ~ label {
  border-width: 1px 0;
}
.form-group .hasRequired-mark:after {
    content: "*";
	display:inline-block;
    color: red;
    padding-left: 0.3rem;
}
.step-render-fields{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin-left:-15px;
	margin-right:-15px;
}
.step-render-fields .form-group{
	padding-left:15px;
	padding-right:15px;
}

.blossom-file-upload {
    border: 2px dashed #d0d0d0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.blossom-file-upload:hover {
    border-color: #4a9fb5;
    background: #f0f7fa;
}

.blossom-file-upload.has-file {
    border-color: #4a9fb5;
    background: #f0f7fa;
}

.blossom-file-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #4a9fb5;
}

.blossom-file-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}
.file-list-items {
    margin-top: 10px;
    margin-bottom: 25px;
}
.file-list-items .file-item {
    font-size: 14px;
    color: #4a9fb5;
    font-weight: 600;
    margin-top: 10px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:.3rem;
	width:100%;
	padding:5px 10px;
	background-color:#fff;
	border:1px solid #ededed;
}
.file-list-items .file-item .aziwp--removefile {
	color:red;
	font-size:16px;
}
.form-group input[type="file"] {
    display: none;
}

.blossom-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.blossom-error.show {
    display: block;
}
.togglerMenu .burger-icon {
    position: relative;
    width: 29px;
    height: 10px;
    display: inline-block
}

.togglerMenu .burger-icon-top,
.togglerMenu .burger-icon-bottom {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1), -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1)
}

.togglerMenu .burger-icon-top:before,
.togglerMenu .burger-icon-top:after,
.togglerMenu .burger-icon-bottom:before,
.togglerMenu .burger-icon-bottom:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: .99
}

.togglerMenu .burger-icon-top:before,
.togglerMenu .burger-icon-bottom:before {
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s
}

.togglerMenu .burger-icon-top:after,
.togglerMenu .burger-icon-bottom:after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1), -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1)
}

.togglerMenu .burger-icon-top {
    top: 0
}

.togglerMenu .burger-icon-bottom {
    bottom: 0
}

.togglerMenu .burger-icon-bottom:before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left
}

.togglerMenu .burger-icon-bottom:after {
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right
}

.togglerMenu:hover .burger-icon-top:before,
.togglerMenu:hover .burger-icon-bottom:before {
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1), -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1)
}

.togglerMenu:hover .burger-icon-top:after,
.togglerMenu:hover .burger-icon-bottom:after {
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s
}

.main-navbar-wrapper .close-navg {
    position: absolute;
    top: 75px;
    left: 43px;
    z-index: 99;
    cursor: pointer;
    height: 40px;
    width: 40px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #fff
}

.main-navbar-wrapper .close-navg .burger-icon-top,
.main-navbar-wrapper .close-navg .burger-icon-bottom {
    display: block;
    position: absolute;
    top: 19px;
    left: 5px;
    width: 29px;
    height: 2px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1), -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1)
}

.main-navbar-wrapper .close-navg .burger-icon-top:before,
.main-navbar-wrapper .close-navg .burger-icon-top:after,
.main-navbar-wrapper .close-navg .burger-icon-bottom:before,
.main-navbar-wrapper .close-navg .burger-icon-bottom:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: .99
}

.main-navbar-wrapper .close-navg .burger-icon-top:before,
.main-navbar-wrapper .close-navg .burger-icon-bottom:before {
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s
}

.main-navbar-wrapper .close-navg .burger-icon-top:after,
.main-navbar-wrapper .close-navg .burger-icon-bottom:after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1), -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1)
}

.main-navbar-wrapper .close-navg .burger-icon-top {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.main-navbar-wrapper .close-navg .burger-icon-bottom {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg)
}

.main-navbar-wrapper .close-navg .burger-icon-bottom:before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left
}

.main-navbar-wrapper .close-navg .burger-icon-bottom:after {
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right
}

.main-navbar-wrapper .close-navg:hover .burger-icon-top:before,
.main-navbar-wrapper .close-navg:hover .burger-icon-bottom:before {
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1), -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1)
}

.main-navbar-wrapper .close-navg:hover .burger-icon-top:after,
.main-navbar-wrapper .close-navg:hover .burger-icon-bottom:after {
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(.165, .84, .44, 1) 0.2s
}

.main-navbar-wrapper {
    visibility: hidden;
    overflow: hidden;
    overflow-y: auto;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 95px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

.main-navbar-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(38 46 27 / .8);
    backdrop-filter: blur(10px);
    z-index: -1
}

.main-navbar-wrapper.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.footer-text p {
    margin: 0
}

.bv-container.top-footer {
    padding-top: 0;
    padding-bottom: 0
}

.back-to-top {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: -50px;
    text-decoration: none;
    background-color: var(--az-color-white);
    font-size: var(--az-font-size-default);
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    line-height: 51px;
    transition: var(--az-default-transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

@media (max-width:1024px) {
    .back-to-top {
        bottom: 15px
    }
}

.back-to-top:before {
    content: "";
    display: block;
    background-color: var(--e-global-color-primary);
    opacity: .15;
    width: 100%;
    height: 100%;
    position: absolute
}

.back-to-top:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
}

.back-to-top i.fa {
    display: inline-block;
    content: "";
    font-size: 16px;
    margin: 0;
    color: var(--e-global-color-primary);
    transition: var(--az-default-transition)
}

.back-to-top.active {
    right: 30px
}

@media (max-width:1024px) {
    .back-to-top.active {
        right: 15px
    }
}

.back-to-top.left-aligned {
    right: inherit;
    left: -50px
}

.back-to-top.left-aligned.active {
    left: 30px;
    right: inherit
}

@media (max-width:1024px) {
    .back-to-top.left-aligned.active {
        left: 15px
    }
}

.back-to-top.scroll-position-style {
    background: #fff0;
    border-radius: 99px;
    box-shadow: inset 0 0 0 2px rgb(0 0 0 / .5)
}

.back-to-top.scroll-position-style:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.back-to-top.scroll-position-style:hover .icon-arrow-up {
    opacity: 1
}

.back-to-top.scroll-position-style .icon-arrow-up {
    opacity: .4;
    transition: var(--az-default-transition)
}

.back-to-top.scroll-position-style circle {
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 262px;
    box-sizing: border-box;
    transition: var(--az-default-transition);
    stroke: var(--e-global-color-primary)
}

.back-to-top.scroll-position-style svg {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.back-to-top.scroll-position-style:before {
    display: none
}

.back-to-top.secondary-color {
    color: var(--e-global-color-secondary)
}

.back-to-top.secondary-color .icon-arrow-up {
    background-color: var(--e-global-color-secondary)
}

.back-to-top.secondary-color::before {
    background-color: var(--e-global-color-secondary)
}

.back-to-top.secondary-color.scroll-position-style circle {
    stroke: var(--e-global-color-secondary)
}

.default-btn,
.primary-btn {
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.default-btn:before,
.primary-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #4a9fb5;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1
}

.default-btn:hover:before,
.primary-btn:hover:before {
    width: 100%
}

@media (max-width:767px) {
    .contact-btns {
        width: 100%;
        flex-direction: column
    }
    .contact-btns .contact-btninfo {
        width: 100%;
        padding: 15px
    }
}

@media (min-width:1024px) {
    .aziwp-widget .widget-title:not(:empty) {
        font-size: var(--az-h5-font-size);
        font-weight: var(--az-h5-font-weight)
    }
    .blog-layout-grid .aziwp-card .post-title {
        line-height: var(--az-h4-line-height);
        font-size: var(--az-h4-font-size);
        font-weight: var(--e-global-typography-primary-font-weight)
    }
    .entry-meta,
    .category-meta {
        font-family: var(--e-global-typography-secondary-font-family);
        font-weight: var(--e-global-typography-secondary-font-weight);
        font-size: 13px
    }
    .blog-layout-horizontal .aziwp-card .entry-wrapper .post-title {
        font-size: var(--az-h4-font-size);
        line-height: var(--az-h4-line-height)
    }
    .page-title.default-text-color .entry-subtitle {
        font-size: calc(var(--az-fontsize-content) + 2px)
    }
}

@media (max-width:1024px) {
    .breadcrumbs ul,
    .page-title .entry-title+p {
        --az-fontsize-content: var(--az-h5-font-size)
    }
    .widget_recent_entries .recent-posts-thumb a .recent-post-title {
        font-size: var(--az-h4-font-size)
    }
    .blog-layout-grid .aziwp-card .post-title {
        font-size: var(--az-h4-font-size)
    }
}