:root {
    --color-bg-interactive-pressed: rgba(4, 33, 77, 1);
    --color-bg-interactive-hover: rgba(9, 52, 115, 1);
    --color-bg-interactive-active: rgba(17, 77, 166, 1);
    --color-bg-interactive-press-soft: rgba(156, 185, 229, 1);
    --color-bg-interactive-hover-soft: rgba(215, 226, 245, 1);
    --color-bg-interactive-active-soft: rgba(232, 239, 250, 1);
    --color-bg-primary: rgba(255, 255, 255, 1);
    --color-bg-primary-soft: rgba(247, 247, 248, 1);
    --color-bg-primary-hard: rgba(238, 239, 240, 1);
    --color-bg-interactive-disabled: rgba(220, 223, 227, 1);
    --color-bg-tooltip: rgba(54, 61, 71, 1);
    --color-bg-secondary-pressed: rgba(82, 22, 0, 1);
    --color-bg-secondary-active: rgba(195, 52, 0, 1);
    --color-bg-secondary-hover: rgba(128, 34, 0, 1);
    --color-bg-overlay-modal: rgba(7, 22, 46, 0.699999988079071);
    --color-bg-gradient-dark: linear-gradient(180deg, rgba(54, 61, 71, 1) 0%, rgba(255, 255, 255, 1) 100%);
    --color-bg-gradient-soft: linear-gradient(180deg, rgba(247, 247, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
    --color-bg-gradient-hard: linear-gradient(180deg, rgba(181, 184, 190, 1) 0%, rgba(255, 255, 255, 1) 100%);
    --color-txt-primary: rgba(10, 14, 20, 1);
    --color-txt-secondary-active: rgba(195, 52, 0, 1);
    --color-txt-secondary: rgba(54, 61, 71, 1);
    --color-txt-interactive-disabled: rgba(105, 110, 117, 1);
    --color-txt-negative: rgba(255, 255, 255, 1);
    --color-txt-negative-disabled: rgba(156, 185, 229, 1);
    --color-txt-interactive-pressed: rgba(4, 33, 77, 1);
    --color-txt-interactive-hover: rgba(9, 52, 115, 1);
    --color-txt-interactive-active: rgba(17, 77, 166, 1);
    --color-border-interactive: rgba(17, 77, 166, 1);
    --color-border-secondary-active: rgba(195, 52, 0, 1);
    --color-border-input: rgba(105, 110, 117, 1);
    --color-border-dark-divisor: rgba(54, 61, 71, 1);
    --color-border-hard-divisor: rgba(181, 184, 190, 1);
    --color-border-soft-divisor: rgba(220, 223, 227, 1);
    --color-border-focus: rgba(195, 52, 0, 1);
    --color-border-focus-negative: rgba(229, 145, 0, 1);
    --color-border-negative: rgba(255, 255, 255, 1);
    --color-icon-interactive-active: rgba(17, 77, 166, 1);
    --color-icon-interactive-pressed: rgba(4, 33, 77, 1);
    --color-icon-interactive-hover: rgba(9, 52, 115, 1);
    --color-icon-secondary-active: rgba(195, 52, 0, 1);
    --color-icon-active: rgba(54, 61, 71, 1);
    --color-icon-interactive-disabled: rgba(105, 110, 117, 1);
    --color-icon-negative: rgba(255, 255, 255, 1);
    --color-icon-negative-disabled: rgba(156, 185, 229, 1);
    --color-status-error-100: rgba(252, 246, 245, 1);
    --color-status-error-200: rgba(245, 225, 220, 1);
    --color-status-error-300: rgba(232, 136, 111, 1);
    --color-status-error-400: rgba(196, 71, 39, 1);
    --color-status-error-500: rgba(94, 21, 3, 1);
    --color-status-error-600: rgba(51, 12, 2, 1);
    --color-status-warning-100: rgba(255, 250, 242, 1);
    --color-status-warning-200: rgba(252, 240, 220, 1);
    --color-status-warning-300: rgba(219, 178, 81, 1);
    --color-status-warning-400: rgba(173, 136, 33, 1);
    --color-status-warning-500: rgba(89, 65, 0, 1);
    --color-status-warning-600: rgba(51, 35, 2, 1);
    --color-status-success-100: rgba(243, 249, 246, 1);
    --color-status-success-200: rgba(229, 245, 236, 1);
    --color-status-success-300: rgba(77, 178, 119, 1);
    --color-status-success-400: rgba(25, 128, 68, 1);
    --color-status-success-500: rgba(1, 82, 35, 1);
    --color-status-success-600: rgba(10, 43, 24, 1);
    --color-status-info-100: rgba(242, 242, 252, 1);
    --color-status-info-200: rgba(233, 231, 246, 1);
    --color-status-info-300: rgba(146, 143, 194, 1);
    --color-status-info-400: rgba(96, 90, 173, 1);
    --color-status-info-500: rgba(30, 22, 85, 1);
    --color-status-info-600: rgba(3, 1, 33, 1);
    --color-graphic-100: rgba(140, 181, 217, 1);
    --color-graphic-200: rgba(140, 217, 200, 1);
    --color-graphic-300: rgba(224, 89, 82, 1);
    --color-graphic-400: rgba(224, 205, 82, 1);
    --color-graphic-500: rgba(235, 147, 71, 1);
    --color-graphic-600: rgba(131, 77, 178, 1)
}

.dnt-justify-start {
    justify-content: flex-start
}

.dnt-justify-end {
    justify-content: flex-end
}

.dnt-justify-center {
    justify-content: center
}

.dnt-justify-between {
    justify-content: space-between
}

.dnt-justify-around {
    justify-content: space-around
}

.dnt-justify-evenly {
    justify-content: space-evenly
}

.dnt-justify-items-start {
    justify-items: start
}

.dnt-justify-items-end {
    justify-items: end
}

.dnt-justify-items-center {
    justify-items: center
}

.dnt-justify-items-stretch {
    justify-items: stretch
}

.dnt-justify-self-auto {
    justify-self: auto
}

.dnt-justify-self-start {
    justify-self: start
}

.dnt-justify-self-end {
    justify-self: end
}

.dnt-justify-self-center {
    justify-self: center
}

.dnt-justify-self-stretch {
    justify-self: stretch
}

.dnt-content-center {
    align-content: center
}

.dnt-content-start {
    align-content: flex-start
}

.dnt-content-end {
    align-content: flex-end
}

.dnt-content-between {
    align-content: space-between
}

.dnt-content-around {
    align-content: space-around
}

.dnt-content-evenly {
    align-content: space-evenly
}

.dnt-items-start {
    align-items: flex-start
}

.dnt-items-end {
    align-items: flex-end
}

.dnt-items-center {
    align-items: center
}

.dnt-items-baseline {
    align-items: baseline
}

.dnt-items-stretch {
    align-items: stretch
}

.dnt-self-auto {
    align-self: auto
}

.dnt-self-start {
    align-self: flex-start
}

.dnt-self-end {
    align-self: flex-end
}

.dnt-self-center {
    align-self: center
}

.dnt-self-stretch {
    align-self: stretch
}

.dnt-gap-0 {
    gap: 0rem !important
}

.dnt-p-0 {
    padding: 0rem !important
}

.dnt-py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important
}

.dnt-px-0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important
}

