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

:root {
    --j-p-margin-bottom: 20px;
    --j-list-margin-bottom: 20px;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

html {
    margin-top: 32px !important;
}

body {
    overflow-x: hidden;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
    margin: 0 0 var(--j-p-margin-bottom);
    color: #d5d5d5;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 4px;
}

h6,
h5,
h4,
h3,
h2,
h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.2;
}

h1,
.h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: var(--s-text-color);
}

h2,
.h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    color: var(--s-text-color);
}

h2,
h3 {
    margin-bottom: var(--s-margin-title) !important;
}

h2.wp-block-heading {
    margin-top: 60px;
}

h3,
.h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--s-text-color);
}

h3.wp-block-heading {
    margin-top: 60px;
}

h4,
.h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    color: var(--s-text-color);
}

h4.wp-block-heading {
    margin-top: 40px;
}

h5,
.h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--s-text-color);
}

@media (max-width: 991px) {

    h1,
    .h1 {
        font-size: 30px;
        line-height: 36px;
    }

    h2,
    .h2 {
        font-size: 24px;
        line-height: 32px;
    }

    h2 {
        margin-bottom: var(--s-margin-title-mob) !important;
    }

    h2.wp-block-heading {
        margin-top: 50px;
    }

    h3,
    .h3 {
        font-size: 22px;
        line-height: 28px;
    }

    h3.wp-block-heading {
        margin-top: 50px;
    }

    h4,
    .h4 {
        font-size: 18px;
        line-height: 24px;
    }

    h4.wp-block-heading {
        margin-top: 50px;
    }

    h5,
    .h5 {
        font-size: 16px;
        line-height: 22px;
    }
}

abbr[title],
abbr[data-bs-original-title] {
    text-decoration: underline dotted;
    cursor: help;
    text-decoration-skip-ink: none;
}

address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: var(--j-p-margin-bottom);
}

ol,
ul {
    padding-left: 0;
    margin-bottom: var(--j-list-margin-bottom);
    list-style: none;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: var(--j-p-margin-bottom);
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

ul {
    padding: 0;
    margin: 0 0 var(--s-margin-paragraph);
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: var(--s-text-color);
}

ul li:not(:last-child) {
    margin-bottom: 18px;
}

ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--s-accent);
    background-image: url("../images/check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    color: #FFFFFF;
}

ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0 0 var(--s-margin-paragraph);
    list-style: none;
    counter-reset: list-inc;
}

ol li {
    position: relative;
    padding-left: 40px;
    line-height: 22px;
    counter-increment: list-inc;
    color: var(--s-text-color);
}

ol li::before {
    content: counter(list-inc);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: var(--s-accent);
    border-radius: 50%;
    font-size: 12px;
    color: #FFFFFF;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: var(--j-p-margin-bottom);
    margin-left: 0;
}

blockquote {
    margin: 0 0 var(--j-p-margin-bottom);
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 0.875em;
}

mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    text-decoration: none !important;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-size: 1em;
    direction: ltr
        /* rtl:ignore */
    ;
    unicode-bidi: bidi-override;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: var(--j-p-margin-bottom);
    overflow: auto;
    font-size: 0.875em;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

code {
    font-size: 0.875em;
    color: #d63384;
    word-wrap: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 0.875em;
    color: #fff;
    background-color: #212529;
}

kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700;
}

figure {
    margin: 0 0 var(--j-p-margin-bottom);
}

img,
svg {
    vertical-align: middle;
    max-width: inherit;
    height: auto;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #6c757d;
    text-align: left;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
    border: none;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role=button] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: var(--j-p-margin-bottom);
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend+* {
    clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::file-selector-button {
    font: inherit;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

button {
    background-color: transparent;
    border: none;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: normal;
    vertical-align: middle;
    cursor: pointer;
    padding: 0;
    outline: inherit;
    user-select: none;
    white-space: nowrap;
}

p {
    margin: 0 0 var(--s-margin-paragraph);
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: var(--s-text-color);
}

strong {
    font-weight: 800 !important;
}