@font-face {
    font-family: Vela Sans;
    src: url(../assets/woff2/subset-VelaSans-Medium.woff2) format("woff2"), url(../assets/woff/subset-VelaSans-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Vela Sans;
    src: url(../assets/woff2/subset-VelaSans-Regular.woff2) format("woff2"), url(../assets/woff/subset-VelaSans-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Vela Sans;
    src: url(../assets/woff2/subset-VelaSans-SemiBold.woff2) format("woff2"), url(../assets/woff/subset-VelaSans-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Vela Sans;
    src: url(../assets/woff2/subset-VelaSans-Light.woff2) format("woff2"), url(../assets/woff/subset-VelaSans-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

:root {
    --ff: "Vela Sans", sans;
    --font: 400 18px/1.5 var(--ff);
    --trs-in: .1s;
    --trs-out: .3s;
    --bdrs: 32px;
    --dark-100: #2D2C38;
    --dark-90: #1B3550;
    --dark-80: #25405C;
    --dark-50: #8D8BA2;
    --dark-40: #BEC0C9;
    --dark-25: #E2E3E7;
    --dark-20: #F5F8FA;
    --dark-10: #FFFFFF;
    --color-100: #49b1df;
    --color-90: #059CCC;
    --color-80: #CCEFFB;
    --color-70: #F2FBFE;
    --color-red: #F85959;
    --color-green: #2A8250;

    --blue: #49b1df;
    --white: #fff;
    --text: #8d8ba2;
    --black: #2d2c38;
    --black-2: #1b3550;
    --line: #eae9ef;
    --bg: #f5f8fa;
    --bg-2: #f4f5f6;
    --white-2: #bec0c9;
    --grey: #55565a;
}

.content h1,
.content .h1,
.content h2,
.content .h2,
.content h3,
.content .h3,
.content h4,
.content .h4 {
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: var(--black);
    line-height: 1.3;
}

.content h1,
.content .h1 {
    margin-bottom: 24px;
    font-size: 28px;
}
.content h2,
.content .h2 {
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 20px;
}

.content h3,
.content .h3 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
}

.content h4,
.content .h4 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
}

.content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 20px;
}

.content ul,
.content ol {
    margin: 0 0 20px;
    list-style-type: none;
    padding: 0 0 0 18px;
}
.content ul {
    list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='12' viewBox='0 0 10 12' fill='none'%3E%3Cpath d='M5 0L10 2.88675V8.66025L5 11.547L0 8.66025V2.88675L5 0Z' fill='%2300B0E9'/%3E%3C/svg%3E");
}

.content ul li,
.content ol li {
    position: relative;
    padding-left: 10px;
    color: #8d8ba2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.content ol li:not(:last-child),
.content ul li:not(:last-child) {
    margin-bottom: 8px
}
.content ol {
    counter-reset: my-counter;
    padding-left: 0;
}
.content ol > li {
    position: relative;
    padding-left: 34px;
}
.content ol > li::before {
    counter-increment: my-counter;
    content: counter(my-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;

    color: var(--white);
    background-color: var(--blue);

    /* Center the number perfectly inside the circle */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.content ul.is-marker-check-in-round {
    --marker-check-in-round--size: 34px;
    --marker-check-in-round--pd: 20px;

    list-style-image: none;
    padding: 0;
    /*list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64' fill='none'%3E%3Ccircle cx='32' cy='32' r='31.5' fill='white' stroke='%2349B1DF'/%3E%3Cpath d='M29.0002 36.0876L24.8302 31.9176L23.4102 33.3276L29.0002 38.9176L41.0002 26.9176L39.5902 25.5076L29.0002 36.0876Z' fill='%2349B1DF'/%3E%3C/svg%3E");*/
}
.content ul.is-marker-check-in-round li{
    position: relative;
    padding-left: calc(var(--marker-check-in-round--size) + var(--marker-check-in-round--pd));
}
.content ul.is-marker-check-in-round li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/icon_li_check_in_round.svg);
    background-size: cover;
    width: var(--marker-check-in-round--size);
    height: var(--marker-check-in-round--size);
}
@media (min-width: 1200px) {
    .content ul.is-marker-check-in-round {
        --marker-check-in-round--size: 64px;
    }
    .content ul.is-marker-check-in-round li:before{
        top: 50%;
        margin-top: calc(var(--marker-check-in-round--size) / -2);
    }
}

html,
body {
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    min-height: 100svh
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    font: var(--font);
    color: var(--dark-50);
}

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

a {
    color: var(--dark-100);
    text-decoration: none;
    transition: color var(--trs-out), background-color var(--trs-out)
}

a path[fill] {
    fill: currentColor;
    transition: fill var(--trs-out)
}

a path[stroke] {
    stroke: currentColor;
    transition: stroke var(--trs-out)
}

a:hover {
    color: var(--color-90);
    text-decoration: none;
    transition: color var(--trs-in), background-color var(--trs-in)
}

a:hover path[fill] {
    transition: fill var(--trs-in)
}

a:hover path[stroke] {
    transition: stroke var(--trs-in)
}

.content strong,
.content b {
    font-weight: 600;
    color: var(--black);
}
.content table{
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.content td {
    padding: 5px 10px;
    border: 1px solid var(--brdr-color);
}

.content tr:not(:first-child) td{
    border-top: none;
}
.content tr td:not(:first-child){
    border-left: none;
}
.content tr td:not(:last-child){
    border-right: none;
}
.content tr:first-child td:first-child{
    border-radius: 24px 0 0 0;
}
.content tr:first-child td:last-child{
    border-radius: 0 24px 0 0;
}
.content tr:last-child td:first-child{
    border-radius: 0 0 0 24px;
}
.content tr:last-child td:last-child{
    border-radius: 0 0 24px 0;
}
.content tr:nth-child(odd) td{
    background-color: #f5f8fa;
}


@media (max-width: 991px) {

}
@media (min-width: 430px) {
    .content h1,
    .content .h1 {
        margin-bottom: 24px;
        font-size: 34px;
    }
}
@media (min-width: 992px) {
    .content h1,
    .content .h1 {
        margin-bottom: 60px;
        font-size: 64px;
    }
    .content h2,
    .content .h2 {
        margin-bottom: 24px;
        font-size: 32px;
    }
    .content p,
    .content ul,
    .content ol {
        margin: 0 0 24px;
    }
    .content h3,
    .content .h3{
        font-size: 20px;
    }
    .content h4,
    .content .h4{}
    .content p,
    .content ul li,
    .content ol li{
        font-size: 18px;
    }
    .content td{
        padding: 20px 24px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}