.dnt-pt-0 {
    padding-top: 0rem !important
}

.dnt-pr-0 {
    padding-right: 0rem !important
}

.dnt-pb-0 {
    padding-bottom: 0rem !important
}

.dnt-pl-0 {
    padding-left: 0rem !important
}

.dnt-m-0 {
    margin: 0rem !important
}

.dnt-my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important
}

.dnt-mx-0 {
    margin-right: 0rem !important;
    margin-left: 0rem !important
}

.dnt-mt-0 {
    margin-top: 0rem !important
}

.dnt-mr-0 {
    margin-right: 0rem !important
}

.dnt-mb-0 {
    margin-bottom: 0rem !important
}

.dnt-ml-0 {
    margin-left: 0rem !important
}

.dnt-gap-1 {
    gap: 0.25rem !important
}

.dnt-p-1 {
    padding: 0.25rem !important
}

.dnt-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important
}

.dnt-px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important
}

.dnt-pt-1 {
    padding-top: 0.25rem !important
}

.dnt-pr-1 {
    padding-right: 0.25rem !important
}

.dnt-pb-1 {
    padding-bottom: 0.25rem !important
}

.dnt-pl-1 {
    padding-left: 0.25rem !important
}

.dnt-m-1 {
    margin: 0.25rem !important
}

