.paragraph {
    width: 100%;
    font-size: 18px;
    word-break: break-word;
    white-space: break-spaces;
}

.paragraph .paragraph-inner {
    width: 100%;
}

p {
    margin: 0;
    padding: 0;
}

h3,
p,
ul {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

ul {
    padding-left: 0 !important;
}

.paragraph * {
    line-height: inherit;
    letter-spacing: inherit;
    font-size: inherit;
    font-family: inherit;
}

.menu {
    text-align: center;
    display: flex;
    flex-direction: row;
}

.menu li {
    margin: 5px;
    display: inline-block;
    text-decoration: inherit;
}

.menu li,
.menu li a,
.menu li a * {
    color: inherit;
}

.menu li a * {
    pointer-events: none;
}

.btn,
.menu-container {
    display: flex;
    flex-direction: column;
}

.menu-container {
    width: 100%;
    align-items: center;
}

.btn {
    cursor: pointer;
    border: 0;
    outline: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #f6f9fe;
    background: #4368e0;
    border-radius: 4px;
    padding: 10px 30px;
    transition: .15s all ease-in-out;
    transition-property: all;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    position: relative;
    box-shadow: RGB(37 42 50/32%)0 1px 4px 1px;
}

.btn .btn-headline {
    pointer-events: none;
    word-break: break-word;
}

.btn .btn-sub-headline {
    display: block;
    font-size: 12px;
    pointer-events: none;
    margin-top: 10px;
}

.img a img {
    pointer-events: none;
}

.btn-container {
    width: 100%;
    align-items: center;
}

.btn-container,
.spacer {
    display: flex;
    flex-direction: column;
}

.spacer {
    flex: 1;
}

.spacer .inner-spacer {
    box-sizing: border-box;
    border-top: 2px solid #57585d;
    width: 100%;
    display: block;
}

#render-table {
    text-align: center;
}

.custom {
    width: 100%;
}

.progress-bar-wrpr {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.progress-bar {
    box-sizing: content-box;
    position: relative;
    background: #555;
    border-radius: 25px;
    padding: 10px;
    box-shadow: inset 0-1px 1px rgba(255, 255, 255, .3);
    flex: 1;
    display: flex;
    overflow: hidden;
}

.progress-bar .pb-inner {
    flex: 1;
    position: relative;
    text-decoration: inherit;
    font-weight: inherit;
    font-family: inherit;
    font-size: inherit;
}

.progress-bar .pb-fill {
    display: block;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: RGB(43, 194, 83);
    background-image: linear-gradient(RGB(43, 194, 83) 37%, RGB(84, 240, 84) 69%);
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, .3), inset 0-2px 6px rgba(0, 0, 0, .4);
    position: relative;
    overflow: hidden;
}

.progress-bar .pb-number {
    position: absolute;
    z-index: 2;
    line-height: 100%;
    text-decoration: inherit;
    font-weight: inherit;
    font-family: inherit;
    font-size: inherit;
}

.progress-bar.pb-center .pb-number {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-decoration: inherit;
}