.dnt-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important
}

.dnt-mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important
}

.dnt-mt-1 {
    margin-top: 0.25rem !important
}

.dnt-mr-1 {
    margin-right: 0.25rem !important
}

.dnt-mb-1 {
    margin-bottom: 0.25rem !important
}

.dnt-ml-1 {
    margin-left: 0.25rem !important
}

.dnt-gap-2 {
    gap: 0.5rem !important
}

.dnt-p-2 {
    padding: 0.5rem !important
}

.dnt-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important
}

.dnt-px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important
}

.dnt-pt-2 {
    padding-top: 0.5rem !important
}

.dnt-pr-2 {
    padding-right: 0.5rem !important
}

.dnt-pb-2 {
    padding-bottom: 0.5rem !important
}

.dnt-pl-2 {
    padding-left: 0.5rem !important
}

.dnt-m-2 {
    margin: 0.5rem !important
}

.dnt-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important
}

.dnt-mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important
}

.dnt-mt-2 {
    margin-top: 0.5rem !important
}

.dnt-mr-2 {
    margin-right: 0.5rem !important
}

.dnt-mb-2 {
    margin-bottom: 0.5rem !important
}

.dnt-ml-2 {
    margin-left: 0.5rem !important
}

.dnt-gap-3 {
    gap: 0.75rem !important
}

.dnt-p-3 {
    padding: 0.75rem !important
}

.dnt-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important
}

.dnt-px-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important
}

.dnt-pt-3 {
    padding-top: 0.75rem !important
}

.dnt-pr-3 {
    padding-right: 0.75rem !important
}

.dnt-pb-3 {
    padding-bottom: 0.75rem !important
}

.dnt-pl-3 {
    padding-left: 0.75rem !important
}

.dnt-m-3 {
    margin: 0.75rem !important
}

.dnt-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important
}

.dnt-mx-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important
}

.dnt-mt-3 {
    margin-top: 0.75rem !important
}

.dnt-mr-3 {
    margin-right: 0.75rem !important
}

.dnt-mb-3 {
    margin-bottom: 0.75rem !important
}

.dnt-ml-3 {
    margin-left: 0.75rem !important
}

.dnt-gap-4 {
    gap: 1rem !important
}

.dnt-p-4 {
    padding: 1rem !important
}

.dnt-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.dnt-px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.dnt-pt-4 {
    padding-top: 1rem !important
}

.dnt-pr-4 {
    padding-right: 1rem !important
}

.dnt-pb-4 {
    padding-bottom: 1rem !important
}

.dnt-pl-4 {
    padding-left: 1rem !important
}

.dnt-m-4 {
    margin: 1rem !important
}

.dnt-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.dnt-mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.dnt-mt-4 {
    margin-top: 1rem !important
}

.dnt-mr-4 {
    margin-right: 1rem !important
}

.dnt-mb-4 {
    margin-bottom: 1rem !important
}

.dnt-ml-4 {
    margin-left: 1rem !important
}

.dnt-gap-5 {
    gap: 1.25rem !important
}

.dnt-p-5 {
    padding: 1.25rem !important
}

.dnt-py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important
}

.dnt-px-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important
}

.dnt-pt-5 {
    padding-top: 1.25rem !important
}

.dnt-pr-5 {
    padding-right: 1.25rem !important
}

.dnt-pb-5 {
    padding-bottom: 1.25rem !important
}

.dnt-pl-5 {
    padding-left: 1.25rem !important
}

.dnt-m-5 {
    margin: 1.25rem !important
}

.dnt-my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important
}

.dnt-mx-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important
}

.dnt-mt-5 {
    margin-top: 1.25rem !important
}

.dnt-mr-5 {
    margin-right: 1.25rem !important
}

.dnt-mb-5 {
    margin-bottom: 1.25rem !important
}

.dnt-ml-5 {
    margin-left: 1.25rem !important
}

.dnt-gap-6 {
    gap: 1.5rem !important
}

.dnt-p-6 {
    padding: 1.5rem !important
}

.dnt-py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.dnt-px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.dnt-pt-6 {
    padding-top: 1.5rem !important
}

.dnt-pr-6 {
    padding-right: 1.5rem !important
}

.dnt-pb-6 {
    padding-bottom: 1.5rem !important
}

.dnt-pl-6 {
    padding-left: 1.5rem !important
}

.dnt-m-6 {
    margin: 1.5rem !important
}

.dnt-my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.dnt-mx-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.dnt-mt-6 {
    margin-top: 1.5rem !important
}

.dnt-mr-6 {
    margin-right: 1.5rem !important
}

.dnt-mb-6 {
    margin-bottom: 1.5rem !important
}

.dnt-ml-6 {
    margin-left: 1.5rem !important
}

.dnt-gap-7 {
    gap: 1.75rem !important
}

.dnt-p-7 {
    padding: 1.75rem !important
}

.dnt-py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important
}

.dnt-px-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important
}

.dnt-pt-7 {
    padding-top: 1.75rem !important
}

.dnt-pr-7 {
    padding-right: 1.75rem !important
}

.dnt-pb-7 {
    padding-bottom: 1.75rem !important
}

.dnt-pl-7 {
    padding-left: 1.75rem !important
}

.dnt-m-7 {
    margin: 1.75rem !important
}

.dnt-my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important
}

.dnt-mx-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important
}

.dnt-mt-7 {
    margin-top: 1.75rem !important
}

.dnt-mr-7 {
    margin-right: 1.75rem !important
}

.dnt-mb-7 {
    margin-bottom: 1.75rem !important
}

.dnt-ml-7 {
    margin-left: 1.75rem !important
}

.dnt-gap-8 {
    gap: 2rem !important
}

.dnt-p-8 {
    padding: 2rem !important
}

.dnt-py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.dnt-px-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important
}

.dnt-pt-8 {
    padding-top: 2rem !important
}

.dnt-pr-8 {
    padding-right: 2rem !important
}

.dnt-pb-8 {
    padding-bottom: 2rem !important
}

.dnt-pl-8 {
    padding-left: 2rem !important
}

.dnt-m-8 {
    margin: 2rem !important
}

.dnt-my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
}

.dnt-mx-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important
}

.dnt-mt-8 {
    margin-top: 2rem !important
}

.dnt-mr-8 {
    margin-right: 2rem !important
}

.dnt-mb-8 {
    margin-bottom: 2rem !important
}

.dnt-ml-8 {
    margin-left: 2rem !important
}

.dnt-gap-9 {
    gap: 2.25rem !important
}

.dnt-p-9 {
    padding: 2.25rem !important
}

.dnt-py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important
}

.dnt-px-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important
}

.dnt-pt-9 {
    padding-top: 2.25rem !important
}

.dnt-pr-9 {
    padding-right: 2.25rem !important
}

.dnt-pb-9 {
    padding-bottom: 2.25rem !important
}

.dnt-pl-9 {
    padding-left: 2.25rem !important
}

.dnt-m-9 {
    margin: 2.25rem !important
}