.progress-bar.pb-right .pb-number {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.img {
    width: 100%;
    height: auto;
    display: flex;
}

.img {
    flex-direction: column;
    align-items: center;
}

.image-slider {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.image-slider .is-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-slider .is-image-wrapper .next,
.image-slider .is-image-wrapper .prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 0;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: .6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.image-slider .is-image-wrapper .next {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

.image-slider .is-image-wrapper .next:hover,
.image-slider .is-image-wrapper .prev:hover {
    background-color: rgba(0, 0, 0, .8);
}

.image-slider .is-thumbs-wrapper {
    display: block;
    overflow-y: scroll;
    width: 100%;
    position: relative;
}

.image-slider .is-thumbnails {
    width: fit-content;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.image-slider .is-thumbnails .is-thumbnail {
    margin: 10px 5px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px #b3b3b3;
    cursor: pointer !important;
    overflow: hidden;
}

.image-slider .is-thumbnails .is-thumbnail img {
    object-fit: scale-down;
    height: 100%;
    width: 100%;
    opacity: .7;
}

.image-slider .is-thumbnails .is-thumbnail.selected {
    box-shadow: 0 0 0 3px #708090;
}

.image-slider .is-thumbnails .is-thumbnail.selected img {
    opacity: 1;
}

.image-slider .is-thumbnails .is-thumbnail:hover:not(.selected) {
    box-shadow: 0 0 0 2px #708090;
}

.image-slider .is-thumbnails .is-thumbnail:hover:not(.selected) img {
    opacity: 1;
}

.container-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    border: 0;
    outline: 0;
    display: flex;
    flex-wrap: wrap;
}

.container {
    flex-direction: row;
}

.container .container-box {
    width: 100%;
    overflow: visible;
    display: flex;
    flex: 1;
    flex-direction: column;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-weight: 400;
    color: #636a7b;
    font-size: 13px;
}

input {
    appearance: auto;
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

ul {
    list-style: none;
}

h3,
ul {
    margin: 0;
    padding: 0;
}

a {
    transition: .15s all ease-in-out;
}

.main-wrapper {
    width: 100%;
    flex-direction: column;
    min-height: 100vh;
    text-decoration: inherit;
    overflow: unset;
}

.element-wrapper,
.main-wrapper,
.section {
    align-items: center;
    display: flex;
}

.element-wrapper {
    justify-content: center;
    text-decoration: inherit;
    min-height: 0;
}

.section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-items: center;
    flex-direction: column;
}

.section,
.section.full {
    width: 100%;
}

.section.full .section_row {
    max-width: 1170px;
}

.section .section_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (min-width:851px) {
    .no-desktop {
        display: none !important;
    }
}

@media only screen and (max-width:850px) and (min-width:601px) {
    .no-tablet {
        display: none !important;
    }
}

@media only screen and (max-width:600px) {
    .no-mobile {
        display: none !important;
    }

    .section .section_row {
        flex-direction: column;
    }

    .section .section_row .row-column {
        width: 100% !important;
    }
}

.row-column {
    padding: 0;
    display: inline-block;
    vertical-align: top;
    text-decoration: inherit;
}

.sticky_show_after {
    display: none;
    visibility: hidden;
}

/*! CSS Used from: Embedded */
.el-679545 {
    align-items: start;
}

.el-679545 {
    flex-direction: row;
}

.el-679545>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-60331 {
    align-items: flex-start;
}

@media (max-width: 1024px) and (min-width: 481px) {
    .el-60331 {
        align-items: center;
    }
}

.el-60331 {
    flex-direction: row;
}

.el-60331>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-60331>.container-box:nth-child(2) {
    width: 128px;
    min-width: 128px;
    max-width: 128px;
}

.el-60331>.container-box:nth-child(3) {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
}

/*! CSS Used from: Embedded */
.el-915396 {
    font-size: calc(17px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-915396 {
        font-size: calc(12px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-915396 {
        font-size: 17px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-757829 {
    align-items: flex-start;
}

@media (max-width: 480px) {
    .el-757829 {
        align-items: flex-start;
    }
}

/*! CSS Used from: Embedded */
.el-462230 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-679074 {
    align-items: start;
}

.el-679074 {
    flex-direction: row;
}

.el-679074>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-913445 {
    font-size: calc(27px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-913445 {
        font-size: calc(30px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-913445 {
        font-size: 30px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-325500 {
    font-size: calc(18px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-325500 {
        font-size: calc(18px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-325500 {
        font-size: 18px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-708751 {
    align-items: start;
}

.el-708751 {
    flex-direction: row;
}

.el-708751>.container-box:nth-child(1) {
    width: 8%;
    min-width: 8%;
    max-width: 8%;
}

.el-708751>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-432085 {
    font-size: calc(16px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-432085 {
        font-size: calc(16px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-432085 {
        font-size: 16px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-440071 {
    font-size: calc(16px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-440071 {
        font-size: calc(16px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-440071 {
        font-size: 16px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-204793 {
    font-size: calc(16px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-204793 {
        font-size: calc(16px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-204793 {
        font-size: 16px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-531989 {
    align-items: start;
}

.el-531989 {
    flex-direction: row;
}

.el-531989>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-958878 {
    align-items: stretch;
}

.el-958878 {
    width: 100%;
    align-self: center;
}

/*! CSS Used from: Embedded */
.el-338334 {
    align-items: center;
}

/*! CSS Used from: Embedded */
.el-700624 {
    align-items: start;
}

.el-700624 {
    flex-direction: row;
}

.el-700624>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-684298 {
    font-size: calc(14px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-684298 {
        font-size: calc(16px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-684298 {
        font-size: 16px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-924950 {
    font-size: 14px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-194850 {
    align-items: start;
}

.el-194850 {
    flex-direction: row;
}

.el-194850>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-918338 {
    font-size: 18px;
    text-align: left;
}

/*! CSS Used from: Embedded */
.el-800044 {
    font-size: 25px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-290831 {
    align-items: start;
}

.el-290831 {
    flex-direction: row;
}

.el-290831>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-809595 {
    font-size: 35px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-679618 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-906478 {
    font-size: calc(25px + 8 * ((100vw - 320px) / 960));
    text-align: center;
}

@media screen and (min-width: 480px) {
    .el-906478 {
        font-size: calc(40px + 8 * ((100vw - 320px) / 960));
        text-align: center;
    }
}

@media screen and (min-width: 1024px) {
    .el-906478 {
        font-size: 40px;
        text-align: center;
    }
}

/*! CSS Used from: Embedded */
.el-910641 {
    font-size: calc(15px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-910641 {
        font-size: calc(18px + 8 * ((100vw - 320px) / 960));
        text-align: center;
    }
}

@media screen and (min-width: 1024px) {
    .el-910641 {
        font-size: 18px;
        text-align: center;
    }
}

/*! CSS Used from: Embedded */
.el-916400 {
    font-size: 24px;
    text-align: left;
}

/*! CSS Used from: Embedded */
.el-527566 {
    align-items: center;
}

/*! CSS Used from: Embedded */
.el-291059 {
    align-items: start;
}

.el-291059 {
    flex-direction: row;
}

.el-291059>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-291059>.container-box:nth-child(2) {
    width: 35%;
    min-width: 35%;
    max-width: 35%;
}

/*! CSS Used from: Embedded */
.el-961562 {
    align-items: start;
}

.el-961562 {
    flex-direction: row;
}

.el-961562>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-350067 {
    align-items: start;
}

.el-350067 {
    flex-direction: row;
}

.el-350067>.container-box:nth-child(1) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

.el-350067>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-350067>.container-box:nth-child(3) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

/*! CSS Used from: Embedded */
.el-709784 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-390697 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-311710 {
    align-items: start;
}

.el-311710 {
    flex-direction: row;
}

.el-311710>.container-box:nth-child(1) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

.el-311710>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-311710>.container-box:nth-child(3) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

/*! CSS Used from: Embedded */
.el-679961 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-634265 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-519972 {
    align-items: start;
}

.el-519972 {
    flex-direction: row;
}

.el-519972>.container-box:nth-child(1) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

.el-519972>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-519972>.container-box:nth-child(3) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

/*! CSS Used from: Embedded */
.el-741019 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-708524 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-860418 {
    align-items: start;
}

.el-860418 {
    flex-direction: row;
}

.el-860418>.container-box:nth-child(1) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

.el-860418>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-860418>.container-box:nth-child(3) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

/*! CSS Used from: Embedded */
.el-64524 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-678194 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-574286 {
    align-items: start;
}

.el-574286 {
    flex-direction: row;
}

.el-574286>.container-box:nth-child(1) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

.el-574286>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-574286>.container-box:nth-child(3) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

/*! CSS Used from: Embedded */
.el-653896 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-678721 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-40363 {
    align-items: start;
}

.el-40363 {
    flex-direction: row;
}

.el-40363>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-558207 {
    font-size: 25px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-989567 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-50992 {
    font-size: calc(23px + 8 * ((100vw - 320px) / 960));
    text-align: center;
}

@media screen and (min-width: 480px) {
    .el-50992 {
        font-size: calc(30px + 8 * ((100vw - 320px) / 960));
        text-align: center;
    }
}

@media screen and (min-width: 1024px) {
    .el-50992 {
        font-size: 30px;
        text-align: center;
    }
}

/*! CSS Used from: Embedded */
.el-672835 {
    align-items: start;
}

.el-672835 {
    flex-direction: row;
}

.el-672835>.container-box:nth-child(1) {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
}

.el-672835>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-672835>.container-box:nth-child(3) {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
}

/*! CSS Used from: Embedded */
.el-744928 {
    align-items: start;
}

.el-744928 {
    flex-direction: row;
}

.el-744928>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-686433 {
    font-size: 25px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-472006 {
    align-items: center;
}

/*! CSS Used from: Embedded */
.el-646650 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-537880 {
    align-items: start;
}

.el-537880 {
    flex-direction: row;
}

.el-537880>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-70894 {
    align-items: start;
}

.el-70894 {
    flex-direction: row;
}

.el-70894>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-837541 {
    align-items: start;
}

.el-837541 {
    flex-direction: row;
}

.el-837541>.container-box:nth-child(1) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

.el-837541>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-837541>.container-box:nth-child(3) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

/*! CSS Used from: Embedded */
.el-92657 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-415733 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-970037 {
    align-items: start;
}

.el-970037 {
    flex-direction: row;
}

.el-970037>.container-box:nth-child(1) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

.el-970037>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-970037>.container-box:nth-child(3) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

/*! CSS Used from: Embedded */
.el-34376 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-229257 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-146352 {
    align-items: start;
}

.el-146352 {
    flex-direction: row;
}

.el-146352>.container-box:nth-child(1) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

.el-146352>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-146352>.container-box:nth-child(3) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

/*! CSS Used from: Embedded */
.el-585565 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-590926 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-619761 {
    align-items: start;
}

.el-619761 {
    flex-direction: row;
}

.el-619761>.container-box:nth-child(1) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

.el-619761>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-619761>.container-box:nth-child(3) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

/*! CSS Used from: Embedded */
.el-601302 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-186537 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-961066 {
    align-items: start;
}

.el-961066 {
    flex-direction: row;
}

.el-961066>.container-box:nth-child(1) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

.el-961066>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-961066>.container-box:nth-child(3) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

/*! CSS Used from: Embedded */
.el-789488 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-692459 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-145275 {
    align-items: start;
}

.el-145275 {
    flex-direction: row;
}

.el-145275>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-220618 {
    align-items: center;
}

/*! CSS Used from: Embedded */
.el-787322 {
    align-items: start;
}

.el-787322 {
    flex-direction: row;
}

.el-787322>.container-box:nth-child(1) {
    width: 40%;
    min-width: 40%;
    max-width: 40%;
}

.el-787322>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-438504 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-438504 {
        align-items: flex-end;
    }
}

/*! CSS Used from: Embedded */
.el-311842 {
    font-size: calc(15px + 8 * ((100vw - 320px) / 960));
    text-align: left;
}

@media screen and (min-width: 480px) {
    .el-311842 {
        font-size: calc(15px + 8 * ((100vw - 320px) / 960));
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .el-311842 {
        font-size: 15px;
        text-align: left;
    }
}

/*! CSS Used from: Embedded */
.el-740601 {
    align-items: start;
}

.el-740601 {
    flex-direction: row;
}

.el-740601>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-440604 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-440604 {
        align-items: flex-end;
    }
}

/*! CSS Used from: Embedded */
.el-721976 {
    font-size: calc(16px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-721976 {
        font-size: calc(16px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-721976 {
        font-size: 16px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-200255 {
    align-items: start;
}

.el-200255 {
    flex-direction: row;
}

.el-200255>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-308652 {
    align-items: center;
}

/*! CSS Used from: Embedded */
.el-101880 {
    align-items: start;
}

.el-101880 {
    flex-direction: row;
}

.el-101880>.container-box:nth-child(1) {
    width: 40%;
    min-width: 40%;
    max-width: 40%;
}

.el-101880>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-511447 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-511447 {
        align-items: flex-end;
    }
}

/*! CSS Used from: Embedded */
.el-292711 {
    font-size: calc(15px + 8 * ((100vw - 320px) / 960));
    text-align: left;
}

@media screen and (min-width: 480px) {
    .el-292711 {
        font-size: calc(15px + 8 * ((100vw - 320px) / 960));
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .el-292711 {
        font-size: 15px;
        text-align: left;
    }
}

/*! CSS Used from: Embedded */
.el-142523 {
    align-items: start;
}

.el-142523 {
    flex-direction: row;
}

.el-142523>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-694941 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-694941 {
        align-items: flex-end;
    }
}

/*! CSS Used from: Embedded */
.el-336687 {
    font-size: calc(16px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-336687 {
        font-size: calc(15px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-336687 {
        font-size: 15px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-376255 {
    align-items: start;
}

.el-376255 {
    flex-direction: row;
}

.el-376255>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-110709 {
    align-items: center;
}

/*! CSS Used from: Embedded */
.el-790667 {
    align-items: start;
}

.el-790667 {
    flex-direction: row;
}

.el-790667>.container-box:nth-child(1) {
    width: 40%;
    min-width: 40%;
    max-width: 40%;
}

.el-790667>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-681878 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-681878 {
        align-items: flex-end;
    }
}

/*! CSS Used from: Embedded */
.el-31167 {
    font-size: calc(15px + 8 * ((100vw - 320px) / 960));
    text-align: left;
}

@media screen and (min-width: 480px) {
    .el-31167 {
        font-size: calc(15px + 8 * ((100vw - 320px) / 960));
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .el-31167 {
        font-size: 15px;
        text-align: left;
    }
}

/*! CSS Used from: Embedded */
.el-795804 {
    align-items: start;
}

.el-795804 {
    flex-direction: row;
}

.el-795804>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-392201 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-392201 {
        align-items: flex-end;
    }
}

/*! CSS Used from: Embedded */
.el-696444 {
    font-size: calc(16px + 8 * ((100vw - 320px) / 960));
    text-align: right;
}

@media screen and (min-width: 480px) {
    .el-696444 {
        font-size: calc(15px + 8 * ((100vw - 320px) / 960));
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .el-696444 {
        font-size: 15px;
        text-align: right;
    }
}

/*! CSS Used from: Embedded */
.el-14777 {
    align-items: start;
}

.el-14777 {
    flex-direction: row;
}

.el-14777>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-493105 {
    align-items: center;
}

/*! CSS Used from: Embedded */
.el-819133 {
    align-items: start;
}

.el-819133 {
    flex-direction: row;
}

.el-819133>.container-box:nth-child(1) {
    width: 40%;
    min-width: 40%;
    max-width: 40%;
}

.el-819133>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-400753 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-400753 {
        align-items: flex-end;
    }
}

/*! CSS Used from: Embedded */
.el-362642 {
    font-size: calc(15px + 8 * ((100vw - 320px) / 960));
    text-align: left;
}

@media screen and (min-width: 480px) {
    .el-362642 {
        font-size: calc(15px + 8 * ((100vw - 320px) / 960));
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .el-362642 {
        font-size: 15px;
        text-align: left;
    }
}

/*! CSS Used from: Embedded */
.el-970981 {
    align-items: start;
}

.el-970981 {
    flex-direction: row;
}

.el-970981>.container-box:nth-child(1) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-880763 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-880763 {
        align-items: flex-end;
    }
}

/*! CSS Used from: Embedded */
.el-475898 {
    font-size: calc(16px + 8 * ((100vw - 320px) / 960));
    text-align: left;
}

@media screen and (min-width: 480px) {
    .el-475898 {
        font-size: calc(15px + 8 * ((100vw - 320px) / 960));
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .el-475898 {
        font-size: 15px;
        text-align: left;
    }
}

/*! CSS Used from: Embedded */
.el-84682 {
    align-items: start;
}

.el-84682 {
    flex-direction: row;
}

.el-84682>.container-box:nth-child(1) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

.el-84682>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

.el-84682>.container-box:nth-child(3) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-436872 {
    font-size: 13px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-17684 {
    align-items: flex-start;
}

.el-17684 a:hover {
    color: #4368E0;
}

/*! CSS Used from: Embedded */
.el-11415 {
    align-items: flex-end;
}

/*! CSS Used from: Embedded */
.el-699430 {
    align-items: start;
}

.el-699430 {
    flex-direction: column;
}

.el-699430>.container-box:nth-child(1) {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

.el-699430>.container-box:nth-child(2) {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

.el-699430>.container-box:nth-child(3) {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

@media screen and (min-width: 480px) {
    .el-699430 {
        flex-direction: row;
    }

    .el-699430>.container-box:nth-child(1) {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .el-699430>.container-box:nth-child(2) {
        width: unset;
        min-width: 0;
        max-width: unset;
    }

    .el-699430>.container-box:nth-child(3) {
        width: unset;
        min-width: 0;
        max-width: unset;
    }
}

@media screen and (min-width: 1024px) {
    .el-699430 {
        flex-direction: row;
    }

    .el-699430>.container-box:nth-child(1) {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .el-699430>.container-box:nth-child(2) {
        width: unset;
        min-width: 0;
        max-width: unset;
    }

    .el-699430>.container-box:nth-child(3) {
        width: unset;
        min-width: 0;
        max-width: unset;
    }
}

/*! CSS Used from: Embedded */
.el-541028 {
    font-size: 18px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-948267 {
    align-items: flex-start;
}

@media (max-width: 480px) {
    .el-948267 {
        align-items: center;
    }
}

.el-948267 a:hover {
    color: #4368E0;
}

/*! CSS Used from: Embedded */
.el-4093 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-4093 {
        align-items: center;
    }
}

/*! CSS Used from: Embedded */
.el-415139 {
    align-items: flex-end;
}

@media (max-width: 480px) {
    .el-415139 {
        align-items: center;
    }
}

/*! CSS Used from: Embedded */
.el-459127 {
    align-items: start;
}

.el-459127 {
    flex-direction: row;
}

.el-459127>.container-box:nth-child(1) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

.el-459127>.container-box:nth-child(2) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-144867 {
    align-items: center;
}

/*! CSS Used from: Embedded */
.el-754807 {
    font-size: 20px;
    text-align: left;
}

/*! CSS Used from: Embedded */
.el-992187 {
    align-items: start;
}

.el-992187 {
    flex-direction: row;
}

.el-992187>.container-box:nth-child(1) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
}

.el-992187>.container-box:nth-child(2) {
    width: 10%;
    min-width: 10%;
    max-width: 10%;
}

.el-992187>.container-box:nth-child(3) {
    width: 22%;
    min-width: 22%;
    max-width: 22%;
}

.el-992187>.container-box:nth-child(4) {
    width: unset;
    min-width: 0;
    max-width: unset;
}

/*! CSS Used from: Embedded */
.el-563488 {
    font-size: 16px;
    text-align: left;
}

/*! CSS Used from: Embedded */
.el-921814 {
    font-size: 16px;
    text-align: center;
}

/*! CSS Used from: Embedded */
.el-744567 {
    align-items: flex-start;
}

/*! CSS Used from: Embedded */
.el-854205 {
    align-items: center;
}


@font-face {
    font-family: dm sans;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2)format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: dm sans;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2)format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: dm sans;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2)format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: dm sans;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2)format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2)format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2)format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2)format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2)format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: montserrat;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: noto sans arabic;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(fonts/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj4wv4r4xA.woff2)format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1
}

@font-face {
    font-family: noto sans arabic;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(fonts/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj5Jv4r4xA.woff2)format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF
}

@font-face {
    font-family: noto sans arabic;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(fonts/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj5bv4r4xA.woff2)format('woff2');
    unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF
}

@font-face {
    font-family: noto sans arabic;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(fonts/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj47v4r4xA.woff2)format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: noto sans arabic;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(fonts/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj41v4o.woff2)format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: noto sans arabic;
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(fonts/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj4wv4r4xA.woff2)format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1
}

@font-face {
    font-family: noto sans arabic;
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(fonts/nwpCtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlj5Jv4r4xA.woff2)format('woff2');
    unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21…