.dnt-my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important
}

.dnt-mx-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important
}

.dnt-mt-9 {
    margin-top: 2.25rem !important
}

.dnt-mr-9 {
    margin-right: 2.25rem !important
}

.dnt-mb-9 {
    margin-bottom: 2.25rem !important
}

.dnt-ml-9 {
    margin-left: 2.25rem !important
}

.dnt-gap-10 {
    gap: 2.5rem !important
}

.dnt-p-10 {
    padding: 2.5rem !important
}

.dnt-py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important
}

.dnt-px-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important
}

.dnt-pt-10 {
    padding-top: 2.5rem !important
}

.dnt-pr-10 {
    padding-right: 2.5rem !important
}

.dnt-pb-10 {
    padding-bottom: 2.5rem !important
}

.dnt-pl-10 {
    padding-left: 2.5rem !important
}

.dnt-m-10 {
    margin: 2.5rem !important
}

.dnt-my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important
}

.dnt-mx-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important
}

.dnt-mt-10 {
    margin-top: 2.5rem !important
}

.dnt-mr-10 {
    margin-right: 2.5rem !important
}

.dnt-mb-10 {
    margin-bottom: 2.5rem !important
}

.dnt-ml-10 {
    margin-left: 2.5rem !important
}

.dnt-gap-11 {
    gap: 2.75rem !important
}

.dnt-p-11 {
    padding: 2.75rem !important
}

.dnt-py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important
}

.dnt-px-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important
}

.dnt-pt-11 {
    padding-top: 2.75rem !important
}

.dnt-pr-11 {
    padding-right: 2.75rem !important
}

.dnt-pb-11 {
    padding-bottom: 2.75rem !important
}

.dnt-pl-11 {
    padding-left: 2.75rem !important
}

.dnt-m-11 {
    margin: 2.75rem !important
}

.dnt-my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important
}

.dnt-mx-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important
}

.dnt-mt-11 {
    margin-top: 2.75rem !important
}

.dnt-mr-11 {
    margin-right: 2.75rem !important
}

.dnt-mb-11 {
    margin-bottom: 2.75rem !important
}

.dnt-ml-11 {
    margin-left: 2.75rem !important
}

.dnt-gap-12 {
    gap: 3rem !important
}

.dnt-p-12 {
    padding: 3rem !important
}

.dnt-py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.dnt-px-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.dnt-pt-12 {
    padding-top: 3rem !important
}

.dnt-pr-12 {
    padding-right: 3rem !important
}

.dnt-pb-12 {
    padding-bottom: 3rem !important
}

.dnt-pl-12 {
    padding-left: 3rem !important
}

.dnt-m-12 {
    margin: 3rem !important
}

.dnt-my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.dnt-mx-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.dnt-mt-12 {
    margin-top: 3rem !important
}

.dnt-mr-12 {
    margin-right: 3rem !important
}

.dnt-mb-12 {
    margin-bottom: 3rem !important
}

.dnt-ml-12 {
    margin-left: 3rem !important
}

.dnt-flex {
    display: flex
}

.dnt-inline-flex {
    display: inline-flex
}

.dnt-flex-row {
    flex-direction: row
}

.dnt-flex-row-reverse {
    flex-direction: row-reverse
}

.dnt-flex-col {
    flex-direction: column
}

.dnt-flex-col-reverse {
    flex-direction: column-reverse
}

.dnt-flex-wrap {
    flex-wrap: wrap
}

.dnt-flex-wrap-reverse {
    flex-wrap: wrap-reverse
}

.dnt-flex-nowrap {
    flex-wrap: nowrap
}

.dnt-flex-1 {
    flex: 1 1 0%
}

.dnt-flex-auto {
    flex: 1 1 auto
}

.dnt-flex-initial {
    flex: 0 1 auto
}

.dnt-flex-none {
    flex: none
}

.dnt-flex-grow-0 {
    flex-grow: 0
}

.dnt-flex-grow {
    flex-grow: 1
}

.dnt-flex-shrink-0 {
    flex-shrink: 0
}

.dnt-flex-shrink {
    flex-shrink: 1
}

.dnt-order-1 {
    order: 1
}

.dnt-order-2 {
    order: 2
}

.dnt-order-3 {
    order: 3
}

.dnt-order-4 {
    order: 4
}

.dnt-order-5 {
    order: 5
}

.dnt-order-6 {
    order: 6
}

.dnt-order-7 {
    order: 7
}

.dnt-order-8 {
    order: 8
}

.dnt-order-9 {
    order: 9
}

.dnt-order-10 {
    order: 10
}

.dnt-order-11 {
    order: 11
}

.dnt-order-12 {
    order: 12
}

.dnt-order-first {
    order: -9999
}

.dnt-order-last {
    order: 9999
}

.dnt-order-none {
    order: 0
}

.dnt-txt-title-100 {
    font-family: "Merriweather", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    font-style: normal;
    line-height: 2.25rem
}

@media (min-width: 874px) {
    .dnt-txt-title-100 {
        font-size:1.5rem;
        font-weight: 700;
        font-style: normal;
        line-height: 2.25rem
    }
}

.dnt-txt-title-200 {
    font-family: "Merriweather", sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    font-style: normal;
    line-height: 2.5rem
}

@media (min-width: 874px) {
    .dnt-txt-title-200 {
        font-size:2rem;
        font-weight: 700;
        font-style: normal;
        line-height: 2.75rem
    }
}

.dnt-txt-title-300 {
    font-family: "Merriweather", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    font-style: normal;
    line-height: 2.75rem
}

@media (min-width: 874px) {
    .dnt-txt-title-300 {
        font-size:2.5rem;
        font-weight: 700;
        font-style: normal;
        line-height: 3.25rem
    }
}

.dnt-txt-subtitle-100 {
    font-size: 1.125rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5rem
}

.dnt-txt-subtitle-200 {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.75rem
}

.dnt-txt-subtitle-300 {
    font-size: 1.375rem;
    font-weight: 700;
    font-style: normal;
    line-height: 2rem
}

.dnt-txt-body-100 {
    font-size: 0.75rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1rem
}

.dnt-txt-body-200 {
    font-size: 0.875rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.25rem
}

.dnt-txt-body-300 {
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5rem
}

.dnt-txt-body-350 {
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5rem
}

.dnt-txt-body-400 {
    font-size: 1.125rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5rem
}

.dnt-txt-quote {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5rem
}

.dnt-txt-logo {
    font-size: 0.75rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1rem
}

.dnt-txt-link-200 {
    font-size: 0.875rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.25rem
}

.dnt-txt-link-250 {
    font-size: 0.875rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.25rem
}

.dnt-txt-link-300 {
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5rem
}

.dnt-txt-link-350 {
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5rem
}

.dnt-txt-link-400 {
    font-size: 1.125rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5rem
}

.dnt-txt-link-450 {
    font-size: 1.125rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5rem
}

.dnt-color-bg-primary-200 {
    background-color: var(--color-bg-interactive-active-soft)
}

.dnt-color-bg-primary-300 {
    background-color: var(--color-bg-interactive-hover-soft)
}

.dnt-color-bg-primary-400 {
    background-color: var(--color-bg-interactive-press-soft)
}

.dnt-color-bg-primary-500 {
    background-color: var(--color-bg-interactive-active)
}

.dnt-color-bg-primary-600 {
    background-color: var(--color-bg-interactive-hover)
}

.dnt-color-bg-primary-700 {
    background-color: var(--color-bg-interactive-pressed)
}

.dnt-color-bg-secondary-500 {
    background-color: var(--color-bg-secondary-active)
}

.dnt-color-bg-secondary-600 {
    background-color: var(--color-bg-secondary-hover)
}

.dnt-color-bg-secondary-700 {
    background-color: var(--color-bg-secondary-pressed)
}

.dnt-color-bg-gray-000 {
    background-color: var(--color-bg-primary)
}

.dnt-color-bg-gray-100 {
    background-color: var(--color-bg-primary-soft)
}

.dnt-color-bg-gray-200 {
    background-color: var(--color-bg-primary-hard)
}

.dnt-color-bg-gray-300 {
    background-color: var(--color-bg-interactive-disabled)
}

.dnt-color-bg-gray-400 {
    background-color: var(--color-border-hard-divisor)
}

.dnt-color-bg-gray-500 {
    background-color: var(--color-txt-interactive-disabled)
}

.dnt-color-bg-gray-600 {
    background-color: var(--color-txt-secondary)
}

.dnt-color-bg-gray-700 {
    background-color: var(--color-txt-primary)
}

.dnt-color-bg-error-100 {
    background-color: var(--color-status-error-100)
}

.dnt-color-bg-error-200 {
    background-color: var(--color-status-error-200)
}

.dnt-color-bg-error-300 {
    background-color: var(--color-status-error-300)
}

.dnt-color-bg-error-400 {
    background-color: var(--color-status-error-400)
}

.dnt-color-bg-error-500 {
    background-color: var(--color-status-error-500)
}

.dnt-color-bg-error-600 {
    background-color: var(--color-status-error-600)
}

.dnt-color-bg-success-100 {
    background-color: var(--color-status-success-100)
}

.dnt-color-bg-success-200 {
    background-color: var(--color-status-success-200)
}

.dnt-color-bg-success-300 {
    background-color: var(--color-status-success-300)
}

.dnt-color-bg-success-400 {
    background-color: var(--color-status-success-400)
}

.dnt-color-bg-success-500 {
    background-color: var(--color-status-success-500)
}

.dnt-color-bg-success-600 {
    background-color: var(--color-status-success-600)
}

.dnt-color-bg-warning-100 {
    background-color: var(--color-status-warning-100)
}

.dnt-color-bg-warning-200 {
    background-color: var(--color-status-warning-200)
}

.dnt-color-bg-warning-300 {
    background-color: var(--color-status-warning-300)
}

.dnt-color-bg-warning-400 {
    background-color: var(--color-status-warning-400)
}

.dnt-color-bg-warning-500 {
    background-color: var(--color-status-warning-500)
}

.dnt-color-bg-warning-600 {
    background-color: var(--color-status-warning-600)
}

.dnt-color-bg-info-100 {
    background-color: var(--color-status-info-100)
}

.dnt-color-bg-info-200 {
    background-color: var(--color-status-info-200)
}

.dnt-color-bg-info-300 {
    background-color: var(--color-status-info-300)
}

.dnt-color-bg-info-400 {
    background-color: var(--color-status-info-400)
}

.dnt-color-bg-info-500 {
    background-color: var(--color-status-info-500)
}

.dnt-color-bg-info-600 {
    background-color: var(--color-status-info-600)
}

.dnt-color-bg-overlay {
    background-color: var(--color-bg-overlay-modal)
}

.dnt-color-bg-focus {
    background-color: var(--color-border-focus)
}

.dnt-color-bg-focus-negative {
    background-color: var(--color-border-focus-negative)
}

@media (min-width: 992px) {
	.carousel-inner {
    display: flex;
  }
  .carousel-item {
    margin-right: 0;
    flex: 0 0 25%;
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .carousel-inner {
    display: flex;
  }
  .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .carousel-inner {
    display: flex;
  }
  .carousel-item {
    margin-right: 0;
    flex: 0 0 50%;
    display: block;
  }
}

@media (max-width: 575.98px) {
  .carousel-inner {
    display: flex;
  }
  .carousel-item {
    margin-right: 0;
    flex: 0 0 100%;
    display: block;
  }
}

.carousel-inner{
    padding: 1em;
}

.card{
    margin: 0 .5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
}