[data-grid-columns="1"] {
    display: grid;
    grid-template-columns: repeat(1, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="1"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="2"] {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="2"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="3"] {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="3"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="4"] {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="4"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="5"] {
    display: grid;
    grid-template-columns: repeat(5, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="5"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="6"] {
    display: grid;
    grid-template-columns: repeat(6, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="6"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="7"] {
    display: grid;
    grid-template-columns: repeat(7, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="7"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="8"] {
    display: grid;
    grid-template-columns: repeat(8, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="8"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="9"] {
    display: grid;
    grid-template-columns: repeat(9, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="9"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="10"] {
    display: grid;
    grid-template-columns: repeat(10, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="10"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="11"] {
    display: grid;
    grid-template-columns: repeat(11, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="11"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

[data-grid-columns="12"] {
    display: grid;
    grid-template-columns: repeat(12, 1fr)
}

@media only screen and (max-width: 768px) {
    [data-grid-columns="12"].responsive--one-column {
        grid-template-columns: 1fr
    }
}

.d-flex {
    display: flex
}

.d-grid {
    display: grid
}

.d-inline-flex {
    display: inline-flex
}

.d-block {
    display: block
}

.d-inline-block {
    display: inline-block
}

.d-inline {
    display: inline
}

.d-none {
    display: none
}

.d-table {
    display: table
}

.d-table-row {
    display: table-row
}

.d-table-cell {
    display: table-cell
}

.d-table-caption {
    display: table-caption
}

.d-contents {
    display: contents
}

@media (min-width: 320px) {
    .d-sm-flex {
        display: flex
    }

    .d-sm-grid {
        display: grid
    }

    .d-sm-inline-flex {
        display: inline-flex
    }

    .d-sm-block {
        display: block
    }

    .d-sm-inline-block {
        display: inline-block
    }

    .d-sm-inline {
        display: inline
    }

    .d-sm-none {
        display: none
    }

    .d-sm-table {
        display: table
    }

    .d-sm-table-row {
        display: table-row
    }

    .d-sm-table-cell {
        display: table-cell
    }

    .d-sm-table-caption {
        display: table-caption
    }

    .d-sm-contents {
        display: contents
    }
}

@media (min-width: 768px) {
    .d-md-flex {
        display: flex
    }

    .d-md-grid {
        display: grid
    }

    .d-md-inline-flex {
        display: inline-flex
    }

    .d-md-block {
        display: block
    }

    .d-md-inline-block {
        display: inline-block
    }

    .d-md-inline {
        display: inline
    }

    .d-md-none {
        display: none
    }

    .d-md-table {
        display: table
    }

    .d-md-table-row {
        display: table-row
    }

    .d-md-table-cell {
        display: table-cell
    }

    .d-md-table-caption {
        display: table-caption
    }

    .d-md-contents {
        display: contents
    }
}

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex
    }

    .d-lg-grid {
        display: grid
    }

    .d-lg-inline-flex {
        display: inline-flex
    }

    .d-lg-block {
        display: block
    }

    .d-lg-inline-block {
        display: inline-block
    }

    .d-lg-inline {
        display: inline
    }

    .d-lg-none {
        display: none
    }

    .d-lg-table {
        display: table
    }

    .d-lg-table-row {
        display: table-row
    }

    .d-lg-table-cell {
        display: table-cell
    }

    .d-lg-table-caption {
        display: table-caption
    }

    .d-lg-contents {
        display: contents
    }
}

@media (min-width: 1200px) {
    .d-xl-flex {
        display: flex
    }

    .d-xl-grid {
        display: grid
    }

    .d-xl-inline-flex {
        display: inline-flex
    }

    .d-xl-block {
        display: block
    }

    .d-xl-inline-block {
        display: inline-block
    }

    .d-xl-inline {
        display: inline
    }

    .d-xl-none {
        display: none
    }

    .d-xl-table {
        display: table
    }

    .d-xl-table-row {
        display: table-row
    }

    .d-xl-table-cell {
        display: table-cell
    }

    .d-xl-table-caption {
        display: table-caption
    }

    .d-xl-contents {
        display: contents
    }
}

@media (min-width: 1400px) {
    .d-xxl-flex {
        display: flex
    }

    .d-xxl-grid {
        display: grid
    }

    .d-xxl-inline-flex {
        display: inline-flex
    }

    .d-xxl-block {
        display: block
    }

    .d-xxl-inline-block {
        display: inline-block
    }

    .d-xxl-inline {
        display: inline
    }

    .d-xxl-none {
        display: none
    }

    .d-xxl-table {
        display: table
    }

    .d-xxl-table-row {
        display: table-row
    }

    .d-xxl-table-cell {
        display: table-cell
    }

    .d-xxl-table-caption {
        display: table-caption
    }

    .d-xxl-contents {
        display: contents
    }
}

.align-items-flex-start {
    align-items: "flex-start"
}

.align-items-flex-end {
    align-items: "flex-end"
}

.align-items-center {
    align-items: center
}

.align-items-baseline {
    align-items: baseline
}

.align-items-stretch {
    align-items: stretch
}

.justify-content-flex-start {
    justify-content: "flex-start"
}

.justify-content-flex-end {
    justify-content: "flex-end"
}

.justify-content-center {
    justify-content: center
}

.justify-content-between {
    justify-content: space-between
}

.justify-content-around {
    justify-content: around
}

.align-self-auto {
    align-self: auto
}

.align-self-flex-start {
    align-self: "flex-start"
}

.align-self-flex-end {
    align-self: "flex-end"
}

.align-self-center {
    align-self: center
}

.align-self-baseline {
    align-self: baseline
}

.align-self-stretch {
    align-self: stretch
}

.flex-direction-row {
    flex-direction: row
}

.flex-direction-row-reverse {
    flex-direction: row-reverse
}

.flex-direction-column {
    flex-direction: column
}

.flex-direction-column-reverse {
    flex-direction: column-reverse
}

.flex-wrap-wrap {
    flex-wrap: wrap
}

.flex-wrap-nowrap {
    flex-wrap: nowrap
}

.flex-wrap-wrap-reverse {
    flex-wrap: wrap-reverse
}

.flex-grow-0 {
    flex-grow: 0
}

.flex-grow-1 {
    flex-grow: 1
}

.flex-shrink-0 {
    flex-shrink: 0
}

.flex-shrink-1 {
    flex-shrink: 1
}

.flex-basis-auto {
    flex-basis: auto
}

.flex-basis-0 {
    flex-basis: 0
}

.order-1 {
    order: 1
}

@media (min-width: 320px) {
    .align-items-sm-flex-start {
        align-items: "flex-start"
    }

    .align-items-sm-flex-end {
        align-items: "flex-end"
    }

    .align-items-sm-center {
        align-items: center
    }

    .align-items-sm-baseline {
        align-items: baseline
    }

    .align-items-sm-stretch {
        align-items: stretch
    }

    .justify-content-sm-flex-start {
        justify-content: "flex-start"
    }

    .justify-content-sm-flex-end {
        justify-content: "flex-end"
    }

    .justify-content-sm-center {
        justify-content: center
    }

    .justify-content-sm-between {
        justify-content: space-between
    }

    .justify-content-sm-around {
        justify-content: around
    }

    .align-self-sm-auto {
        align-self: auto
    }

    .align-self-sm-flex-start {
        align-self: "flex-start"
    }

    .align-self-sm-flex-end {
        align-self: "flex-end"
    }

    .align-self-sm-center {
        align-self: center
    }

    .align-self-sm-baseline {
        align-self: baseline
    }

    .align-self-sm-stretch {
        align-self: stretch
    }

    .flex-direction-sm-row {
        flex-direction: row
    }

    .flex-direction-sm-row-reverse {
        flex-direction: row-reverse
    }

    .flex-direction-sm-column {
        flex-direction: column
    }

    .flex-direction-sm-column-reverse {
        flex-direction: column-reverse
    }

    .flex-wrap-sm-wrap {
        flex-wrap: wrap
    }

    .flex-wrap-sm-nowrap {
        flex-wrap: nowrap
    }

    .flex-wrap-sm-wrap-reverse {
        flex-wrap: wrap-reverse
    }

    .flex-grow-sm-0 {
        flex-grow: 0
    }

    .flex-grow-sm-1 {
        flex-grow: 1
    }

    .flex-shrink-sm-0 {
        flex-shrink: 0
    }

    .flex-shrink-sm-1 {
        flex-shrink: 1
    }

    .flex-basis-sm-auto {
        flex-basis: auto
    }

    .flex-basis-sm-0 {
        flex-basis: 0
    }

    .order-sm-1 {
        order: 1
    }
}

@media (min-width: 768px) {
    .align-items-md-flex-start {
        align-items: "flex-start"
    }

    .align-items-md-flex-end {
        align-items: "flex-end"
    }

    .align-items-md-center {
        align-items: center
    }

    .align-items-md-baseline {
        align-items: baseline
    }

    .align-items-md-stretch {
        align-items: stretch
    }

    .justify-content-md-flex-start {
        justify-content: "flex-start"
    }

    .justify-content-md-flex-end {
        justify-content: "flex-end"
    }

    .justify-content-md-center {
        justify-content: center
    }

    .justify-content-md-between {
        justify-content: space-between
    }

    .justify-content-md-around {
        justify-content: around
    }

    .align-self-md-auto {
        align-self: auto
    }

    .align-self-md-flex-start {
        align-self: "flex-start"
    }

    .align-self-md-flex-end {
        align-self: "flex-end"
    }

    .align-self-md-center {
        align-self: center
    }

    .align-self-md-baseline {
        align-self: baseline
    }

    .align-self-md-stretch {
        align-self: stretch
    }

    .flex-direction-md-row {
        flex-direction: row
    }

    .flex-direction-md-row-reverse {
        flex-direction: row-reverse
    }

    .flex-direction-md-column {
        flex-direction: column
    }

    .flex-direction-md-column-reverse {
        flex-direction: column-reverse
    }

    .flex-wrap-md-wrap {
        flex-wrap: wrap
    }

    .flex-wrap-md-nowrap {
        flex-wrap: nowrap
    }

    .flex-wrap-md-wrap-reverse {
        flex-wrap: wrap-reverse
    }

    .flex-grow-md-0 {
        flex-grow: 0
    }

    .flex-grow-md-1 {
        flex-grow: 1
    }

    .flex-shrink-md-0 {
        flex-shrink: 0
    }

    .flex-shrink-md-1 {
        flex-shrink: 1
    }

    .flex-basis-md-auto {
        flex-basis: auto
    }

    .flex-basis-md-0 {
        flex-basis: 0
    }

    .order-md-1 {
        order: 1
    }
}

@media (min-width: 992px) {
    .align-items-lg-flex-start {
        align-items: "flex-start"
    }

    .align-items-lg-flex-end {
        align-items: "flex-end"
    }

    .align-items-lg-center {
        align-items: center
    }

    .align-items-lg-baseline {
        align-items: baseline
    }

    .align-items-lg-stretch {
        align-items: stretch
    }

    .justify-content-lg-flex-start {
        justify-content: "flex-start"
    }

    .justify-content-lg-flex-end {
        justify-content: "flex-end"
    }

    .justify-content-lg-center {
        justify-content: center
    }

    .justify-content-lg-between {
        justify-content: space-between
    }

    .justify-content-lg-around {
        justify-content: around
    }

    .align-self-lg-auto {
        align-self: auto
    }

    .align-self-lg-flex-start {
        align-self: "flex-start"
    }

    .align-self-lg-flex-end {
        align-self: "flex-end"
    }

    .align-self-lg-center {
        align-self: center
    }

    .align-self-lg-baseline {
        align-self: baseline
    }

    .align-self-lg-stretch {
        align-self: stretch
    }

    .flex-direction-lg-row {
        flex-direction: row
    }

    .flex-direction-lg-row-reverse {
        flex-direction: row-reverse
    }

    .flex-direction-lg-column {
        flex-direction: column
    }

    .flex-direction-lg-column-reverse {
        flex-direction: column-reverse
    }

    .flex-wrap-lg-wrap {
        flex-wrap: wrap
    }

    .flex-wrap-lg-nowrap {
        flex-wrap: nowrap
    }

    .flex-wrap-lg-wrap-reverse {
        flex-wrap: wrap-reverse
    }

    .flex-grow-lg-0 {
        flex-grow: 0
    }

    .flex-grow-lg-1 {
        flex-grow: 1
    }

    .flex-shrink-lg-0 {
        flex-shrink: 0
    }

    .flex-shrink-lg-1 {
        flex-shrink: 1
    }

    .flex-basis-lg-auto {
        flex-basis: auto
    }

    .flex-basis-lg-0 {
        flex-basis: 0
    }

    .order-lg-1 {
        order: 1
    }
}

@media (min-width: 1200px) {
    .align-items-xl-flex-start {
        align-items: "flex-start"
    }

    .align-items-xl-flex-end {
        align-items: "flex-end"
    }

    .align-items-xl-center {
        align-items: center
    }

    .align-items-xl-baseline {
        align-items: baseline
    }

    .align-items-xl-stretch {
        align-items: stretch
    }

    .justify-content-xl-flex-start {
        justify-content: "flex-start"
    }

    .justify-content-xl-flex-end {
        justify-content: "flex-end"
    }

    .justify-content-xl-center {
        justify-content: center
    }

    .justify-content-xl-between {
        justify-content: space-between
    }

    .justify-content-xl-around {
        justify-content: around
    }

    .align-self-xl-auto {
        align-self: auto
    }

    .align-self-xl-flex-start {
        align-self: "flex-start"
    }

    .align-self-xl-flex-end {
        align-self: "flex-end"
    }

    .align-self-xl-center {
        align-self: center
    }

    .align-self-xl-baseline {
        align-self: baseline
    }

    .align-self-xl-stretch {
        align-self: stretch
    }

    .flex-direction-xl-row {
        flex-direction: row
    }

    .flex-direction-xl-row-reverse {
        flex-direction: row-reverse
    }

    .flex-direction-xl-column {
        flex-direction: column
    }

    .flex-direction-xl-column-reverse {
        flex-direction: column-reverse
    }

    .flex-wrap-xl-wrap {
        flex-wrap: wrap
    }

    .flex-wrap-xl-nowrap {
        flex-wrap: nowrap
    }

    .flex-wrap-xl-wrap-reverse {
        flex-wrap: wrap-reverse
    }

    .flex-grow-xl-0 {
        flex-grow: 0
    }

    .flex-grow-xl-1 {
        flex-grow: 1
    }

    .flex-shrink-xl-0 {
        flex-shrink: 0
    }

    .flex-shrink-xl-1 {
        flex-shrink: 1
    }

    .flex-basis-xl-auto {
        flex-basis: auto
    }

    .flex-basis-xl-0 {
        flex-basis: 0
    }

    .order-xl-1 {
        order: 1
    }
}

@media (min-width: 1400px) {
    .align-items-xxl-flex-start {
        align-items: "flex-start"
    }

    .align-items-xxl-flex-end {
        align-items: "flex-end"
    }

    .align-items-xxl-center {
        align-items: center
    }

    .align-items-xxl-baseline {
        align-items: baseline
    }

    .align-items-xxl-stretch {
        align-items: stretch
    }

    .justify-content-xxl-flex-start {
        justify-content: "flex-start"
    }

    .justify-content-xxl-flex-end {
        justify-content: "flex-end"
    }

    .justify-content-xxl-center {
        justify-content: center
    }

    .justify-content-xxl-between {
        justify-content: space-between
    }

    .justify-content-xxl-around {
        justify-content: around
    }

    .align-self-xxl-auto {
        align-self: auto
    }

    .align-self-xxl-flex-start {
        align-self: "flex-start"
    }

    .align-self-xxl-flex-end {
        align-self: "flex-end"
    }

    .align-self-xxl-center {
        align-self: center
    }

    .align-self-xxl-baseline {
        align-self: baseline
    }

    .align-self-xxl-stretch {
        align-self: stretch
    }

    .flex-direction-xxl-row {
        flex-direction: row
    }

    .flex-direction-xxl-row-reverse {
        flex-direction: row-reverse
    }

    .flex-direction-xxl-column {
        flex-direction: column
    }

    .flex-direction-xxl-column-reverse {
        flex-direction: column-reverse
    }

    .flex-wrap-xxl-wrap {
        flex-wrap: wrap
    }

    .flex-wrap-xxl-nowrap {
        flex-wrap: nowrap
    }

    .flex-wrap-xxl-wrap-reverse {
        flex-wrap: wrap-reverse
    }

    .flex-grow-xxl-0 {
        flex-grow: 0
    }

    .flex-grow-xxl-1 {
        flex-grow: 1
    }

    .flex-shrink-xxl-0 {
        flex-shrink: 0
    }

    .flex-shrink-xxl-1 {
        flex-shrink: 1
    }

    .flex-basis-xxl-auto {
        flex-basis: auto
    }

    .flex-basis-xxl-0 {
        flex-basis: 0
    }

    .order-xxl-1 {
        order: 1
    }
}

@media (min-width: 0) {
    .py-xs-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
}

@media (min-width: 320px) {
    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
}

@media (min-width: 768px) {
    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
}

@media (min-width: 992px) {
    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
}

@media (min-width: 1200px) {
    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }
}

.py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

@media (min-width: 0) {
    .py-xs-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important
    }
}

@media (min-width: 320px) {
    .py-sm-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important
    }
}

@media (min-width: 768px) {
    .py-md-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important
    }
}

@media (min-width: 992px) {
    .py-lg-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important
    }
}

.py-xxl-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important
}

@media (min-width: 0) {
    .py-xs-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }
}

@media (min-width: 320px) {
    .py-sm-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }
}

@media (min-width: 768px) {
    .py-md-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }
}

@media (min-width: 992px) {
    .py-lg-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }
}

.py-xxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important
}

@media (min-width: 0) {
    .py-xs-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important
    }
}

@media (min-width: 320px) {
    .py-sm-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important
    }
}

@media (min-width: 768px) {
    .py-md-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important
    }
}

@media (min-width: 992px) {
    .py-lg-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important
    }
}

.py-xxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important
}

@media (min-width: 0) {
    .py-xs-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important
    }
}

@media (min-width: 320px) {
    .py-sm-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important
    }
}

@media (min-width: 768px) {
    .py-md-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important
    }
}

@media (min-width: 992px) {
    .py-lg-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important
    }
}

.py-xxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important
}

@media (min-width: 0) {
    .py-xs-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important
    }
}

@media (min-width: 320px) {
    .py-sm-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important
    }
}

@media (min-width: 768px) {
    .py-md-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important
    }
}

@media (min-width: 992px) {
    .py-lg-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important
    }
}

.py-xxl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important
}

@media (min-width: 0) {
    .py-xs-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important
    }
}

@media (min-width: 320px) {
    .py-sm-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important
    }
}

@media (min-width: 768px) {
    .py-md-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important
    }
}

@media (min-width: 992px) {
    .py-lg-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important
    }
}

.py-xxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important
}

@media (min-width: 0) {
    .py-xs-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important
    }
}

@media (min-width: 320px) {
    .py-sm-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important
    }
}

@media (min-width: 768px) {
    .py-md-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important
    }
}

@media (min-width: 992px) {
    .py-lg-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important
    }
}

.py-xxl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important
}

@media (min-width: 0) {
    .py-xs-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important
    }
}

@media (min-width: 320px) {
    .py-sm-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important
    }
}

@media (min-width: 768px) {
    .py-md-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important
    }
}

@media (min-width: 992px) {
    .py-lg-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important
    }
}

.py-xxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important
}

@media (min-width: 0) {
    .py-xs-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important
    }
}

@media (min-width: 320px) {
    .py-sm-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important
    }
}

@media (min-width: 768px) {
    .py-md-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important
    }
}

@media (min-width: 992px) {
    .py-lg-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important
    }
}

.py-xxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important
}

@media (min-width: 0) {
    .py-xs-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important
    }
}

@media (min-width: 320px) {
    .py-sm-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important
    }
}

@media (min-width: 768px) {
    .py-md-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important
    }
}

@media (min-width: 992px) {
    .py-lg-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important
    }
}

.py-xxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important
}

@media (min-width: 0) {
    .py-xs-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important
    }
}

@media (min-width: 320px) {
    .py-sm-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important
    }
}

@media (min-width: 768px) {
    .py-md-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important
    }
}

@media (min-width: 992px) {
    .py-lg-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important
    }
}

.py-xxl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important
}

@media (min-width: 0) {
    .py-xs-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important
    }
}

@media (min-width: 320px) {
    .py-sm-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important
    }
}

@media (min-width: 768px) {
    .py-md-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important
    }
}

@media (min-width: 992px) {
    .py-lg-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important
    }
}

.py-xxl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important
}

@media (min-width: 0) {
    .py-xs-85 {
        padding-top: 85px !important;
        padding-bottom: 85px !important
    }
}

@media (min-width: 320px) {
    .py-sm-85 {
        padding-top: 85px !important;
        padding-bottom: 85px !important
    }
}

@media (min-width: 768px) {
    .py-md-85 {
        padding-top: 85px !important;
        padding-bottom: 85px !important
    }
}

@media (min-width: 992px) {
    .py-lg-85 {
        padding-top: 85px !important;
        padding-bottom: 85px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-85 {
        padding-top: 85px !important;
        padding-bottom: 85px !important
    }
}

.py-xxl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important
}

@media (min-width: 0) {
    .py-xs-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important
    }
}

@media (min-width: 320px) {
    .py-sm-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important
    }
}

@media (min-width: 768px) {
    .py-md-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important
    }
}

@media (min-width: 992px) {
    .py-lg-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important
    }
}

.py-xxl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important
}

@media (min-width: 0) {
    .py-xs-125 {
        padding-top: 125px !important;
        padding-bottom: 125px !important
    }
}

@media (min-width: 320px) {
    .py-sm-125 {
        padding-top: 125px !important;
        padding-bottom: 125px !important
    }
}

@media (min-width: 768px) {
    .py-md-125 {
        padding-top: 125px !important;
        padding-bottom: 125px !important
    }
}

@media (min-width: 992px) {
    .py-lg-125 {
        padding-top: 125px !important;
        padding-bottom: 125px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-125 {
        padding-top: 125px !important;
        padding-bottom: 125px !important
    }
}

.py-xxl-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important
}

@media (min-width: 0) {
    .py-xs-135 {
        padding-top: 135px !important;
        padding-bottom: 135px !important
    }
}

@media (min-width: 320px) {
    .py-sm-135 {
        padding-top: 135px !important;
        padding-bottom: 135px !important
    }
}

@media (min-width: 768px) {
    .py-md-135 {
        padding-top: 135px !important;
        padding-bottom: 135px !important
    }
}

@media (min-width: 992px) {
    .py-lg-135 {
        padding-top: 135px !important;
        padding-bottom: 135px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-135 {
        padding-top: 135px !important;
        padding-bottom: 135px !important
    }
}

.py-xxl-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important
}

@media (min-width: 0) {
    .py-xs-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important
    }
}

@media (min-width: 320px) {
    .py-sm-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important
    }
}

@media (min-width: 768px) {
    .py-md-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important
    }
}

@media (min-width: 992px) {
    .py-lg-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important
    }
}

.py-xxl-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important
}

@media (min-width: 0) {
    .py-xs-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important
    }
}

@media (min-width: 320px) {
    .py-sm-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important
    }
}

@media (min-width: 768px) {
    .py-md-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important
    }
}

@media (min-width: 992px) {
    .py-lg-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important
    }
}

.py-xxl-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important
}

@media (min-width: 0) {
    .py-xs-175 {
        padding-top: 175px !important;
        padding-bottom: 175px !important
    }
}

@media (min-width: 320px) {
    .py-sm-175 {
        padding-top: 175px !important;
        padding-bottom: 175px !important
    }
}

@media (min-width: 768px) {
    .py-md-175 {
        padding-top: 175px !important;
        padding-bottom: 175px !important
    }
}

@media (min-width: 992px) {
    .py-lg-175 {
        padding-top: 175px !important;
        padding-bottom: 175px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-175 {
        padding-top: 175px !important;
        padding-bottom: 175px !important
    }
}

.py-xxl-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important
}

@media (min-width: 0) {
    .py-xs-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important
    }
}

@media (min-width: 320px) {
    .py-sm-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important
    }
}

@media (min-width: 768px) {
    .py-md-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important
    }
}

@media (min-width: 992px) {
    .py-lg-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important
    }
}

.py-xxl-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important
}

@media (min-width: 0) {
    .py-xs-250 {
        padding-top: 250px !important;
        padding-bottom: 250px !important
    }
}

@media (min-width: 320px) {
    .py-sm-250 {
        padding-top: 250px !important;
        padding-bottom: 250px !important
    }
}

@media (min-width: 768px) {
    .py-md-250 {
        padding-top: 250px !important;
        padding-bottom: 250px !important
    }
}

@media (min-width: 992px) {
    .py-lg-250 {
        padding-top: 250px !important;
        padding-bottom: 250px !important
    }
}

@media (min-width: 1200px) {
    .py-xl-250 {
        padding-top: 250px !important;
        padding-bottom: 250px !important
    }
}

.py-xxl-250 {
    padding-top: 250px !important;
    padding-bottom: 250px !important
}

@media (min-width: 0) {
    .pt-xs-0 {
        padding-top: 0 !important
    }
}

@media (min-width: 320px) {
    .pt-sm-0 {
        padding-top: 0 !important
    }
}

@media (min-width: 768px) {
    .pt-md-0 {
        padding-top: 0 !important
    }
}

@media (min-width: 992px) {
    .pt-lg-0 {
        padding-top: 0 !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-0 {
        padding-top: 0 !important
    }
}

.pt-xxl-0 {
    padding-top: 0 !important
}

@media (min-width: 0) {
    .pt-xs-1 {
        padding-top: 1px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-1 {
        padding-top: 1px !important
    }
}

@media (min-width: 768px) {
    .pt-md-1 {
        padding-top: 1px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-1 {
        padding-top: 1px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-1 {
        padding-top: 1px !important
    }
}

.pt-xxl-1 {
    padding-top: 1px !important
}

@media (min-width: 0) {
    .pt-xs-10 {
        padding-top: 10px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-10 {
        padding-top: 10px !important
    }
}

@media (min-width: 768px) {
    .pt-md-10 {
        padding-top: 10px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-10 {
        padding-top: 10px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-10 {
        padding-top: 10px !important
    }
}

.pt-xxl-10 {
    padding-top: 10px !important
}

@media (min-width: 0) {
    .pt-xs-15 {
        padding-top: 15px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-15 {
        padding-top: 15px !important
    }
}

@media (min-width: 768px) {
    .pt-md-15 {
        padding-top: 15px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-15 {
        padding-top: 15px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-15 {
        padding-top: 15px !important
    }
}

.pt-xxl-15 {
    padding-top: 15px !important
}

@media (min-width: 0) {
    .pt-xs-20 {
        padding-top: 20px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-20 {
        padding-top: 20px !important
    }
}

@media (min-width: 768px) {
    .pt-md-20 {
        padding-top: 20px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-20 {
        padding-top: 20px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-20 {
        padding-top: 20px !important
    }
}

.pt-xxl-20 {
    padding-top: 20px !important
}

@media (min-width: 0) {
    .pt-xs-25 {
        padding-top: 25px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-25 {
        padding-top: 25px !important
    }
}

@media (min-width: 768px) {
    .pt-md-25 {
        padding-top: 25px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-25 {
        padding-top: 25px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-25 {
        padding-top: 25px !important
    }
}

.pt-xxl-25 {
    padding-top: 25px !important
}

@media (min-width: 0) {
    .pt-xs-30 {
        padding-top: 30px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-30 {
        padding-top: 30px !important
    }
}

@media (min-width: 768px) {
    .pt-md-30 {
        padding-top: 30px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-30 {
        padding-top: 30px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-30 {
        padding-top: 30px !important
    }
}

.pt-xxl-30 {
    padding-top: 30px !important
}

@media (min-width: 0) {
    .pt-xs-35 {
        padding-top: 35px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-35 {
        padding-top: 35px !important
    }
}

@media (min-width: 768px) {
    .pt-md-35 {
        padding-top: 35px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-35 {
        padding-top: 35px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-35 {
        padding-top: 35px !important
    }
}

.pt-xxl-35 {
    padding-top: 35px !important
}

@media (min-width: 0) {
    .pt-xs-40 {
        padding-top: 40px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-40 {
        padding-top: 40px !important
    }
}

@media (min-width: 768px) {
    .pt-md-40 {
        padding-top: 40px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-40 {
        padding-top: 40px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-40 {
        padding-top: 40px !important
    }
}

.pt-xxl-40 {
    padding-top: 40px !important
}

@media (min-width: 0) {
    .pt-xs-50 {
        padding-top: 50px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-50 {
        padding-top: 50px !important
    }
}

@media (min-width: 768px) {
    .pt-md-50 {
        padding-top: 50px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-50 {
        padding-top: 50px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-50 {
        padding-top: 50px !important
    }
}

.pt-xxl-50 {
    padding-top: 50px !important
}

@media (min-width: 0) {
    .pt-xs-60 {
        padding-top: 60px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-60 {
        padding-top: 60px !important
    }
}

@media (min-width: 768px) {
    .pt-md-60 {
        padding-top: 60px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-60 {
        padding-top: 60px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-60 {
        padding-top: 60px !important
    }
}

.pt-xxl-60 {
    padding-top: 60px !important
}

@media (min-width: 0) {
    .pt-xs-75 {
        padding-top: 75px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-75 {
        padding-top: 75px !important
    }
}

@media (min-width: 768px) {
    .pt-md-75 {
        padding-top: 75px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-75 {
        padding-top: 75px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-75 {
        padding-top: 75px !important
    }
}

.pt-xxl-75 {
    padding-top: 75px !important
}

@media (min-width: 0) {
    .pt-xs-80 {
        padding-top: 80px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-80 {
        padding-top: 80px !important
    }
}

@media (min-width: 768px) {
    .pt-md-80 {
        padding-top: 80px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-80 {
        padding-top: 80px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-80 {
        padding-top: 80px !important
    }
}

.pt-xxl-80 {
    padding-top: 80px !important
}

@media (min-width: 0) {
    .pt-xs-85 {
        padding-top: 85px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-85 {
        padding-top: 85px !important
    }
}

@media (min-width: 768px) {
    .pt-md-85 {
        padding-top: 85px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-85 {
        padding-top: 85px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-85 {
        padding-top: 85px !important
    }
}

.pt-xxl-85 {
    padding-top: 85px !important
}

@media (min-width: 0) {
    .pt-xs-100 {
        padding-top: 100px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-100 {
        padding-top: 100px !important
    }
}

@media (min-width: 768px) {
    .pt-md-100 {
        padding-top: 100px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-100 {
        padding-top: 100px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-100 {
        padding-top: 100px !important
    }
}

.pt-xxl-100 {
    padding-top: 100px !important
}

@media (min-width: 0) {
    .pt-xs-125 {
        padding-top: 125px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-125 {
        padding-top: 125px !important
    }
}

@media (min-width: 768px) {
    .pt-md-125 {
        padding-top: 125px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-125 {
        padding-top: 125px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-125 {
        padding-top: 125px !important
    }
}

.pt-xxl-125 {
    padding-top: 125px !important
}

@media (min-width: 0) {
    .pt-xs-135 {
        padding-top: 135px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-135 {
        padding-top: 135px !important
    }
}

@media (min-width: 768px) {
    .pt-md-135 {
        padding-top: 135px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-135 {
        padding-top: 135px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-135 {
        padding-top: 135px !important
    }
}

.pt-xxl-135 {
    padding-top: 135px !important
}

@media (min-width: 0) {
    .pt-xs-150 {
        padding-top: 150px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-150 {
        padding-top: 150px !important
    }
}

@media (min-width: 768px) {
    .pt-md-150 {
        padding-top: 150px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-150 {
        padding-top: 150px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-150 {
        padding-top: 150px !important
    }
}

.pt-xxl-150 {
    padding-top: 150px !important
}

@media (min-width: 0) {
    .pt-xs-160 {
        padding-top: 160px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-160 {
        padding-top: 160px !important
    }
}

@media (min-width: 768px) {
    .pt-md-160 {
        padding-top: 160px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-160 {
        padding-top: 160px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-160 {
        padding-top: 160px !important
    }
}

.pt-xxl-160 {
    padding-top: 160px !important
}

@media (min-width: 0) {
    .pt-xs-175 {
        padding-top: 175px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-175 {
        padding-top: 175px !important
    }
}

@media (min-width: 768px) {
    .pt-md-175 {
        padding-top: 175px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-175 {
        padding-top: 175px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-175 {
        padding-top: 175px !important
    }
}

.pt-xxl-175 {
    padding-top: 175px !important
}

@media (min-width: 0) {
    .pt-xs-200 {
        padding-top: 200px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-200 {
        padding-top: 200px !important
    }
}

@media (min-width: 768px) {
    .pt-md-200 {
        padding-top: 200px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-200 {
        padding-top: 200px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-200 {
        padding-top: 200px !important
    }
}

.pt-xxl-200 {
    padding-top: 200px !important
}

@media (min-width: 0) {
    .pt-xs-250 {
        padding-top: 250px !important
    }
}

@media (min-width: 320px) {
    .pt-sm-250 {
        padding-top: 250px !important
    }
}

@media (min-width: 768px) {
    .pt-md-250 {
        padding-top: 250px !important
    }
}

@media (min-width: 992px) {
    .pt-lg-250 {
        padding-top: 250px !important
    }
}

@media (min-width: 1200px) {
    .pt-xl-250 {
        padding-top: 250px !important
    }
}

.pt-xxl-250 {
    padding-top: 250px !important
}

@media (min-width: 0) {
    .pb-xs-0 {
        padding-bottom: 0 !important
    }
}

@media (min-width: 320px) {
    .pb-sm-0 {
        padding-bottom: 0 !important
    }
}

@media (min-width: 768px) {
    .pb-md-0 {
        padding-bottom: 0 !important
    }
}

@media (min-width: 992px) {
    .pb-lg-0 {
        padding-bottom: 0 !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-0 {
        padding-bottom: 0 !important
    }
}

.pb-xxl-0 {
    padding-bottom: 0 !important
}

@media (min-width: 0) {
    .pb-xs-1 {
        padding-bottom: 1px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-1 {
        padding-bottom: 1px !important
    }
}

@media (min-width: 768px) {
    .pb-md-1 {
        padding-bottom: 1px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-1 {
        padding-bottom: 1px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-1 {
        padding-bottom: 1px !important
    }
}

.pb-xxl-1 {
    padding-bottom: 1px !important
}

@media (min-width: 0) {
    .pb-xs-10 {
        padding-bottom: 10px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-10 {
        padding-bottom: 10px !important
    }
}

@media (min-width: 768px) {
    .pb-md-10 {
        padding-bottom: 10px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-10 {
        padding-bottom: 10px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-10 {
        padding-bottom: 10px !important
    }
}

.pb-xxl-10 {
    padding-bottom: 10px !important
}

@media (min-width: 0) {
    .pb-xs-15 {
        padding-bottom: 15px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-15 {
        padding-bottom: 15px !important
    }
}

@media (min-width: 768px) {
    .pb-md-15 {
        padding-bottom: 15px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-15 {
        padding-bottom: 15px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-15 {
        padding-bottom: 15px !important
    }
}

.pb-xxl-15 {
    padding-bottom: 15px !important
}

@media (min-width: 0) {
    .pb-xs-20 {
        padding-bottom: 20px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-20 {
        padding-bottom: 20px !important
    }
}

@media (min-width: 768px) {
    .pb-md-20 {
        padding-bottom: 20px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-20 {
        padding-bottom: 20px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-20 {
        padding-bottom: 20px !important
    }
}

.pb-xxl-20 {
    padding-bottom: 20px !important
}

@media (min-width: 0) {
    .pb-xs-25 {
        padding-bottom: 25px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-25 {
        padding-bottom: 25px !important
    }
}

@media (min-width: 768px) {
    .pb-md-25 {
        padding-bottom: 25px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-25 {
        padding-bottom: 25px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-25 {
        padding-bottom: 25px !important
    }
}

.pb-xxl-25 {
    padding-bottom: 25px !important
}

@media (min-width: 0) {
    .pb-xs-30 {
        padding-bottom: 30px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-30 {
        padding-bottom: 30px !important
    }
}

@media (min-width: 768px) {
    .pb-md-30 {
        padding-bottom: 30px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-30 {
        padding-bottom: 30px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-30 {
        padding-bottom: 30px !important
    }
}

.pb-xxl-30 {
    padding-bottom: 30px !important
}

@media (min-width: 0) {
    .pb-xs-35 {
        padding-bottom: 35px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-35 {
        padding-bottom: 35px !important
    }
}

@media (min-width: 768px) {
    .pb-md-35 {
        padding-bottom: 35px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-35 {
        padding-bottom: 35px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-35 {
        padding-bottom: 35px !important
    }
}

.pb-xxl-35 {
    padding-bottom: 35px !important
}

@media (min-width: 0) {
    .pb-xs-40 {
        padding-bottom: 40px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-40 {
        padding-bottom: 40px !important
    }
}

@media (min-width: 768px) {
    .pb-md-40 {
        padding-bottom: 40px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-40 {
        padding-bottom: 40px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-40 {
        padding-bottom: 40px !important
    }
}

.pb-xxl-40 {
    padding-bottom: 40px !important
}

@media (min-width: 0) {
    .pb-xs-50 {
        padding-bottom: 50px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-50 {
        padding-bottom: 50px !important
    }
}

@media (min-width: 768px) {
    .pb-md-50 {
        padding-bottom: 50px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-50 {
        padding-bottom: 50px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-50 {
        padding-bottom: 50px !important
    }
}

.pb-xxl-50 {
    padding-bottom: 50px !important
}

@media (min-width: 0) {
    .pb-xs-60 {
        padding-bottom: 60px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-60 {
        padding-bottom: 60px !important
    }
}

@media (min-width: 768px) {
    .pb-md-60 {
        padding-bottom: 60px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-60 {
        padding-bottom: 60px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-60 {
        padding-bottom: 60px !important
    }
}

.pb-xxl-60 {
    padding-bottom: 60px !important
}

@media (min-width: 0) {
    .pb-xs-75 {
        padding-bottom: 75px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-75 {
        padding-bottom: 75px !important
    }
}

@media (min-width: 768px) {
    .pb-md-75 {
        padding-bottom: 75px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-75 {
        padding-bottom: 75px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-75 {
        padding-bottom: 75px !important
    }
}

.pb-xxl-75 {
    padding-bottom: 75px !important
}

@media (min-width: 0) {
    .pb-xs-80 {
        padding-bottom: 80px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-80 {
        padding-bottom: 80px !important
    }
}

@media (min-width: 768px) {
    .pb-md-80 {
        padding-bottom: 80px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-80 {
        padding-bottom: 80px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-80 {
        padding-bottom: 80px !important
    }
}

.pb-xxl-80 {
    padding-bottom: 80px !important
}

@media (min-width: 0) {
    .pb-xs-85 {
        padding-bottom: 85px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-85 {
        padding-bottom: 85px !important
    }
}

@media (min-width: 768px) {
    .pb-md-85 {
        padding-bottom: 85px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-85 {
        padding-bottom: 85px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-85 {
        padding-bottom: 85px !important
    }
}

.pb-xxl-85 {
    padding-bottom: 85px !important
}

@media (min-width: 0) {
    .pb-xs-100 {
        padding-bottom: 100px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-100 {
        padding-bottom: 100px !important
    }
}

@media (min-width: 768px) {
    .pb-md-100 {
        padding-bottom: 100px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-100 {
        padding-bottom: 100px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-100 {
        padding-bottom: 100px !important
    }
}

.pb-xxl-100 {
    padding-bottom: 100px !important
}

@media (min-width: 0) {
    .pb-xs-125 {
        padding-bottom: 125px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-125 {
        padding-bottom: 125px !important
    }
}

@media (min-width: 768px) {
    .pb-md-125 {
        padding-bottom: 125px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-125 {
        padding-bottom: 125px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-125 {
        padding-bottom: 125px !important
    }
}

.pb-xxl-125 {
    padding-bottom: 125px !important
}

@media (min-width: 0) {
    .pb-xs-135 {
        padding-bottom: 135px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-135 {
        padding-bottom: 135px !important
    }
}

@media (min-width: 768px) {
    .pb-md-135 {
        padding-bottom: 135px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-135 {
        padding-bottom: 135px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-135 {
        padding-bottom: 135px !important
    }
}

.pb-xxl-135 {
    padding-bottom: 135px !important
}

@media (min-width: 0) {
    .pb-xs-150 {
        padding-bottom: 150px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-150 {
        padding-bottom: 150px !important
    }
}

@media (min-width: 768px) {
    .pb-md-150 {
        padding-bottom: 150px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-150 {
        padding-bottom: 150px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-150 {
        padding-bottom: 150px !important
    }
}

.pb-xxl-150 {
    padding-bottom: 150px !important
}

@media (min-width: 0) {
    .pb-xs-160 {
        padding-bottom: 160px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-160 {
        padding-bottom: 160px !important
    }
}

@media (min-width: 768px) {
    .pb-md-160 {
        padding-bottom: 160px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-160 {
        padding-bottom: 160px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-160 {
        padding-bottom: 160px !important
    }
}

.pb-xxl-160 {
    padding-bottom: 160px !important
}

@media (min-width: 0) {
    .pb-xs-175 {
        padding-bottom: 175px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-175 {
        padding-bottom: 175px !important
    }
}

@media (min-width: 768px) {
    .pb-md-175 {
        padding-bottom: 175px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-175 {
        padding-bottom: 175px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-175 {
        padding-bottom: 175px !important
    }
}

.pb-xxl-175 {
    padding-bottom: 175px !important
}

@media (min-width: 0) {
    .pb-xs-200 {
        padding-bottom: 200px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-200 {
        padding-bottom: 200px !important
    }
}

@media (min-width: 768px) {
    .pb-md-200 {
        padding-bottom: 200px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-200 {
        padding-bottom: 200px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-200 {
        padding-bottom: 200px !important
    }
}

.pb-xxl-200 {
    padding-bottom: 200px !important
}

@media (min-width: 0) {
    .pb-xs-250 {
        padding-bottom: 250px !important
    }
}

@media (min-width: 320px) {
    .pb-sm-250 {
        padding-bottom: 250px !important
    }
}

@media (min-width: 768px) {
    .pb-md-250 {
        padding-bottom: 250px !important
    }
}

@media (min-width: 992px) {
    .pb-lg-250 {
        padding-bottom: 250px !important
    }
}

@media (min-width: 1200px) {
    .pb-xl-250 {
        padding-bottom: 250px !important
    }
}

.pb-xxl-250 {
    padding-bottom: 250px !important
}

@media (min-width: 0) {
    .my-xs-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
}

@media (min-width: 320px) {
    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
}

@media (min-width: 768px) {
    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
}

@media (min-width: 992px) {
    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
}

@media (min-width: 1200px) {
    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }
}

.my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

@media (min-width: 0) {
    .my-xs-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important
    }
}

@media (min-width: 320px) {
    .my-sm-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important
    }
}

@media (min-width: 768px) {
    .my-md-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important
    }
}

@media (min-width: 992px) {
    .my-lg-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important
    }
}

.my-xxl-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important
}

@media (min-width: 0) {
    .my-xs-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important
    }
}

@media (min-width: 320px) {
    .my-sm-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important
    }
}

@media (min-width: 768px) {
    .my-md-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important
    }
}

@media (min-width: 992px) {
    .my-lg-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important
    }
}

.my-xxl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important
}

@media (min-width: 0) {
    .my-xs-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important
    }
}

@media (min-width: 320px) {
    .my-sm-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important
    }
}

@media (min-width: 768px) {
    .my-md-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important
    }
}

@media (min-width: 992px) {
    .my-lg-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important
    }
}

.my-xxl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important
}

@media (min-width: 0) {
    .my-xs-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important
    }
}

@media (min-width: 320px) {
    .my-sm-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important
    }
}

@media (min-width: 768px) {
    .my-md-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important
    }
}

@media (min-width: 992px) {
    .my-lg-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important
    }
}

.my-xxl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important
}

@media (min-width: 0) {
    .my-xs-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important
    }
}

@media (min-width: 320px) {
    .my-sm-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important
    }
}

@media (min-width: 768px) {
    .my-md-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important
    }
}

@media (min-width: 992px) {
    .my-lg-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important
    }
}

.my-xxl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important
}

@media (min-width: 0) {
    .my-xs-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important
    }
}

@media (min-width: 320px) {
    .my-sm-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important
    }
}

@media (min-width: 768px) {
    .my-md-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important
    }
}

@media (min-width: 992px) {
    .my-lg-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important
    }
}

.my-xxl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important
}

@media (min-width: 0) {
    .my-xs-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important
    }
}

@media (min-width: 320px) {
    .my-sm-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important
    }
}

@media (min-width: 768px) {
    .my-md-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important
    }
}

@media (min-width: 992px) {
    .my-lg-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important
    }
}

.my-xxl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important
}

@media (min-width: 0) {
    .my-xs-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important
    }
}

@media (min-width: 320px) {
    .my-sm-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important
    }
}

@media (min-width: 768px) {
    .my-md-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important
    }
}

@media (min-width: 992px) {
    .my-lg-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important
    }
}

.my-xxl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important
}

@media (min-width: 0) {
    .my-xs-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important
    }
}

@media (min-width: 320px) {
    .my-sm-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important
    }
}

@media (min-width: 768px) {
    .my-md-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important
    }
}

@media (min-width: 992px) {
    .my-lg-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important
    }
}

.my-xxl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important
}

@media (min-width: 0) {
    .my-xs-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important
    }
}

@media (min-width: 320px) {
    .my-sm-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important
    }
}

@media (min-width: 768px) {
    .my-md-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important
    }
}

@media (min-width: 992px) {
    .my-lg-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important
    }
}

.my-xxl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important
}

@media (min-width: 0) {
    .my-xs-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important
    }
}

@media (min-width: 320px) {
    .my-sm-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important
    }
}

@media (min-width: 768px) {
    .my-md-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important
    }
}

@media (min-width: 992px) {
    .my-lg-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important
    }
}

.my-xxl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important
}

@media (min-width: 0) {
    .my-xs-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important
    }
}

@media (min-width: 320px) {
    .my-sm-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important
    }
}

@media (min-width: 768px) {
    .my-md-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important
    }
}

@media (min-width: 992px) {
    .my-lg-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important
    }
}

.my-xxl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important
}

@media (min-width: 0) {
    .my-xs-85 {
        margin-top: 85px !important;
        margin-bottom: 85px !important
    }
}

@media (min-width: 320px) {
    .my-sm-85 {
        margin-top: 85px !important;
        margin-bottom: 85px !important
    }
}

@media (min-width: 768px) {
    .my-md-85 {
        margin-top: 85px !important;
        margin-bottom: 85px !important
    }
}

@media (min-width: 992px) {
    .my-lg-85 {
        margin-top: 85px !important;
        margin-bottom: 85px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-85 {
        margin-top: 85px !important;
        margin-bottom: 85px !important
    }
}

.my-xxl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important
}

@media (min-width: 0) {
    .my-xs-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important
    }
}

@media (min-width: 320px) {
    .my-sm-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important
    }
}

@media (min-width: 768px) {
    .my-md-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important
    }
}

@media (min-width: 992px) {
    .my-lg-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important
    }
}

.my-xxl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important
}

@media (min-width: 0) {
    .my-xs-125 {
        margin-top: 125px !important;
        margin-bottom: 125px !important
    }
}

@media (min-width: 320px) {
    .my-sm-125 {
        margin-top: 125px !important;
        margin-bottom: 125px !important
    }
}

@media (min-width: 768px) {
    .my-md-125 {
        margin-top: 125px !important;
        margin-bottom: 125px !important
    }
}

@media (min-width: 992px) {
    .my-lg-125 {
        margin-top: 125px !important;
        margin-bottom: 125px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-125 {
        margin-top: 125px !important;
        margin-bottom: 125px !important
    }
}

.my-xxl-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important
}

@media (min-width: 0) {
    .my-xs-135 {
        margin-top: 135px !important;
        margin-bottom: 135px !important
    }
}

@media (min-width: 320px) {
    .my-sm-135 {
        margin-top: 135px !important;
        margin-bottom: 135px !important
    }
}

@media (min-width: 768px) {
    .my-md-135 {
        margin-top: 135px !important;
        margin-bottom: 135px !important
    }
}

@media (min-width: 992px) {
    .my-lg-135 {
        margin-top: 135px !important;
        margin-bottom: 135px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-135 {
        margin-top: 135px !important;
        margin-bottom: 135px !important
    }
}

.my-xxl-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important
}

@media (min-width: 0) {
    .my-xs-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important
    }
}

@media (min-width: 320px) {
    .my-sm-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important
    }
}

@media (min-width: 768px) {
    .my-md-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important
    }
}

@media (min-width: 992px) {
    .my-lg-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important
    }
}

.my-xxl-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important
}

@media (min-width: 0) {
    .my-xs-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important
    }
}

@media (min-width: 320px) {
    .my-sm-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important
    }
}

@media (min-width: 768px) {
    .my-md-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important
    }
}

@media (min-width: 992px) {
    .my-lg-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important
    }
}

.my-xxl-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important
}

@media (min-width: 0) {
    .my-xs-175 {
        margin-top: 175px !important;
        margin-bottom: 175px !important
    }
}

@media (min-width: 320px) {
    .my-sm-175 {
        margin-top: 175px !important;
        margin-bottom: 175px !important
    }
}

@media (min-width: 768px) {
    .my-md-175 {
        margin-top: 175px !important;
        margin-bottom: 175px !important
    }
}

@media (min-width: 992px) {
    .my-lg-175 {
        margin-top: 175px !important;
        margin-bottom: 175px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-175 {
        margin-top: 175px !important;
        margin-bottom: 175px !important
    }
}

.my-xxl-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important
}

@media (min-width: 0) {
    .my-xs-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important
    }
}

@media (min-width: 320px) {
    .my-sm-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important
    }
}

@media (min-width: 768px) {
    .my-md-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important
    }
}

@media (min-width: 992px) {
    .my-lg-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important
    }
}

.my-xxl-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important
}

@media (min-width: 0) {
    .my-xs-250 {
        margin-top: 250px !important;
        margin-bottom: 250px !important
    }
}

@media (min-width: 320px) {
    .my-sm-250 {
        margin-top: 250px !important;
        margin-bottom: 250px !important
    }
}

@media (min-width: 768px) {
    .my-md-250 {
        margin-top: 250px !important;
        margin-bottom: 250px !important
    }
}

@media (min-width: 992px) {
    .my-lg-250 {
        margin-top: 250px !important;
        margin-bottom: 250px !important
    }
}

@media (min-width: 1200px) {
    .my-xl-250 {
        margin-top: 250px !important;
        margin-bottom: 250px !important
    }
}

.my-xxl-250 {
    margin-top: 250px !important;
    margin-bottom: 250px !important
}

@media (min-width: 0) {
    .mt-xs-0 {
        margin-top: 0 !important
    }
}

@media (min-width: 320px) {
    .mt-sm-0 {
        margin-top: 0 !important
    }
}

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0 !important
    }
}

@media (min-width: 992px) {
    .mt-lg-0 {
        margin-top: 0 !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-0 {
        margin-top: 0 !important
    }
}

.mt-xxl-0 {
    margin-top: 0 !important
}

@media (min-width: 0) {
    .mt-xs-1 {
        margin-top: 1px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-1 {
        margin-top: 1px !important
    }
}

@media (min-width: 768px) {
    .mt-md-1 {
        margin-top: 1px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-1 {
        margin-top: 1px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-1 {
        margin-top: 1px !important
    }
}

.mt-xxl-1 {
    margin-top: 1px !important
}

@media (min-width: 0) {
    .mt-xs-10 {
        margin-top: 10px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-10 {
        margin-top: 10px !important
    }
}

@media (min-width: 768px) {
    .mt-md-10 {
        margin-top: 10px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-10 {
        margin-top: 10px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-10 {
        margin-top: 10px !important
    }
}

.mt-xxl-10 {
    margin-top: 10px !important
}

@media (min-width: 0) {
    .mt-xs-15 {
        margin-top: 15px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-15 {
        margin-top: 15px !important
    }
}

@media (min-width: 768px) {
    .mt-md-15 {
        margin-top: 15px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-15 {
        margin-top: 15px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-15 {
        margin-top: 15px !important
    }
}

.mt-xxl-15 {
    margin-top: 15px !important
}

@media (min-width: 0) {
    .mt-xs-20 {
        margin-top: 20px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-20 {
        margin-top: 20px !important
    }
}

@media (min-width: 768px) {
    .mt-md-20 {
        margin-top: 20px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-20 {
        margin-top: 20px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-20 {
        margin-top: 20px !important
    }
}

.mt-xxl-20 {
    margin-top: 20px !important
}

@media (min-width: 0) {
    .mt-xs-25 {
        margin-top: 25px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-25 {
        margin-top: 25px !important
    }
}

@media (min-width: 768px) {
    .mt-md-25 {
        margin-top: 25px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-25 {
        margin-top: 25px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-25 {
        margin-top: 25px !important
    }
}

.mt-xxl-25 {
    margin-top: 25px !important
}

@media (min-width: 0) {
    .mt-xs-30 {
        margin-top: 30px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-30 {
        margin-top: 30px !important
    }
}

@media (min-width: 768px) {
    .mt-md-30 {
        margin-top: 30px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-30 {
        margin-top: 30px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-30 {
        margin-top: 30px !important
    }
}

.mt-xxl-30 {
    margin-top: 30px !important
}

@media (min-width: 0) {
    .mt-xs-35 {
        margin-top: 35px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-35 {
        margin-top: 35px !important
    }
}

@media (min-width: 768px) {
    .mt-md-35 {
        margin-top: 35px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-35 {
        margin-top: 35px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-35 {
        margin-top: 35px !important
    }
}

.mt-xxl-35 {
    margin-top: 35px !important
}

@media (min-width: 0) {
    .mt-xs-40 {
        margin-top: 40px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-40 {
        margin-top: 40px !important
    }
}

@media (min-width: 768px) {
    .mt-md-40 {
        margin-top: 40px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-40 {
        margin-top: 40px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-40 {
        margin-top: 40px !important
    }
}

.mt-xxl-40 {
    margin-top: 40px !important
}

@media (min-width: 0) {
    .mt-xs-50 {
        margin-top: 50px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-50 {
        margin-top: 50px !important
    }
}

@media (min-width: 768px) {
    .mt-md-50 {
        margin-top: 50px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-50 {
        margin-top: 50px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-50 {
        margin-top: 50px !important
    }
}

.mt-xxl-50 {
    margin-top: 50px !important
}

@media (min-width: 0) {
    .mt-xs-60 {
        margin-top: 60px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-60 {
        margin-top: 60px !important
    }
}

@media (min-width: 768px) {
    .mt-md-60 {
        margin-top: 60px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-60 {
        margin-top: 60px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-60 {
        margin-top: 60px !important
    }
}

.mt-xxl-60 {
    margin-top: 60px !important
}

@media (min-width: 0) {
    .mt-xs-75 {
        margin-top: 75px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-75 {
        margin-top: 75px !important
    }
}

@media (min-width: 768px) {
    .mt-md-75 {
        margin-top: 75px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-75 {
        margin-top: 75px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-75 {
        margin-top: 75px !important
    }
}

.mt-xxl-75 {
    margin-top: 75px !important
}

@media (min-width: 0) {
    .mt-xs-80 {
        margin-top: 80px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-80 {
        margin-top: 80px !important
    }
}

@media (min-width: 768px) {
    .mt-md-80 {
        margin-top: 80px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-80 {
        margin-top: 80px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-80 {
        margin-top: 80px !important
    }
}

.mt-xxl-80 {
    margin-top: 80px !important
}

@media (min-width: 0) {
    .mt-xs-85 {
        margin-top: 85px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-85 {
        margin-top: 85px !important
    }
}

@media (min-width: 768px) {
    .mt-md-85 {
        margin-top: 85px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-85 {
        margin-top: 85px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-85 {
        margin-top: 85px !important
    }
}

.mt-xxl-85 {
    margin-top: 85px !important
}

@media (min-width: 0) {
    .mt-xs-100 {
        margin-top: 100px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-100 {
        margin-top: 100px !important
    }
}

@media (min-width: 768px) {
    .mt-md-100 {
        margin-top: 100px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-100 {
        margin-top: 100px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-100 {
        margin-top: 100px !important
    }
}

.mt-xxl-100 {
    margin-top: 100px !important
}

@media (min-width: 0) {
    .mt-xs-125 {
        margin-top: 125px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-125 {
        margin-top: 125px !important
    }
}

@media (min-width: 768px) {
    .mt-md-125 {
        margin-top: 125px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-125 {
        margin-top: 125px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-125 {
        margin-top: 125px !important
    }
}

.mt-xxl-125 {
    margin-top: 125px !important
}

@media (min-width: 0) {
    .mt-xs-135 {
        margin-top: 135px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-135 {
        margin-top: 135px !important
    }
}

@media (min-width: 768px) {
    .mt-md-135 {
        margin-top: 135px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-135 {
        margin-top: 135px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-135 {
        margin-top: 135px !important
    }
}

.mt-xxl-135 {
    margin-top: 135px !important
}

@media (min-width: 0) {
    .mt-xs-150 {
        margin-top: 150px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-150 {
        margin-top: 150px !important
    }
}

@media (min-width: 768px) {
    .mt-md-150 {
        margin-top: 150px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-150 {
        margin-top: 150px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-150 {
        margin-top: 150px !important
    }
}

.mt-xxl-150 {
    margin-top: 150px !important
}

@media (min-width: 0) {
    .mt-xs-160 {
        margin-top: 160px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-160 {
        margin-top: 160px !important
    }
}

@media (min-width: 768px) {
    .mt-md-160 {
        margin-top: 160px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-160 {
        margin-top: 160px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-160 {
        margin-top: 160px !important
    }
}

.mt-xxl-160 {
    margin-top: 160px !important
}

@media (min-width: 0) {
    .mt-xs-175 {
        margin-top: 175px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-175 {
        margin-top: 175px !important
    }
}

@media (min-width: 768px) {
    .mt-md-175 {
        margin-top: 175px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-175 {
        margin-top: 175px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-175 {
        margin-top: 175px !important
    }
}

.mt-xxl-175 {
    margin-top: 175px !important
}

@media (min-width: 0) {
    .mt-xs-200 {
        margin-top: 200px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-200 {
        margin-top: 200px !important
    }
}

@media (min-width: 768px) {
    .mt-md-200 {
        margin-top: 200px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-200 {
        margin-top: 200px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-200 {
        margin-top: 200px !important
    }
}

.mt-xxl-200 {
    margin-top: 200px !important
}

@media (min-width: 0) {
    .mt-xs-250 {
        margin-top: 250px !important
    }
}

@media (min-width: 320px) {
    .mt-sm-250 {
        margin-top: 250px !important
    }
}

@media (min-width: 768px) {
    .mt-md-250 {
        margin-top: 250px !important
    }
}

@media (min-width: 992px) {
    .mt-lg-250 {
        margin-top: 250px !important
    }
}

@media (min-width: 1200px) {
    .mt-xl-250 {
        margin-top: 250px !important
    }
}

.mt-xxl-250 {
    margin-top: 250px !important
}

@media (min-width: 0) {
    .mb-xs-0 {
        margin-bottom: 0 !important
    }
}

@media (min-width: 320px) {
    .mb-sm-0 {
        margin-bottom: 0 !important
    }
}

@media (min-width: 768px) {
    .mb-md-0 {
        margin-bottom: 0 !important
    }
}

@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-0 {
        margin-bottom: 0 !important
    }
}

.mb-xxl-0 {
    margin-bottom: 0 !important
}

@media (min-width: 0) {
    .mb-xs-1 {
        margin-bottom: 1px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-1 {
        margin-bottom: 1px !important
    }
}

@media (min-width: 768px) {
    .mb-md-1 {
        margin-bottom: 1px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-1 {
        margin-bottom: 1px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-1 {
        margin-bottom: 1px !important
    }
}

.mb-xxl-1 {
    margin-bottom: 1px !important
}

@media (min-width: 0) {
    .mb-xs-10 {
        margin-bottom: 10px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-10 {
        margin-bottom: 10px !important
    }
}

@media (min-width: 768px) {
    .mb-md-10 {
        margin-bottom: 10px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-10 {
        margin-bottom: 10px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-10 {
        margin-bottom: 10px !important
    }
}

.mb-xxl-10 {
    margin-bottom: 10px !important
}

@media (min-width: 0) {
    .mb-xs-15 {
        margin-bottom: 15px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-15 {
        margin-bottom: 15px !important
    }
}

@media (min-width: 768px) {
    .mb-md-15 {
        margin-bottom: 15px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-15 {
        margin-bottom: 15px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-15 {
        margin-bottom: 15px !important
    }
}

.mb-xxl-15 {
    margin-bottom: 15px !important
}

@media (min-width: 0) {
    .mb-xs-20 {
        margin-bottom: 20px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-20 {
        margin-bottom: 20px !important
    }
}

@media (min-width: 768px) {
    .mb-md-20 {
        margin-bottom: 20px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-20 {
        margin-bottom: 20px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-20 {
        margin-bottom: 20px !important
    }
}

.mb-xxl-20 {
    margin-bottom: 20px !important
}

@media (min-width: 0) {
    .mb-xs-25 {
        margin-bottom: 25px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-25 {
        margin-bottom: 25px !important
    }
}

@media (min-width: 768px) {
    .mb-md-25 {
        margin-bottom: 25px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-25 {
        margin-bottom: 25px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-25 {
        margin-bottom: 25px !important
    }
}

.mb-xxl-25 {
    margin-bottom: 25px !important
}

@media (min-width: 0) {
    .mb-xs-30 {
        margin-bottom: 30px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-30 {
        margin-bottom: 30px !important
    }
}

@media (min-width: 768px) {
    .mb-md-30 {
        margin-bottom: 30px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-30 {
        margin-bottom: 30px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-30 {
        margin-bottom: 30px !important
    }
}

.mb-xxl-30 {
    margin-bottom: 30px !important
}

@media (min-width: 0) {
    .mb-xs-35 {
        margin-bottom: 35px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-35 {
        margin-bottom: 35px !important
    }
}

@media (min-width: 768px) {
    .mb-md-35 {
        margin-bottom: 35px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-35 {
        margin-bottom: 35px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-35 {
        margin-bottom: 35px !important
    }
}

.mb-xxl-35 {
    margin-bottom: 35px !important
}

@media (min-width: 0) {
    .mb-xs-40 {
        margin-bottom: 40px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-40 {
        margin-bottom: 40px !important
    }
}

@media (min-width: 768px) {
    .mb-md-40 {
        margin-bottom: 40px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-40 {
        margin-bottom: 40px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-40 {
        margin-bottom: 40px !important
    }
}

.mb-xxl-40 {
    margin-bottom: 40px !important
}

@media (min-width: 0) {
    .mb-xs-50 {
        margin-bottom: 50px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-50 {
        margin-bottom: 50px !important
    }
}

@media (min-width: 768px) {
    .mb-md-50 {
        margin-bottom: 50px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-50 {
        margin-bottom: 50px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-50 {
        margin-bottom: 50px !important
    }
}

.mb-xxl-50 {
    margin-bottom: 50px !important
}

@media (min-width: 0) {
    .mb-xs-60 {
        margin-bottom: 60px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-60 {
        margin-bottom: 60px !important
    }
}

@media (min-width: 768px) {
    .mb-md-60 {
        margin-bottom: 60px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-60 {
        margin-bottom: 60px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-60 {
        margin-bottom: 60px !important
    }
}

.mb-xxl-60 {
    margin-bottom: 60px !important
}

@media (min-width: 0) {
    .mb-xs-75 {
        margin-bottom: 75px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-75 {
        margin-bottom: 75px !important
    }
}

@media (min-width: 768px) {
    .mb-md-75 {
        margin-bottom: 75px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-75 {
        margin-bottom: 75px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-75 {
        margin-bottom: 75px !important
    }
}

.mb-xxl-75 {
    margin-bottom: 75px !important
}

@media (min-width: 0) {
    .mb-xs-80 {
        margin-bottom: 80px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-80 {
        margin-bottom: 80px !important
    }
}

@media (min-width: 768px) {
    .mb-md-80 {
        margin-bottom: 80px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-80 {
        margin-bottom: 80px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-80 {
        margin-bottom: 80px !important
    }
}

.mb-xxl-80 {
    margin-bottom: 80px !important
}

@media (min-width: 0) {
    .mb-xs-85 {
        margin-bottom: 85px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-85 {
        margin-bottom: 85px !important
    }
}

@media (min-width: 768px) {
    .mb-md-85 {
        margin-bottom: 85px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-85 {
        margin-bottom: 85px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-85 {
        margin-bottom: 85px !important
    }
}

.mb-xxl-85 {
    margin-bottom: 85px !important
}

@media (min-width: 0) {
    .mb-xs-100 {
        margin-bottom: 100px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-100 {
        margin-bottom: 100px !important
    }
}

@media (min-width: 768px) {
    .mb-md-100 {
        margin-bottom: 100px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-100 {
        margin-bottom: 100px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-100 {
        margin-bottom: 100px !important
    }
}

.mb-xxl-100 {
    margin-bottom: 100px !important
}

@media (min-width: 0) {
    .mb-xs-125 {
        margin-bottom: 125px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-125 {
        margin-bottom: 125px !important
    }
}

@media (min-width: 768px) {
    .mb-md-125 {
        margin-bottom: 125px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-125 {
        margin-bottom: 125px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-125 {
        margin-bottom: 125px !important
    }
}

.mb-xxl-125 {
    margin-bottom: 125px !important
}

@media (min-width: 0) {
    .mb-xs-135 {
        margin-bottom: 135px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-135 {
        margin-bottom: 135px !important
    }
}

@media (min-width: 768px) {
    .mb-md-135 {
        margin-bottom: 135px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-135 {
        margin-bottom: 135px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-135 {
        margin-bottom: 135px !important
    }
}

.mb-xxl-135 {
    margin-bottom: 135px !important
}

@media (min-width: 0) {
    .mb-xs-150 {
        margin-bottom: 150px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-150 {
        margin-bottom: 150px !important
    }
}

@media (min-width: 768px) {
    .mb-md-150 {
        margin-bottom: 150px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-150 {
        margin-bottom: 150px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-150 {
        margin-bottom: 150px !important
    }
}

.mb-xxl-150 {
    margin-bottom: 150px !important
}

@media (min-width: 0) {
    .mb-xs-160 {
        margin-bottom: 160px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-160 {
        margin-bottom: 160px !important
    }
}

@media (min-width: 768px) {
    .mb-md-160 {
        margin-bottom: 160px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-160 {
        margin-bottom: 160px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-160 {
        margin-bottom: 160px !important
    }
}

.mb-xxl-160 {
    margin-bottom: 160px !important
}

@media (min-width: 0) {
    .mb-xs-175 {
        margin-bottom: 175px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-175 {
        margin-bottom: 175px !important
    }
}

@media (min-width: 768px) {
    .mb-md-175 {
        margin-bottom: 175px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-175 {
        margin-bottom: 175px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-175 {
        margin-bottom: 175px !important
    }
}

.mb-xxl-175 {
    margin-bottom: 175px !important
}

@media (min-width: 0) {
    .mb-xs-200 {
        margin-bottom: 200px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-200 {
        margin-bottom: 200px !important
    }
}

@media (min-width: 768px) {
    .mb-md-200 {
        margin-bottom: 200px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-200 {
        margin-bottom: 200px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-200 {
        margin-bottom: 200px !important
    }
}

.mb-xxl-200 {
    margin-bottom: 200px !important
}

@media (min-width: 0) {
    .mb-xs-250 {
        margin-bottom: 250px !important
    }
}

@media (min-width: 320px) {
    .mb-sm-250 {
        margin-bottom: 250px !important
    }
}

@media (min-width: 768px) {
    .mb-md-250 {
        margin-bottom: 250px !important
    }
}

@media (min-width: 992px) {
    .mb-lg-250 {
        margin-bottom: 250px !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-250 {
        margin-bottom: 250px !important
    }
}

.mb-xxl-250 {
    margin-bottom: 250px !important
}

@view-transition {
    navigation: auto;
}

::view-transition-old(main-video),
::view-transition-new(main-video) {
    animation: fade .5s ease
}

@keyframes fade {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media (max-width: 1199px) {
    ::-webkit-scrollbar {
        width: 0;
        background: transparent
    }
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: univers-next-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 32px;
    color: #231f20;
    scroll-behavior: smooth
}

body {
    overflow-x: hidden
}

@media (max-width: 1199px) {
    body {
        overflow-y: auto
    }
}

body.overflow--hidden {
    overflow: hidden
}

.vandeaardbodemverdwenen {
    display: none
}

.content {
    width: calc(100% - 100px);
    margin: 0 0 0 auto;
    min-height: calc(100vh - 62px);
    transition: all .35s ease
}

@media (max-width: 1199px) {
    .content {
        width: 100%;
        min-height: 0;
        margin: 0
    }
}

.content.is-hidden {
    opacity: 0
}

.testblock {
    width: 100%;
    height: 3000px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    text-transform: uppercase;
    color: #24195d;
    font-weight: 600
}

hgroup {
    font-weight: 500
}

hgroup span {
    font-size: 32px;
    font-size: 2rem;
    line-height: 32px;
    line-height: 2rem;
    display: block;
    font-weight: 600;
    margin-bottom: 25px
}

@media (max-width: 1199px) {
    hgroup span {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 24px;
        line-height: 1.5rem;
        margin-bottom: 15px
    }
}

.cms-output {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 32px;
    line-height: 2rem;
    font-weight: 400
}

@media (max-width: 1199px) {
    .cms-output {
        font-size: 16px;
        font-size: 1rem;
        line-height: 24px;
        line-height: 1.5rem
    }
}

.cms-output a:not([class]) {
    color: #24195d;
    text-decoration: none;
    font-weight: 500;
    transition: all .35s ease;
    scroll-margin-top: 200px
}

.cms-output a:not([class]):hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px
}

.cms-output h1,
.cms-output h2,
.cms-output h3,
.cms-output h4,
.cms-output h5,
.cms-output h6 {
    text-transform: unset;
    color: #db0f16
}

.cms-output h1:nth-child(1),
.cms-output h2:nth-child(1),
.cms-output h3:nth-child(1),
.cms-output h4:nth-child(1),
.cms-output h5:nth-child(1),
.cms-output h6:nth-child(1) {
    margin: 0 0 30px
}

.cms-output h1:not(:nth-child(1)),
.cms-output h2:not(:nth-child(1)),
.cms-output h3:not(:nth-child(1)),
.cms-output h4:not(:nth-child(1)),
.cms-output h5:not(:nth-child(1)),
.cms-output h6:not(:nth-child(1)) {
    margin: 30px 0
}

.cms-output h2 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 50px;
    line-height: 3.125rem
}

@media (max-width: 1199px) {
    .cms-output h2 {
        font-size: 28px;
        font-size: 1.75rem;
        line-height: 36px;
        line-height: 2.25rem
    }
}

.cms-output strong,
.cms-output b {
    color: #24195d;
    font-weight: 600
}

.cms-output.intro {
    font-size: 32px;
    font-size: 2rem;
    line-height: 48px;
    line-height: 3rem;
    font-weight: 300
}

@media (max-width: 1199px) {
    .cms-output.intro {
        font-size: 16px;
        font-size: 1rem;
        line-height: 24px;
        line-height: 1.5rem
    }
}

.cms-output.intro ul li:before {
    top: 6px
}

.cms-output ul {
    margin: 20px 0;
    padding: 0;
    list-style-type: none
}

.cms-output ul li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: calc(100% - 20px);
    padding: 0 0 0 30px
}

.cms-output ul li h1,
.cms-output ul li h2,
.cms-output ul li h3,
.cms-output ul li h4,
.cms-output ul li h5,
.cms-output ul li h6 {
    width: calc(100% - 40px);
    margin: 0 !important
}

.cms-output ul li p {
    margin-left: 30px
}

.cms-output ul li:not(:nth-last-child(1)) {
    margin-bottom: 10px
}

.cms-output ul li:before {
    position: absolute;
    top: -2px;
    left: 0;
    min-width: 16px;
    width: 16px;
    height: 16px;
    margin: 10px 15px 0 0;
    border-radius: 5px;
    background-color: #db0f16;
    content: "";
    transform-origin: center center;
    transform: rotate(45deg)
}

@media (max-width: 768px) {
    .cms-output ul li:before {
        top: -6px
    }
}

.cms-output ol {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    counter-reset: my-awesome-counter
}

.cms-output ol li {
    counter-increment: my-awesome-counter
}

.cms-output ol li:not(:nth-last-child(1)) {
    margin-bottom: 10px
}

.cms-output ol li:before {
    margin-right: 5px;
    content: "0" counter(my-awesome-counter);
    color: #db0f16;
    font-weight: 600
}

.cms-output blockquote {
    margin: 50px 0 50px 30px;
    padding: 30px;
    border-left: 3px solid #24195D;
    background-color: #e4fbfc;
    font-weight: 500;
    font-style: italic;
    color: #24195d
}

.bg--black {
    background-color: #231f20
}

.bg--white-100 {
    background-color: #fff
}

.bg--white-200 {
    background-color: #e9e9e9
}

.bg--red-100 {
    background-color: #db0f16
}

.bg--blue-100 {
    background-color: #24195d
}

.bg--blue-200 {
    background-color: #00e6f0
}

.bg--blue-300 {
    background-color: #e4fbfc
}

.color--black {
    color: #231f20
}

.color--white-100 {
    color: #fff
}

.color--white-200 {
    color: #e9e9e9
}

.color--red-100 {
    color: #db0f16
}

.color--blue-100 {
    color: #24195d
}

.color--blue-200 {
    color: #00e6f0
}

.color--blue-300 {
    color: #e4fbfc
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60px;
    padding: 20px;
    border-right: 1px solid #E9E9E9;
    z-index: 10
}

@media only screen and (max-width: 1199px) {
    .sidebar {
        top: unset;
        right: 0;
        width: calc(100% - 40px);
        border-right: none;
        border-top: 1px solid #E9E9E9;
        z-index: 11
    }
}

.sidebar__logo {
    width: 50px
}

@media only screen and (max-width: 1199px) {
    .sidebar__logo {
        width: 90px
    }
}

.sidebar__menu {
    font-size: 14px;
    font-size: .875rem;
    line-height: 16px;
    line-height: 1rem;
    width: 58px;
    gap: 5px !important;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all .35s ease
}

@media (max-width: 1199px) {
    .sidebar__menu {
        position: absolute !important;
        right: 0;
        bottom: 25px;
        left: 0;
        width: 40px !important;
        height: 28px !important;
        margin: auto;
        border-radius: 0;
        overflow: unset !important
    }
}

.sidebar__menu span {
    display: block;
    height: 4px;
    width: 55px;
    border-radius: 5px;
    background: #24195d;
    transition: all .35s ease;
    transform-origin: center center
}

.sidebar__menu span:nth-child(1),
.sidebar__menu span:nth-child(3) {
    width: 35px
}

@media only screen and (max-width: 1199px) {

    .sidebar__menu span:nth-child(1),
    .sidebar__menu span:nth-child(3) {
        width: 27.5px
    }
}

.sidebar__menu p {
    margin: 0
}

@media only screen and (max-width: 1199px) {
    .sidebar__menu p {
        font-size: 14px;
        font-size: .875rem;
        line-height: 14px;
        line-height: .875rem
    }
}

.sidebar__menu p:not(.is-active) {
    display: none
}

.sidebar__menu.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px) translateY(5px)
}

@media only screen and (max-width: 1199px) {
    .sidebar__menu.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(10px) translateY(5px)
    }
}

.sidebar__menu.is-active span:nth-child(2) {
    opacity: 0
}

.sidebar__menu.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px) translateY(-4px)
}

@media only screen and (max-width: 1199px) {
    .sidebar__menu.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px) translateY(-2px)
    }
}

.menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -500px;
    width: 27.5%;
    padding: 60px 0;
    border-right: 1px solid #E9E9E9;
    background-color: #fff;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease
}

@media only screen and (max-width: 1199px) {
    .menu {
        left: 0;
        width: 100%;
        padding: 0;
        transform: translate(350px);
        opacity: 0
    }
}

.menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 75px 0 0;
    padding: 0;
    list-style-type: none;
    transition: all .35s ease
}

@media only screen and (max-width: 1199px) {
    .menu ul {
        height: calc(100% - 150px);
        margin: 30px 0 0;
        overflow: auto
    }
}

@media only screen and (max-height: 1070px) {
    .menu ul {
        height: calc(100% - 150px);
        overflow: auto
    }
}

.menu ul li {
    position: relative;
    width: 100%;
    z-index: 2
}

.menu ul li a {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
    line-height: 1.5rem;
    width: calc(100% - 160px);
    padding: 15px 80px;
    text-decoration: none;
    color: #24195d;
    font-weight: 600;
    text-transform: uppercase
}

@media only screen and (max-width: 1199px) {
    .menu ul li a {
        width: calc(100% - 40px);
        padding: 10px 20px
    }
}

.menu ul li a svg {
    transform-origin: center center;
    transition: all .35s ease
}

.menu ul li:before {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    left: 0;
    background: #00e6f0;
    opacity: .1;
    content: "";
    z-index: -1;
    transition: all .35s ease
}

@media only screen and (min-width: 1200px) {

    .menu ul li:hover svg,
    .menu ul li.is-active svg {
        transform: rotate(-90deg)
    }

    .menu ul li:hover:before,
    .menu ul li.is-active:before {
        right: 0
    }
}

@media only screen and (max-width: 1199px) {
    .menu ul.js-menu-items.has-submenu-active {
        transform: translate(-350px);
        opacity: 0
    }
}

.menu.is-active {
    left: 101px;
    opacity: 1;
    pointer-events: all
}

@media only screen and (max-width: 1199px) {
    .menu.is-active {
        left: 0;
        transform: translate(0);
        opacity: 1
    }
}

.menu__search {
    width: 100%;
    padding: 0 80px
}

@media only screen and (max-width: 1199px) {
    .menu__search {
        padding: 10px 20px
    }
}

.menu__search form {
    position: relative;
    width: calc(100% - 160px)
}

@media only screen and (max-width: 1199px) {
    .menu__search form {
        width: calc(100% - 40px)
    }
}

.menu__search form input[type=search] {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    border: 2px solid #24195D;
    font-weight: 600;
    color: #24195d
}

.menu__search form input[type=search]::-moz-placeholder {
    color: #24195d;
    opacity: .4;
    font-weight: 600
}

.menu__search form input[type=search]::placeholder {
    color: #24195d;
    opacity: .4;
    font-weight: 600
}

.menu__search form button {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background-color: #24195d;
    border: 0
}

.sidebar__language {
    font-size: 14px;
    font-size: .875rem;
    line-height: 14px;
    line-height: .875rem;
    display: flex;
    position: relative;
    width: calc(100% + 5px);
    margin-right: -10px;
    margin-left: -10px;
    padding: 10px 5px;
    border-radius: 5px;
    border: 2px solid #24195D;
    cursor: pointer
}

@media only screen and (max-width: 1199px) {
    .sidebar__language {
        display: none
    }
}

.sidebar__language ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style-type: none;
    transition: all .35s ease
}

.sidebar__language ul li {
    width: 100%;
    transition: all .35s ease
}

.sidebar__language ul li:not(.is-activated) {
    max-height: 0;
    overflow: hidden
}

.sidebar__language ul li a {
    color: #24195d;
    text-decoration: none;
    font-weight: 600
}

.sidebar__language svg {
    position: absolute;
    top: 12px;
    right: 7px;
    width: 12px;
    z-index: 3;
    transition: all .35s ease
}

.sidebar__language.is-active ul {
    gap: 15px
}

.sidebar__language.is-active ul li {
    max-height: 30px
}

.sidebar__language.is-active svg {
    transform: scaleY(-1)
}

.submenu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 3;
    border-right: 1px solid #E9E9E9;
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease
}

@media only screen and (min-width: 1200px) {
    .submenu {
        width: 22.5%
    }
}

@media only screen and (max-width: 1199px) {
    .submenu {
        width: 100%;
        margin-top: 50px
    }
}

.submenu.is-active {
    opacity: 1;
    pointer-events: all
}

@media only screen and (max-width: 1199px) {
    .submenu.is-active {
        left: 0;
        opacity: 1
    }
}

@media only screen and (min-width: 1200px) {
    .submenu.is-active {
        left: calc(27.5% + 101px)
    }
}

@media only screen and (max-width: 1199px) {
    .submenu.submenu--first-level {
        width: 100%;
        left: 0;
        opacity: 1;
        transform: translate(100%);
        transition: all .35s ease;
        z-index: 9
    }

    .submenu.submenu--first-level.is-active {
        transform: translate(0)
    }
}

.submenu.submenu--second-level {
    z-index: 2
}

@media only screen and (max-width: 1199px) {
    .submenu.submenu--second-level {
        left: 0;
        width: 100%;
        transform: translate(350px);
        z-index: 9;
        opacity: 0
    }
}

.submenu.submenu--second-level.is-active {
    left: calc(50% + 102px)
}

@media only screen and (max-width: 1199px) {
    .submenu.submenu--second-level.is-active {
        left: 0;
        transform: translate(0);
        opacity: 1
    }
}

.submenu__menu {
    padding: 190px 0 0
}

@media only screen and (max-width: 1199px) {
    .submenu__menu {
        padding: 40px 0 0
    }
}

.submenu__menu h3 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
    line-height: 1.5rem;
    margin-bottom: 30px;
    padding-left: 80px;
    color: #24195d;
    font-weight: 600;
    text-transform: uppercase
}

@media only screen and (max-width: 1199px) {
    .submenu__menu h3 {
        padding: 0 20px
    }
}

.submenu__menu h4 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
    margin: 85px 0 30px;
    padding-left: 80px
}

@media only screen and (max-width: 1199px) {
    .submenu__menu h4 {
        margin: 0;
        padding: 20px
    }
}

.submenu__menu a:has(h3),
.submenu__menu a:has(h4) {
    text-decoration: none
}

.submenu__menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style-type: none
}

@media only screen and (min-width: 1200px) {
    .submenu__menu ul {
        position: relative;
        max-height: 60vh;
        overflow: auto
    }
}

.submenu__menu ul li {
    position: relative;
    width: 100%;
    z-index: 3
}

.submenu__menu ul li a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
    display: flex;
    padding: 15px 80px;
    text-decoration: none;
    color: #24195d
}

@media only screen and (max-width: 1199px) {
    .submenu__menu ul li a {
        padding: 10px 20px
    }
}

.submenu__menu ul li:before {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    left: 0;
    background-color: #00e6f0;
    opacity: .1;
    content: "";
    z-index: -1;
    transition: all .35s ease
}

.submenu__menu ul li svg {
    transition: all .35s ease
}

@media only screen and (min-width: 1200px) {

    .submenu__menu ul li:hover svg,
    .submenu__menu ul li.is-active svg {
        transform: rotate(-90deg)
    }

    .submenu__menu ul li:hover:before,
    .submenu__menu ul li.is-active:before {
        right: 0
    }

    .submenu__menu:after {
        display: block;
        position: absolute;
        right: 0;
        bottom: calc(40vh - 245px);
        left: 0;
        height: 100px;
        background: linear-gradient(180deg, #fff0, #fff 66%);
        content: "";
        z-index: 2;
        pointer-events: none
    }
}

.submenu__back {
    transform: rotate(90deg);
    cursor: pointer
}

.menu-video {
    position: fixed;
    top: 0;
    bottom: 0;
    margin-left: calc(50% + 102px);
    width: 100%;
    background: #fff;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: all .35s ease
}

@media only screen and (max-width: 1199px) {
    .menu-video {
        display: none
    }
}

.menu-video video {
    position: absolute;
    top: 0;
    right: 55%;
    width: 40vw;
    max-width: 1200px;
    height: 40vw;
    max-height: 1200px;
    transition: all 199ms ease;
    z-index: 2
}

@media only screen and (max-width: 1199px) {
    .menu-video video {
        display: none
    }
}

@media only screen and (max-width: 1700px) and (min-width: 1200px) {
    .menu-video video {
        right: 55%
    }
}

@media only screen and (max-width: 1499px) {
    .menu-video video {
        max-width: 450px;
        max-height: 450px
    }
}

@media only screen and (min-width: 2100px) {
    .menu-video video {
        right: 53%
    }
}

.menu-video.is-active {
    opacity: 1
}

.menu-video.is-changing video {
    opacity: 0
}

.menu-video>svg {
    display: none;
    position: absolute;
    top: -220px;
    right: 682.5px;
    width: calc(55vw + 40px);
    max-width: 1240px;
    height: calc(55vw + 40px);
    max-height: 1240px;
    transition: all .35s ease
}

@media only screen and (max-width: 1199px) {
    .menu-video>svg {
        display: none
    }
}

@media only screen and (max-width: 1499px) {
    .menu-video>svg {
        max-width: 490px;
        max-height: 490px
    }
}

.menu-video.second-sub-active {
    transform: scale(.5);
    top: -420px
}

.menu-video.second-sub-active .menu-video__wave {
    top: calc(190vh - 700px);
    transform: scale(1.5)
}

.menu-video:before {
    position: fixed;
    top: 0;
    right: 100%;
    bottom: 0;
    background: #fff;
    content: ""
}

.sidebar__vessel-search {
    font-size: 14px;
    font-size: .875rem;
    line-height: 20px;
    line-height: 1.25rem;
    position: relative;
    display: flex;
    text-align: center;
    width: 100%
}

.sidebar__vessel-search a {
    display: inline-flex;
    justify-content: center;
    width: calc(100% - 20px);
    padding: 5px 10px;
    border: 2px solid #DB0F16;
    border-radius: 4px;
    background-color: #db0f16;
    color: #db0f16;
    text-align: center;
    text-decoration: none
}

.sidebar__vessel-search a svg {
    height: 20px
}

.sidebar__vessel-search a svg path {
    fill: #fff
}

.sidebar__vessel-search span {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(100% - 10px);
    padding: 5px 10px;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #24195d;
    color: #e4fbfc;
    border-radius: 4px;
    opacity: 0;
    transition: all .35s ease;
    pointer-events: none;
    white-space: nowrap
}

.sidebar__vessel-search:hover span {
    left: calc(100% + 10px);
    opacity: 1
}

.menu-video__wave {
    position: absolute;
    top: 70vh;
    right: 55%;
    transition: all .35s ease
}

@media only screen and (max-height: 1000px) {
    .menu-video__wave {
        display: none
    }
}

.menu-video__wave img {
    height: 475px
}

@keyframes scrollDown {
    0% {
        transform: translateY(7px);
        opacity: 1
    }

    to {
        transform: translateY(20px);
        opacity: 0
    }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #24195d;
    font-weight: 600
}

h1 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 48px;
    line-height: 3rem
}

@media (max-width: 1199px) {
    h1 {
        font-size: 32px;
        font-size: 2rem;
        line-height: 40px;
        line-height: 2.5rem
    }
}

.h1 {
    font-size: 104px;
    font-size: 6.5rem;
    line-height: 104px;
    line-height: 6.5rem
}

@media (max-width: 1199px) {
    .h1 {
        font-size: 32px;
        font-size: 2rem;
        line-height: 40px;
        line-height: 2.5rem
    }
}

h2,
.h2 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 56px;
    line-height: 3.5rem
}

@media (max-width: 1199px) {

    h2,
    .h2 {
        font-size: 32px;
        font-size: 2rem;
        line-height: 40px;
        line-height: 2.5rem
    }
}

h3,
.h3 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 40px;
    line-height: 2.5rem
}

@media (max-width: 1199px) {

    h3,
    .h3 {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 30px;
        line-height: 1.875rem
    }
}

h4,
.h4 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem
}

@media (max-width: 1199px) {

    h4,
    .h4 {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 28px;
        line-height: 1.75rem
    }
}

footer {
    font-size: 12px;
    font-size: .75rem;
    line-height: 20px;
    line-height: 1.25rem;
    border-top: 2px solid #E9E9E9
}

@media (max-width: 1199px) {
    footer {
        position: relative;
        padding: 35px 0 100px;
        text-align: center;
        z-index: 8
    }
}

footer ul {
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none
}

@media (max-width: 1199px) {
    footer ul {
        gap: 16px
    }

    footer ul li {
        width: 100%
    }
}

footer ul li a {
    color: #231f20;
    font-weight: 600;
    text-decoration: none
}

footer .cms-output {
    font-size: 12px;
    font-size: .75rem;
    line-height: 20px;
    line-height: 1.25rem;
    font-weight: 600
}

@media (max-width: 1199px) {
    footer .cms-output {
        width: 100%;
        margin-top: 35px
    }
}

footer .insurance-group {
    margin: 0 0 0 20px
}

@media (max-width: 1199px) {
    footer .insurance-group {
        width: 100%;
        margin: 35px 0 0
    }
}

footer .insurance-group img {
    width: auto;
    height: 20px
}

.wrapper {
    max-width: 1360px;
    margin: auto;
    padding: 0 30px
}

@media (max-width: 1199px) {
    .wrapper {
        padding: 0 35px
    }
}

.wrapper.wrapper--sm {
    max-width: 1125px
}

.btn {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    transition: all .35s ease;
    z-index: 3;
    overflow: hidden
}

.btn svg {
    height: 24px;
    transition: all .35s ease
}

.btn:before {
    position: absolute;
    top: 7px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    transform: rotate(45deg);
    transform-origin: center center;
    z-index: -1;
    transition: all .5s ease;
    content: ""
}

.btn:hover:before {
    width: 250px;
    height: 100px;
    transform: scale(2)
}

.btn[class*=btn-secondary] {
    position: relative;
    z-index: 3;
    overflow: hidden
}

.btn[class*=btn-secondary] svg {
    height: 24px
}

.btn[class*=btn-secondary]:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 30px;
    margin: auto;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAAAXNSR0IArs4c6QAACixJREFUeF7t3TFSJEAMQ9HhBNz/jESkJLuH+EGXym9zirKxvmUx9H79/f39+4R/v7+/4as/n+/v7/T1vr/+lwG6Pn9fAABARUAAvA1gAOBAiv4/AAAAaYCuWzD1c2BFQBXAHAAHUOaPAxjPwAAAAAAgdKBu4NcOEAAAIIz/hwPgALZDkNcE9v1lAIXA1YFwABxAmT8OgAPgAIqCOAAOoMwPBzBOYAAAAAAIHagEJEACDOM3fwLJAGQAZf7nBXB9AQAAAABA6MC6AwUAAAjj73MAACCESwK6bkHV/zaD+fr5+UnvAfgBvv0B6r/+lw0EABxMmR8PuoyfkAAAAAAQOrDuwAAAAML4e9INAMYt0HqKuz6A+v/2o/QcAAfAAYQOrAMYAAAgjL8TAACcAElALPBbC3y9/xwAB5AAtr4BAcAHgQggdAAAtj+IxAFwAEH+MoB1AAIAAABA6AAACAHD+Phruus3+Ov6OQAOIAFsfQO+FuDr7w8AAAAAoQPrAAQAAAjjLwScB4D/Hnz71zivLaTvv/1BJk+CCTGTAwAAAEgDtG6hCGBbANfnjwPgABLAAXAbgAAAAAAQOrAOQAAAgDD+PsgEAH6NlgR0/QZV/9vfQnEAHEAC2PoGvA4gAAAAAAgdWAcgAABAGH8ZAADIAJKArltQ9csAkoDWCUwAbwVwvf9OACcAAIcOrC8gAACAMP4yAACQASQBXbeg6n97AnEAHEAC2PoGvA4gD4JwMAkA1wW0Xj8AAAAAhA4AAAsdxkeI5oR4++fEHAAHkAC2vgGvAwgAAAAAQgfWAQgAABDG36vAACADSAK6bkHVLwNIAlonMAG8FcD1/jsBnAAAHDqwvoAAAADC+MsAAEAGkAR03YKq/+0JxAFwAAlg6xvwOoAAAAAAIHRgHYAAAABh/GUAACADSAK6bkHVLwNIAlonMAG8FcD1/nsQhINJAL4uoPX6AQAAACB0AACEaGF8hGhOOG8CJgGtE5gA3grgev+dAE4AAA4dWF9AAAAAYfw9aQYAMoAkoOsWVP1vTyAOgANIAFvfgNcBBAAAAAChA+sABAAACOMvAwAAGUAS0HULqn4ZQBLQOoEJ4K0ArvffCeAEAODQgfUFBAAAEMZfBgAAMoAkoOsWVP1vTyAOgANIAFvfgNcB5EkwDiYB4LqA1usHAAAAgNABAGChw/gI0ZwQb59E4wA4gASw9Q14HUAAAAAAEDqwDkAAAIAw/p40AwAZQBLQdQuqfhlAEtA6gQngrQCu998J4AQA4NCB9QUEAAAQxl8GAAAygCSg6xZU/W9PIA6AA0gAW9+A1wEEAAAAAKED6wAEAAAI4y8DAAAZQBLQdQuqfhlAEtA6gQngrQCu99+DIBxMAvB1Aa3XDwAAAAChAwAgRAvjI0RzwnkTMAloncAE8FYA1/vvBHACAHDowPoCAgAACOPvSTMAkAEkAV23oOp/ewJxABxAAtj6BrwOIAAAAAAIHVgHIAAAQBh/GQAAyACSgK5bUPXLAJKA1glMAG8FcL3/TgAnAACHDqwvIAAAgDD+MgAAkAEkAV23oOp/ewJxABxAAtj6BrwOIE+CcTAJANcFtF4/AAAAAIQOAAALHcZHiOaEePskGgfAASSArW/A6wACAAAAgNCBdQACAACE8fekGQDIAJKArltQ9csAkoDWCUwAbwVwvf9OACcAAIcOrC8gAACAMP4yAACQASQBXbeg6n97AnEAHEAC2PoGvA4gAAAAAAgdWAcgAABAGH8ZAADIAJKArltQ9csAkoDWCUwAbwVwvf8eBOFgEoCvC2i9fgAAAAAIHQAAIVoYHyGaE86bgElA6wQmgLcCuN5/J4ATAIBDB9YXEAAAQBh/T5oBgAwgCei6BVX/2xOIA+AAEsDWN+B1AAEAAABA6MA6AAEAAML4ywAAQAaQBHTdgqpfBpAEtE5gAngrgOv9dwI4AQA4dGB9AQEAAITxlwEAgAwgCei6BVX/2xOIA+AAEsDWN+B1AHkSjINJALguoPX6AQAAACB0AABY6DA+QjQnxNsn0TgADiABbH0DXgcQAAAAAIQOrAMQAAAgjL8nzQBABpAEdN2Cql8GkAS0TmACeCuA6/13AjgBADh0YH0BAQAAhPGXAQCADCAJ6LoFVf/bE4gD4AASwNY34HUAAQAAAEDowDoAAQAAwvjLAABABpAEdN2Cql8GkAS0TmACeCuA6/33IAgHkwB8XUDr9QMAAABA6AAACNHC+AjRnHDeBEwCWicwAbwVwPX+OwGcAAAcOrC+gAAAAML4e9IMAGQASUDXLaj6355AHAAHkAC2vgGvAwgAAAAAQgfWAQgAABDGXwYAADKAJKDrFlT9MoAkoHUCE8BbAVzvvxPACQDAoQPrCwgAACCMvwwAAGQASUDXLaj6355AHAAHkAC2vgGvA8iTYBxMAsB1Aa3XDwAAAAChAwDAQofxEaI5Id4+icYBcAAJYOsb8DqAAAAAACB0YB2AAAAAYfw9aQYAMoAkoOsWVP0ygCSgdQITwFsBXO+/E8AJAMChA+sLCAAAIIy/DAAAZABJQNctqPrfnkAcAAeQALa+Aa8DCAAAAABCB9YBCAAAEMZfBgAAMoAkoOsWVP0ygCSgdQITwFsBXO+/B0E4mATg6wJarx8AAAAAQgcAQIgWxkeI5oTzJmAS0DqBCeCtAK733wngBADg0IH1BQQAABDG35NmACADSAK6bkHV//YE4gA4gASw9Q14HUAAAAAAEDqwDkAAAIAw/jIAAJABJAFdt6DqlwEkAa0TmADeCuB6/50ATgAADh1YX0AAAABh/GUAACADSAK6bkHV//YE4gA4gASw9Q14HUCeBONgEgCuC2i9fgAAAAAIHQAAFjqMjxDNCfH2STQOgANIAFvfgNcBBAAAAAChA+sABAAACOPvSTMAkAEkAV23oOqXASQBrROYAN4K4Hr/nQBOAAAOHVhfQAAAAGH8ZQAAIANIArpuQdX/9gTiADiABLD1DXgdQAAAAAAQOrAOQAAAgDD+MgAAkAEkAV23oOqXASQBrROYAN4K4Hr/PQjCwSQAXxfQev0AAAAAEDoAAEK0MD5CNCecNwGTgNYJTABvBXC9/04AJwAAhw6sLyAAAIAw/p40AwAZQBLQdQuq/rcnEAfAASSArW/A6wACAAAAgNCBdQACAACE8ZcBAIAMIAnougVVvwwgCWidwATwVgDX++8EcAIAcOjA+gICAAAI4y8DAAAZQBLQdQuq/rcnEAfAASSArW/A6wDyJBgHkwBwXUDr9QMAAABA6AAAsNBhfIRoToi3T6JxABxAAtj6BrwOIAAAAAAIHVgHIAAAQBh/T5oBgAwgCei6BVW/DCAJaJ3ABPBWANf77wRwAgBw6MD6AgIAAAjjLwMAABlAEtB1C6r+tycQB8ABJICtb8DrAAIAAACA0IF1AAIAAITxlwEAgAwgCei6BVW/DCAJaJ3ABPBWANf7/x/aVlkHhH7qqQAAAABJRU5ErkJggg=='/%3E%3C/defs%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,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'/%3E%3C/defs%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    content: "";
    z-index: -1;
    transform: scale(0);
    transition: all .35s ease
}

.btn[class*=btn-secondary]:hover:after {
    transform: scale(8)
}

.btn-primary--blue-100 {
    color: #24195d
}

.btn-primary--blue-100:before {
    background-color: #24195d
}

.btn-primary--blue-100:hover {
    padding: 5px 10px;
    color: #fff
}

.btn-primary--blue-100:hover:before {
    background-color: #db0f16
}

.btn-secondary--blue-100 {
    padding: 10px 15px;
    font-weight: 500;
    background: #24195d;
    color: #fff
}

.btn-secondary--blue-100 svg {
    fill: #fff
}

.btn-secondary--blue-100:after {
    background-color: #e4fbfc
}

.btn-secondary--blue-100:hover {
    color: #24195d
}

.btn-secondary--blue-100:hover svg path {
    fill: #24195d
}

.btn-secondary--blue-200 {
    padding: 10px 15px;
    font-weight: 500;
    background: #00e6f0;
    color: #24195d
}

.btn-secondary--blue-300 {
    padding: 10px 15px;
    font-weight: 500;
    background: #e4fbfc;
    color: #24195d
}

.btn-secondary--red-100 {
    padding: 10px 15px;
    font-weight: 500;
    background: #db0f16;
    color: #fff
}

.btn-secondary--red-100 svg {
    fill: #fff
}

.btn-secondary--red-100:after {
    background-color: #24195d
}

.btn-secondary--red-100:hover {
    color: #e4fbfc
}

.btn-secondary--red-100:hover svg path {
    fill: #e4fbfc
}

.filter__select {
    position: relative
}

.filter__select select {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
    width: 100%;
    height: 48px;
    padding: 0 24px;
    border: 2px solid #24195D;
    border-radius: 4px;
    font-family: univers-next-pro, sans-serif;
    font-weight: 600;
    color: #24195d;
    -webkit-appearance: none;
    -moz-appearance: none
}

.filter__select select::-ms-expand {
    display: none
}

.filter__select svg {
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: none
}

@media (min-width: 992px) {
    .filter__select svg {
        display: none
    }
}

.ambient-video {
    transition: all .35s ease
}

.ambient-video.is-smaller {
    transform: scale(.1)
}

.accordion__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 25px;
    max-width: 860px
}

.accordion__item {
    padding: 25px;
    border-radius: 4px;
    transition: all .35s ease
}

.accordion__item h4 {
    position: relative;
    width: calc(100% - 48px);
    margin: 0 !important;
    padding-right: 48px;
    cursor: pointer;
    text-transform: uppercase;
    color: #24195d !important
}

.accordion__item h4 svg {
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    transform-origin: center center;
    transition: all .35s ease
}

.accordion__item h4 svg path {
    transition: all .35s ease;
    fill: #24195d
}

.accordion__item h4.is-active svg {
    transform: rotate(45deg)
}

.accordion__item h4.is-active svg path {
    fill: #db0f16
}

.accordion__item .cms-output {
    max-width: 100% !important;
    max-height: 0;
    padding-top: 0;
    transition: all .35s ease;
    overflow: hidden;
    opacity: 0
}

.accordion__item .cms-output.is-active {
    max-height: 1200px;
    padding-top: 30px;
    opacity: 1
}

@media (max-width: 768px) {
    .accordion__item .cms-output.is-active {
        padding-top: 20px
    }
}

.content-default .cms-output {
    max-width: 75%
}

@media (max-width: 1199px) {
    .content-default .cms-output {
        max-width: 100%
    }
}

.documents__inner {
    padding: 40px 48px;
    border-radius: 4px
}

@media (max-width: 1199px) {
    .documents__inner {
        padding: 32px 8px 8px
    }

    .documents__inner h2 {
        width: 100%;
        text-align: center
    }

    .documents__search {
        width: 100%;
        margin-top: 25px
    }
}

.documents__search form {
    position: relative
}

.documents__search form input {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
    width: 255px;
    height: 40px;
    padding: 0 16px;
    border-radius: 4px;
    border: 0;
    background-color: #fff;
    font-weight: 600
}

@media (max-width: 1199px) {
    .documents__search form input {
        width: 100%
    }
}

.documents__search form input::-moz-placeholder {
    opacity: .3
}

.documents__search form input::placeholder {
    opacity: .3
}

.documents__search form button {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #24195d;
    border: 0;
    border-radius: 4px
}

.documents__header {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
    grid-template-columns: 8fr 1fr 2fr 2fr;
    font-weight: 600
}

.documents__item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
    position: relative;
    grid-template-columns: 8fr 1fr 2fr 2fr;
    padding: 4px;
    border-radius: 4px;
    font-weight: 500
}

@media (max-width: 1199px) {
    .documents__item {
        padding: 16px;
        font-weight: 400
    }

    .documents__item span {
        font-weight: 600
    }

    .documents__item .documents__filename {
        width: 100%;
        margin-bottom: 16px
    }

    .documents__item .documents__type,
    .documents__item .documents__last-modified {
        display: flex;
        width: 100%
    }

    .documents__item .documents__type span,
    .documents__item .documents__last-modified span {
        width: 50%
    }

    .documents__item .documents__item-button {
        width: calc(100% - 30px);
        margin-top: 16px
    }
}

.documents__item .btn {
    justify-content: center;
    gap: 16px;
    width: calc(100% - 30px)
}

@media (max-width: 1199px) {
    .documents__item .btn {
        justify-content: space-between;
        width: 100%;
        margin-top: 16px
    }
}

.documents__item:hover .documents__preview {
    opacity: 1
}

.documents__item:not(:nth-last-child(1)) {
    margin-bottom: 5px
}

.documents__preview {
    position: absolute;
    right: calc(50% - 52px);
    width: 104px;
    height: auto;
    transition: all .35s ease;
    pointer-events: none;
    opacity: 0
}

.home-about-us__content {
    max-width: 400px;
    margin: 0 0 0 auto
}

@media (max-width: 1199px) {
    .home-about-us__content {
        max-width: 100%;
        margin: 0
    }
}

.home-about-us__image img {
    width: 100%
}

@media (max-width: 1199px) {
    .home-solutions .wrapper {
        padding: 0
    }

    .home-solutions h2 {
        padding: 0 35px
    }
}

.home-solutions__loop {
    width: 100%;
    gap: 25px
}

@media (max-width: 1199px) {
    .home-solutions__loop {
        flex: 0 0 auto;
        overflow-x: auto;
        gap: 8px
    }
}

.home-solutions__loop a {
    font-size: 32px;
    font-size: 2rem;
    line-height: 48px;
    line-height: 3rem;
    flex: 0 0 auto;
    align-content: space-between;
    color: #db0f16;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    width: 400px
}

@media (max-width: 1199px) {
    .home-solutions__loop a {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 24px;
        line-height: 1.5rem;
        width: 225px
    }
}

.home-solutions__loop a span br {
    display: none
}

.home-solutions__loop a span>span {
    display: none
}

.home-solutions__loop a img,
.home-solutions__loop a video {
    height: 500px;
    width: 100%;
    margin-top: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none
}

@media (max-width: 1199px) {

    .home-solutions__loop a img,
    .home-solutions__loop a video {
        height: 275px;
        width: 225px;
        margin-right: 15px
    }

    .home-solutions__loop a:nth-child(1) {
        margin-left: 35px
    }

    .home-solutions__loop a:nth-last-child(1) {
        margin-right: 35px
    }

    .home-usps .wrapper {
        padding: 0
    }

    .home-usps h2 {
        padding: 0 35px
    }
}

.home-usps__inner {
    position: relative;
    max-width: 1020px;
    margin: auto;
    padding: 50px 130px;
    border-radius: 2px
}

@media (max-width: 1199px) {
    .home-usps__inner {
        padding: 0
    }
}

.home-usps__inner:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 4px;
    background-color: #e4fbfc;
    z-index: -1;
    content: ""
}

@media (max-width: 1199px) {
    .home-usps__inner:after {
        display: none
    }
}

.home-usps__usps {
    padding: 2px;
    border: 2px solid #24195D;
    border-radius: 4px
}

.home-usps__usps a {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    color: #24195d;
    font-weight: 500;
    transition: all .35s ease
}

.home-usps__usps a.is-active {
    background-color: #24195d;
    color: #fff
}

@media (max-width: 1199px) {
    .home-usps__items {
        display: flex;
        overflow-x: auto;
        gap: 8px
    }
}

.home-usps__content {
    width: 100%
}

@media (max-width: 1199px) {
    .home-usps__content {
        width: 100%
    }
}

.home-usps__content .cms-output {
    max-width: 700px;
    padding-right: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.home-usps__image {
    display: none;
    position: relative;
    width: 375px;
    height: 375px
}

.home-usps__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: all .35s ease;
    opacity: 0
}

.home-usps__image img.is-active {
    opacity: 1
}

.home-usp {
    transition: all .35s ease
}

@media (max-width: 1199px) {
    .home-usp {
        flex: 0 0 auto;
        width: 300px;
        padding: 35px 5px;
        border-radius: 4px;
        background: #e4fbfc
    }
}

@media (min-width: 992px) {
    .home-usp {
        max-height: 0;
        overflow: hidden;
        opacity: 0
    }
}

.home-usp h2 {
    padding: 0 30px;
    text-align: center
}

@media (max-width: 1199px) {
    .home-usp .btn {
        justify-content: center;
        text-align: center;
        width: calc(100% - 30px)
    }

    .home-usp .btn.btn-primary--blue-100 {
        width: unset;
        padding-left: 10px
    }
}

.home-usp img {
    width: auto;
    height: 144px
}

@media (max-width: 1199px) {
    .home-usp .cms-output {
        padding: 0 35px
    }
}

@media (min-width: 992px) {
    .home-usp.is-active {
        max-height: 500px;
        opacity: 1
    }
}

@media (max-width: 1199px) {
    .home-usp:nth-child(1) {
        margin-left: 35px
    }

    .home-usp:nth-last-child(1) {
        margin-right: 35px
    }
}

.intro-text__date {
    pointer-events: none
}

.intro-text__share .d-flex {
    gap: 25px
}

.intro-text__share .d-flex a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-color: #e4fbfc;
    transition: all .35s ease;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,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'/%3E%3C/defs%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,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'/%3E%3C/defs%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain
}

.intro-text__share .d-flex a svg {
    width: auto;
    height: 25px;
    max-height: 25px
}

.intro-text__share .d-flex a svg path {
    fill: #24195d;
    transition: all .35s ease
}

.intro-text__share .d-flex a:hover {
    background-color: #00e6f0
}

.intro-text__share .d-flex a:hover svg path {
    fill: #fff
}

.intro-text.is-home .intro-text__inner {
    width: 75%
}

@media (max-width: 1199px) {
    .intro-text.is-home .intro-text__inner {
        width: 100%
    }
}

.intro-text__inner {
    width: 50%
}

@media (max-width: 1199px) {
    .intro-text__inner {
        width: 100%
    }
}

@media only screen and (min-width: 1921px) {
    .intro-text__inner {
        width: 75%
    }
}

.intro-text__inner h1 br {
    display: none
}

.intro-text__inner h1 span {
    font-size: 12px;
    font-size: .75rem;
    line-height: 20px;
    line-height: 1.25rem;
    display: block
}

@media (max-width: 1199px) {
    .keypoints h3 {
        margin: 0;
        text-align: left
    }
}

.keypoints__items {
    position: relative;
    grid-template-columns: repeat(2, 175px);
    grid-gap: 55px;
    max-width: 405px
}

.keypoints__items .keypoint {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
    width: 175px;
    height: 175px;
    background: #db0f16;
    color: #fff;
    text-align: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,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'/%3E%3C/defs%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,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'/%3E%3C/defs%3E%3C/svg%3E");
    -webkit-mask-size: cover;
    mask-size: cover;
    transition: all .35s ease
}

.keypoints__items .keypoint span {
    padding: 0 20px
}

.keypoints__items .keypoint:nth-last-child(1) {
    position: absolute;
    top: calc(50% - 87.5px);
    right: 0;
    left: 0;
    margin: auto
}

.keypoints__items .keypoint.is-active {
    transform: scale(1.1);
    background-color: #24195d;
    font-weight: 600
}

.keypoints__items.is-active .keypoint:not(.is-active) {
    filter: blur(1px);
    opacity: .7
}

.locations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 25px
}

@media (max-width: 768px) {
    .locations {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
}

.locations .location {
    padding: 25px;
    border-radius: 4px
}

.locations .location>div {
    width: 100%
}

.location-modal__contact img {
    max-width: 350px;
    background-color: #24195d
}

.news__items {
    display: grid;
    grid-gap: 25px;
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

@media (max-width: 768px) {
    .news__items {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
}

.news__items .news-item {
    padding: 25px;
    border-radius: 4px
}

.news__items .news-item>div {
    width: 100%
}

.news__items .news-item img {
    width: calc(100% + 50px);
    height: 200px;
    margin: -25px -25px 25px;
    -o-object-fit: cover;
    object-fit: cover;
    background-color: #24195d
}

@media (max-width: 768px) {
    .news__items .news-item img {
        height: 125px
    }
}

.news__items .news-item hgroup {
    width: 100%
}

.other-solutions,
.other-pages {
    position: relative
}

.other-solutions h2,
.other-pages h2 {
    text-align: center
}

.other-solutions__inner,
.other-pages__inner {
    position: relative;
    z-index: 2
}

.other-solutions__loop,
.other-pages__loop {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 24px
}

@media (max-width: 768px) {

    .other-solutions__loop,
    .other-pages__loop {
        grid-template-columns: 1fr;
        grid-gap: 8px
    }
}

.other-solutions .other-solution,
.other-pages .other-solution {
    position: relative;
    height: 300px;
    width: calc(100% - 64px);
    padding: 40px 32px;
    text-decoration: none;
    color: inherit
}

@media (max-width: 768px) {

    .other-solutions .other-solution,
    .other-pages .other-solution {
        height: 200px;
        width: calc(100% - 48px);
        padding: 24px
    }
}

.other-solutions .other-solution video,
.other-solutions .other-solution img,
.other-pages .other-solution video,
.other-pages .other-solution img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
    border-radius: 4px
}

.other-solutions .other-solution__title,
.other-pages .other-solution__title {
    width: 100%;
    margin: auto 0 0;
    text-shadow: 0 0 0 rgba(0, 0, 0, .3)
}

.other-solutions__visual,
.other-pages__visual {
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: -135px;
    left: 0;
    margin: auto;
    z-index: -1
}

.page-intro {
    position: relative;
    width: 100%;
    height: 60vh;
    z-index: 8
}

@media (max-width: 1199px) {
    .page-intro {
        height: 310px;
        min-height: 0;
        overflow: hidden;
        pointer-events: none
    }
}

.page-intro h1 {
    position: absolute;
    right: 0;
    bottom: 200px;
    left: 0;
    max-width: 1240px;
    margin: auto;
    text-align: center;
    font-size: clamp(6.5rem, 3.5vw, 2.5rem);
    line-height: clamp(6.5rem, 3.75vw, 2.5rem);
    text-shadow: 0 0 5px rgba(0, 0, 0, .3)
}

.page-intro h1 span {
    display: none
}

.page-intro.page-intro--fixed .page-intro__container {
    position: fixed
}

@media (max-width: 1199px) {
    .page-intro.page-intro--fixed .page-intro__container {
        position: absolute
    }
}

.page-intro.page-intro--fixed .js-page-intro-video-wrapper {
    position: fixed;
    top: 0
}

.page-intro.page-intro--end-state {
    height: 40vh
}

@media (max-width: 1199px) {
    .page-intro.page-intro--end-state {
        height: 410px
    }
}

.page-intro.page-intro--end-state .js-page-intro-video-wrapper {
    top: 640px;
    width: 600px;
    height: 600px;
    transform: translateY(-750px) translate(200px) rotate(45deg);
    border-radius: 150px
}

@media (max-width: 1199px) {
    .page-intro.page-intro--end-state .js-page-intro-video-wrapper {
        transform: translateY(-700px) translate(100px) rotate(0)
    }
}

.page-intro.page-intro--end-state .js-page-intro-video-wrapper img,
.page-intro.page-intro--end-state .js-page-intro-video-wrapper video {
    transform: rotate(-45deg) translate(-100px) translateY(100px)
}

@media only screen and (min-width: 1921px) {

    .page-intro.page-intro--end-state .js-page-intro-video-wrapper img,
    .page-intro.page-intro--end-state .js-page-intro-video-wrapper video {
        transform: rotate(-45deg) translate(-100px) translateY(100px) scale(2)
    }
}

.page-intro.page-intro--end-state .js-page-intro-video-frame {
    top: -200px;
    right: -290px;
    opacity: 1
}

@media (max-width: 1199px) {
    .page-intro.page-intro--end-state .js-page-intro-video-frame {
        position: absolute;
        top: -150px;
        right: -200px;
        width: 450px;
        height: 450px;
        opacity: 1
    }
}

.page-intro.page-intro--end-state h1,
.page-intro.page-intro--end-state .js-page-intro-scroller {
    opacity: 0
}

@media (min-width: 1200px) {
    .page-intro:not(.page-intro--end-state) {
        min-height: 1080px
    }
}

@media (max-width: 1199px) {
    .page-intro.is-home {
        height: 100%
    }

    .page-intro.is-home .page-intro__container {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: calc(100% - 35px);
        height: 100%;
        margin: 17.5px 17.5px 0;
        aspect-ratio: 16/9;
        transform: rotate(0);
        border-radius: 4px
    }

    .page-intro.is-home .page-intro__container video {
        width: 100%;
        height: 100%;
        transform: rotate(0)
    }

    .page-intro.is-home .js-page-intro-video-frame {
        display: none !important
    }

    .page-intro.is-home .page-intro__scroller {
        display: flex !important;
        bottom: 25px
    }
}

.page-intro:not(.is-home) {
    pointer-events: none
}

.page-intro__breadcrumbs {
    position: absolute;
    top: 10px;
    right: 0;
    left: 0
}

@media (max-width: 1199px) {
    .page-intro__breadcrumbs {
        font-size: 12px;
        font-size: .75rem;
        line-height: 20px;
        line-height: 1.25rem;
        position: unset
    }
}

.page-intro__breadcrumbs ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.page-intro__breadcrumbs ul li {
    color: #24195d;
    font-weight: 500
}

.page-intro__breadcrumbs ul li br {
    display: none
}

.page-intro__breadcrumbs ul li a {
    color: #24195d;
    text-decoration: none
}

.js-page-intro-video-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    background-color: #24195d
}

.js-page-intro-video-wrapper video,
.js-page-intro-video-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: center center;
    opacity: 0
}

@media (max-width: 768px) {
    .js-page-intro-video-wrapper:has(img) {
        transform: rotate(-45deg) scale(2.1)
    }
}

@media (max-width: 1199px) {
    .js-page-intro-video-frame {
        position: absolute;
        top: -150px;
        right: -200px;
        width: 450px;
        height: 450px;
        opacity: 1
    }
}

.js-page-intro-video-frame .translate-block {
    opacity: 0
}

.page-intro__container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    height: 100vh;
    transition: all .35s ease
}

@media (max-width: 1199px) {
    .page-intro__container {
        width: 350px;
        height: 350px;
        top: -95px;
        right: -143px;
        bottom: unset;
        left: unset;
        border-radius: 100px;
        transform: rotate(45deg);
        overflow: hidden
    }

    .page-intro__container video {
        width: 800px;
        height: 800px;
        transform: rotate(-45deg)
    }
}

.page-intro__container>svg {
    position: absolute;
    top: 450px;
    right: -190px;
    width: 780px;
    height: 780px;
    opacity: 0;
    pointer-events: none
}

.page-intro__container.is-changing {
    opacity: 0
}

.page-intro__scroller {
    position: absolute;
    right: 0;
    bottom: 100px;
    left: 0;
    width: 24px;
    height: 40px;
    margin: auto;
    border: 2px solid #E9E9E9;
    border-radius: 25px;
    z-index: 2
}

.page-intro__scroller:after {
    width: 5px;
    height: 5px;
    border-radius: 12px;
    transform: translateY(7px);
    transition: all .35s ease;
    background-color: #e9e9e9;
    animation: scrollDown 2s ease infinite;
    content: ""
}

.cursor {
    position: fixed;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: width .3s, height .3s;
    pointer-events: none;
    z-index: 120;
    animation: pulse 2s infinite
}

.wave {
    opacity: 0;
    fill: #fff
}

.wave.animated {
    animation: fadeIn 1s ease-in-out infinite
}

.wave:nth-child(2) {
    animation-delay: .3s
}

.wave:nth-child(3) {
    animation-delay: .6s
}

.wave:nth-child(4) {
    animation-delay: .9s
}

@keyframes fadeIn {

    0%,
    80%,
    to {
        opacity: 0
    }

    40% {
        opacity: 1
    }
}

.cursor:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-left: -6px;
    margin-top: -6px
}

.play-on-hover {
    cursor: none !important
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.5)
    }

    to {
        transform: scale(1)
    }
}

.page-intro__mobile-video-controls .wrapper {
    width: 100%
}

.page-intro__mobile-video-controls .toggles>div:not(.is-active) {
    display: none
}

.page-intro__mobile-video-controls svg {
    width: auto;
    height: 25px
}

.page-intro__mobile-video-controls svg path {
    fill: #24195d
}

.search {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    overflow: hidden;
    transition: all .35s ease;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%)
}

.search .menu__search {
    width: 100%;
    padding: 0
}

.search .menu__search form {
    width: 100%
}

.search.is-active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0)
}

.search__results {
    padding: 100px 100px 100px 0;
    border-right: 1px solid #E9E9E9
}

@media (max-width: 1199px) {
    .search__results {
        padding: 75px 0 30px;
        border-right: 0
    }
}

.search__results-list {
    position: relative;
    height: calc(100vh - 400px);
    padding-bottom: 50px;
    overflow: auto
}

@media (max-width: 1199px) {
    .search__results-list {
        height: calc(100vh - 300px)
    }
}

.search__results-list:after {
    position: fixed;
    right: 0;
    bottom: 54px;
    left: 0;
    height: 140px;
    background: linear-gradient(180deg, #fff0, #fff 66%);
    content: "";
    z-index: 3;
    pointer-events: none
}

.search__result-item {
    display: block;
    text-decoration: none;
    transition: all .35s ease
}

.search__result-item:not(:nth-last-child(1)) {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E9E9E9
}

.search__result-item:hover {
    padding-left: 20px
}

.search__related-people {
    padding: 190px 0 100px 100px
}

.search__related-people-item {
    gap: 24px
}

.search__related-people-item img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px
}

.search__related-people-item .cms-output {
    line-height: 16px
}

.search__related-people-item .cms-output strong {
    font-size: 14px;
    font-size: .875rem;
    line-height: 16px;
    line-height: 1rem;
    display: block;
    margin-top: 10px
}

.search__related-people-item:not(:nth-last-child(1)) {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E9E9E9
}

.search__close {
    position: absolute;
    top: 15px;
    right: 30px;
    cursor: pointer
}

.services__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px
}

@media (max-width: 768px) {
    .services__inner {
        grid-template-columns: 1fr
    }
}

.service {
    text-decoration: none
}

@media (max-width: 768px) {
    .service {
        position: relative
    }
}

.service h3 {
    text-transform: uppercase
}

@media (max-width: 768px) {
    .service h3 {
        position: absolute;
        bottom: 20px;
        left: 20px;
        margin: 0 !important;
        text-shadow: 0 0 10px rgba(0, 0, 0, .2);
        color: #fff
    }
}

.service video,
.service img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px
}

@media (max-width: 768px) {

    .service video,
    .service img {
        height: 150px
    }
}

.solution-detail .usps .usps__loop,
.content--video-fixed .usps .usps__loop {
    max-width: 840px
}

.solution-detail .usps .usps__loop .h2,
.content--video-fixed .usps .usps__loop .h2 {
    font-size: 64px;
    font-size: 4rem;
    line-height: 64px;
    line-height: 4rem
}

@media (max-width: 1199px) {

    .solution-detail .usps .usps__loop .h2,
    .content--video-fixed .usps .usps__loop .h2 {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 24px;
        line-height: 1.5rem
    }
}

.solution-detail .wrapper>div,
.content--video-fixed .wrapper>div {
    margin-right: 175px
}

@media (max-width: 1199px) {

    .solution-detail .wrapper>div,
    .content--video-fixed .wrapper>div {
        margin-right: 0
    }
}

.solution-detail .wide-image,
.content--video-fixed .wide-image {
    width: 100%;
    height: 400px
}

@media (max-width: 1199px) {

    .solution-detail .wide-image,
    .content--video-fixed .wide-image {
        height: 350px
    }
}

.solution-detail .wide-image img,
.content--video-fixed .wide-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px
}

@media (max-width: 1199px) {
    .solution-detail__service-blocks .wrapper {
        padding: 0
    }
}

.solution-detail__content {
    max-width: 1160px
}

@media (max-width: 1199px) {
    .solution-detail__content-blocks {
        display: flex;
        overflow-x: auto;
        gap: 8px
    }
}

.solution-detail__content-block {
    display: grid;
    grid-gap: 24px;
    border-radius: 4px
}

@media (max-width: 1199px) {
    .solution-detail__content-block {
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
        justify-content: center;
        flex: 0 0 auto;
        width: 300px;
        padding: 32px;
        border: 2px solid #24195D
    }
}

.solution-detail__content-block>div {
    display: grid;
    grid-gap: 24px;
    border-radius: 4px
}

@media (max-width: 1199px) {
    .solution-detail__content-block h2 {
        text-align: center
    }
}

.solution-detail__content-block h3 {
    text-transform: unset
}

@media (max-width: 1199px) {
    .solution-detail__content-block h3 {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 24px;
        line-height: 1.5rem;
        margin: 35px 0;
        text-align: center
    }

    .solution-detail__content-block img {
        display: block;
        width: 144px;
        margin: auto auto 24px
    }

    .solution-detail__content-block:nth-child(1) {
        margin-left: 35px
    }

    .solution-detail__content-block:nth-last-child(1) {
        margin-right: 35px
    }
}

.solution-detail__content-image {
    position: sticky;
    top: 125px;
    margin-top: 75px
}

.solution-detail__content-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 375px;
    opacity: 0;
    transition: opacity .35s ease
}

.solution-detail__content-image img.is-active {
    opacity: 1
}

.solution-detail__blocks-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 24px;
    z-index: 6
}

@media (max-width: 1199px) {
    .solution-detail__blocks-inner {
        grid-template-columns: 1fr;
        grid-gap: 8px
    }
}

.solution-detail__block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
    padding: 32px;
    border-radius: 4px
}

@media (max-width: 1199px) {
    .solution-detail__block {
        padding: 24px
    }
}

.solution-detail__block.bg--white-100 {
    border: 2px solid #24195D
}

@media (max-width: 1199px) {
    .team .wrapper {
        padding: 0
    }
}

.team.filter--none .team__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0
}

.team.filter--none .team__items .name {
    color: #24195d;
    font-weight: 700;
    margin-bottom: 5px
}

.team.filter--none .team__items .jobtitle {
    color: #db0f16;
    margin-bottom: 10px;
    font-size: 18px
}

.team.filter--none .team__items .phone,
.team.filter--none .team__items .email {
    color: #24195d;
    margin-bottom: 5px;
    display: block;
    font-size: 16px
}

@media (max-width: 1199px) {
    .team.is-info-page {
        width: calc(100% + 70px);
        margin-left: -35px
    }

    .team__upper {
        padding: 0 35px
    }
}

.team__lower {
    position: relative
}

.team__lower.has-no-filter .team__search {
    right: unset
}

.team__lower.has-no-filter .team__search form {
    width: 100%
}

.team__lower.has-no-filter .team__items {
    padding-left: 0
}

.team__filter {
    width: 264px
}

@media (max-width: 1199px) {
    .team__filter {
        width: 100%;
        padding: 0 35px
    }
}

.team__filter ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.team__filter ul li {
    padding: 10px 0;
    transition: all .35s ease
}

.team__filter ul li a {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 28px;
    line-height: 1.75rem;
    color: #24195d;
    text-decoration: none;
    font-weight: 400;
    transition: all .35s ease
}

.team__filter ul li:not(:nth-last-child(1)) {
    border-bottom: 1px solid #24195D
}

.team__filter ul li:hover {
    padding: 10px 0 10px 20px
}

.team__filter ul li:hover a {
    color: #db0f16
}

.team__filter ul li.is-active,
.team__filter ul .team.filter--none li.team__items,
.team.filter--none .team__filter ul li.team__items {
    padding: 10px 0 10px 20px
}

.team__filter ul li.is-active a,
.team__filter ul .team.filter--none li.team__items a,
.team.filter--none .team__filter ul li.team__items a {
    color: #db0f16;
    font-weight: 600
}

.team__filter select {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
    width: 100%;
    height: 48px;
    padding: 0 24px;
    border: 2px solid #24195D;
    border-radius: 4px;
    font-family: univers-next-pro, sans-serif;
    font-weight: 600;
    color: #24195d
}

@media (max-width: 1199px) {
    .team__filter select {
        width: calc(100% - 70px);
        margin-left: 35px
    }
}

.team__filter--mobile {
    position: relative
}

.team__filter--mobile select {
    width: 100%;
    margin-left: 0;
    -webkit-appearance: none;
    -moz-appearance: none
}

.team__filter--mobile select::-ms-expand {
    display: none
}

.team__filter--mobile svg {
    position: absolute;
    top: 10px;
    right: 15px;
    pointer-events: none
}

.team__right {
    width: calc(100% - 288px)
}

@media (max-width: 1199px) {
    .team__right {
        width: 100%
    }
}

.team__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 24px;
    margin-top: 75px
}

@media (max-width: 1199px) {
    .team__items {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        width: 100%;
        padding-left: 0
    }
}

.team__items:not(.filter--none) {
    padding-left: 24px
}

@media (max-width: 768px) {
    .team__items:not(.filter--none) {
        padding-left: 0
    }
}

.team__items .vessel-card {
    text-decoration: none;
    color: #24195d
}

.team__items .team-item {
    position: relative;
    text-decoration: none;
    transition: all .35s ease
}

@media (max-width: 1199px) {
    .team__items .team-item {
        width: 225px;
        flex: 0 0 auto
    }
}

.team__items .team-item__photo {
    width: 100%;
    height: 300px
}

@media (max-width: 1199px) {
    .team__items .team-item__photo {
        height: 260px
    }
}

.team__items .team-item__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0 5%;
    object-position: 0 5%
}

.team__items .team-item__name {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
    line-height: 1.5rem
}

.team__items .team-item .team-profile {
    font-size: 15px
}

.team__items .team-item__content {
    padding: 25px 25px 75px
}

@media (max-width: 1199px) {
    .team__items .team-item__content {
        padding: 15px 15px 45px
    }
}

.team__items .team-item__content .cms-output {
    font-size: 14px;
    font-size: .875rem;
    line-height: 24px;
    line-height: 1.5rem;
    max-width: 100%;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.team__items .team-item__link {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 100%
}

.team__items .team-item__link a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #24195d
}

@media (max-width: 1199px) {
    .team__items .team-item:nth-child(1) {
        margin-left: 35px
    }

    .team__items .team-item:nth-last-child(1) {
        margin-right: 35px
    }
}

.team__items .team-item:not(.is-active) {
    display: none
}

.team__items:not(.is-active) {
    display: none
}

.team-item__contact {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 4px;
    background-color: #db0f16;
    transition: all .35s ease;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,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'/%3E%3C/defs%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,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'/%3E%3C/defs%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain
}

.team-item__contact svg {
    width: auto;
    height: 15px;
    max-height: 15px
}

.team-item__contact svg path {
    fill: #fff;
    transition: all .35s ease
}

.team-item__contact:hover {
    background-color: #24195d
}

.team-item__contact:hover svg path {
    fill: #fff
}

#people-finder .team__items {
    grid-template-columns: 1fr 1fr
}

.team__search {
    width: 100%;
    margin: 0 0 30px auto;
    padding: 0
}

@media (max-width: 1199px) {
    .team__search {
        position: unset;
        width: calc(100% - 70px);
        padding: 25px 35px 0;
        border-radius: 4px
    }
}

.team__search form {
    width: calc(100% - 20px);
    margin: 0 0 0 auto
}

@media (max-width: 1199px) {
    .team__search form {
        width: 100%;
        border-radius: 4px
    }

    .team__search form input {
        width: 100% !important;
        height: 48px !important;
        border-radius: 4px !important
    }

    .team__search form button {
        width: 40px;
        height: 40px
    }
}

.text-image h2 {
    text-align: center
}

.text-image.image--left .row {
    flex-direction: row-reverse
}

.text-image.image--left .text-image__text {
    margin: 0 0 0 auto
}

.text-image__image {
    position: relative;
    width: 550px;
    height: 550px
}

@media only screen and (max-width: 1199px) {
    .text-image__image {
        width: 300px;
        height: 300px;
        margin: 30px auto
    }
}

@media only screen and (max-width: 1399px) and (min-width: 1200px) {
    .text-image__image {
        width: 400px;
        height: 400px
    }
}

.text-image__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
    background-color: #24195d
}

.text-image__image>svg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 585px;
    height: 585px
}

@media only screen and (max-width: 1199px) {
    .text-image__image>svg {
        top: -10px;
        left: -10px;
        width: 325px;
        height: 325px
    }
}

@media only screen and (max-width: 1399px) and (min-width: 1200px) {
    .text-image__image>svg {
        width: 435px;
        height: 435px
    }
}

.text-image__text {
    max-width: 450px
}

@media (max-width: 768px) {
    .text-image__text {
        text-align: center
    }
}

@media only screen and (max-width: 1199px) {
    .text-image__text {
        max-width: 100%
    }
}

.text-image__text h3 span {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
    margin-bottom: 10px
}

@media (max-width: 1199px) {
    .timeline .wrapper {
        padding: 0
    }

    .timeline h2 {
        margin-left: 30px
    }

    .timeline__inner {
        overflow: auto
    }
}

.timeline-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    min-width: 550px
}

.timeline-item__photo img {
    max-height: 330px;
    max-width: 400px;
    white-space: nowrap
}

.timeline-item__text {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    height: 125px;
    width: 100%
}

.timeline-item__text h4 {
    width: 100%
}

.timeline-item__text .cms-output {
    font-size: 14px;
    font-size: .875rem;
    line-height: 24px;
    line-height: 1.5rem;
    width: 100%;
    max-width: 264px;
    margin-top: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.timeline-item__link {
    width: 100%
}

.timeline-item .btn {
    font-size: 14px;
    font-size: .875rem;
    line-height: 20px;
    line-height: 1.25rem;
    margin-top: 16px;
    font-weight: 400
}

.timeline-item:after {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    border: 4px solid #24195D;
    background: #fff;
    content: "";
    z-index: 3;
    transform: rotate(45deg)
}

.timeline__upper {
    position: relative;
    width: 100%;
    margin-bottom: 125px
}

.timeline__upper .timeline-item__photo {
    margin-bottom: 25px
}

.timeline__upper .timeline-item:after {
    bottom: -86.5px
}

@media (max-width: 1199px) {
    .timeline__upper .timeline-item:nth-child(1) {
        margin-left: 30px
    }
}

.timeline__upper .timeline-item:not(:nth-last-child(1)):before {
    position: absolute;
    right: -12px;
    bottom: -78px;
    left: 12px;
    height: 4px;
    z-index: -1;
    background-color: #24195d;
    content: ""
}

.timeline__upper .timeline-item:nth-last-child(1) {
    min-width: 264px;
    max-width: 264px
}

@media (max-width: 1199px) {
    .timeline__upper .timeline-item:nth-last-child(1) {
        margin-right: 30px
    }
}

.timeline__lower {
    width: 100%;
    padding-left: 264px
}

.timeline__lower .timeline-item {
    align-items: flex-start
}

.timeline__lower .timeline-item__photo {
    margin-top: 16px
}

.timeline__lower .timeline-item__text {
    height: 160px
}

.timeline__lower .timeline-item:has(.timeline-item__photo) {
    flex-direction: column-reverse
}

.timeline__lower .timeline-item:after {
    top: -59px
}

@media (max-width: 1199px) {
    .timeline__lower .timeline-item:nth-child(1) {
        margin-left: 30px
    }
}

.timeline__lower .timeline-item:nth-last-child(1) {
    min-width: 264px;
    max-width: 264px
}

@media (max-width: 1199px) {
    .timeline__lower .timeline-item:nth-last-child(1) {
        margin-right: 30px
    }
}

.timeline__lower .timeline-item:nth-last-child(1):before {
    position: absolute;
    top: -51px;
    right: 100%;
    width: 244px;
    height: 4px;
    z-index: -1;
    background-color: #24195d;
    content: ""
}

.timeline-modal,
.modal {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all .35s ease
}

.timeline-modal:after,
.modal:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1b14641a;
    opacity: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    content: "";
    z-index: -1;
    transition: all .35s ease
}

.timeline-modal.is-active,
.modal.is-active {
    opacity: 1;
    pointer-events: all
}

.timeline-modal.is-active:after,
.modal.is-active:after {
    opacity: 1
}

.timeline-modal__inner,
.modal__inner {
    width: 100%;
    max-width: 600px;
    margin: 125px 0;
    overflow: auto;
    padding: 48px;
    background-color: #fff
}

.timeline-modal__inner img,
.modal__inner img {
    max-width: 100%;
    max-height: 320px;
    margin-top: 24px;
    border-radius: 4px
}

.timeline-modal__inner .cms-output,
.modal__inner .cms-output {
    max-width: 100%;
    margin-top: 48px
}

.timeline-modal__close,
.modal__close {
    font-size: 14px;
    font-size: .875rem;
    line-height: 16px;
    line-height: 1rem;
    display: flex;
    gap: 8px;
    align-items: center;
    position: absolute;
    top: 25px;
    right: 50px;
    color: #db0f16;
    cursor: pointer
}

.timeline-modal__close span,
.modal__close span {
    display: inline-flex;
    padding: 5px;
    border: 2px solid #DB0F16;
    border-radius: 4px;
    text-transform: uppercase
}

.timeline__image img {
    width: calc(100% - 60px);
    padding: 0 30px;
    max-width: 1200px
}

.usps__loop {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 24px
}

@media (max-width: 1199px) {
    .usps__loop {
        grid-gap: 8px
    }
}

.usps__loop .usp {
    text-align: center;
    padding: 24px
}

@media (max-width: 768px) {
    .usps__loop .usp {
        padding: 8px
    }
}

.usps__loop .usp p {
    font-size: 14px;
    font-size: .875rem;
    line-height: 20px;
    line-height: 1.25rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600
}

.usps__loop .usp span {
    font-weight: 600
}

@media (max-width: 768px) {
    .usps__loop .usp span {
        font-size: 8px;
        font-size: .5rem;
        line-height: 10px;
        line-height: .625rem
    }
}

.vacancies__upper span {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
    text-transform: uppercase;
    font-weight: 600
}

.vacancies-filters {
    border: 2px solid #24195D;
    border-right: 0;
    border-radius: 4px;
    overflow: hidden
}

@media (max-width: 768px) {
    .vacancies-filters {
        grid-template-columns: 1fr
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .vacancies-filters {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 1199px) {
    .vacancies-filters {
        display: grid;
        grid-gap: 16px;
        width: 100%;
        border: 0
    }
}

.vacancies-filters ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    padding: 2px;
    list-style-type: none
}

.vacancies-filters ul li {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
    padding: 12px 17px;
    border-radius: 4px;
    transition: all .35s ease;
    cursor: pointer
}

.vacancies-filters ul li:hover,
.vacancies-filters ul li.is-active {
    background-color: #24195d;
    color: #fff
}

.vacancies-filters ul li.is-active {
    font-weight: 600
}

.vacancies-filters ul:not(:nth-last-child(1)) {
    border-right: 2px solid #24195D
}

.vacancies-filters select {
    width: 100%
}

.vacancies__lower {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 24px
}

@media (max-width: 768px) {
    .vacancies__lower {
        grid-gap: 10px;
        grid-template-columns: 1fr
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .vacancies__lower {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .vacancies__lower {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

.vacancy {
    position: relative;
    min-height: 285px;
    padding: 25px;
    border: 2px solid #24195D;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    overflow: hidden
}

.vacancy__upper {
    width: 100%
}

.vacancy__date {
    font-size: 14px;
    font-size: .875rem;
    line-height: 24px;
    line-height: 1.5rem;
    opacity: .5
}

.vacancy__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
    width: 100%;
    font-weight: 600
}

.vacancy__tags {
    max-width: 120px;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    transition: all .35s ease
}

.vacancy__tags li {
    font-size: 14px;
    font-size: .875rem;
    line-height: 20px;
    line-height: 1.25rem;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #24195d;
    color: #fff;
    font-weight: 600
}

.vacancy__tags li:has(.flag) {
    position: relative;
    padding: 4px 8px 4px 50px
}

.vacancy__tags li:has(.flag) img {
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    height: calc(100% - 2px);
    width: 40px;
    border-radius: 4px
}

.vacancy .btn {
    position: absolute;
    right: 4px;
    bottom: -50px;
    left: 4px;
    transition: all .35s ease
}

@media (max-width: 768px) {
    .vacancy .btn {
        position: unset;
        width: 100%
    }
}

@media (min-width: 992px) {
    .vacancy:hover .vacancy__tags {
        transform: translateY(-50px)
    }
}

.vacancy:hover .btn {
    bottom: 4px
}

.vacancy-cta {
    position: relative;
    grid-row: 2/3;
    grid-column: 2/5;
    min-height: 339px;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none
}

@media (max-width: 768px) {
    .vacancy-cta {
        grid-column: unset
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .vacancy-cta {
        grid-column: 1/3
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .vacancy-cta {
        grid-column: 1/4
    }
}

@media (max-width: 1199px) {
    .vacancy-cta {
        min-height: 0
    }
}

.vacancy-cta * {
    transition: all .35s ease
}

.vacancy-cta h2 {
    max-width: 350px;
    padding: 40px 0 0 40px
}

@media (max-width: 1199px) {
    .vacancy-cta h2 {
        padding: 25px 75px 25px 25px
    }
}

.vacancy-cta h4 {
    position: absolute;
    bottom: -40px;
    left: 40px;
    max-width: 350px;
    opacity: 0;
    z-index: 10
}

@media (max-width: 1199px) {
    .vacancy-cta h4 {
        display: none
    }
}

.vacancy-cta__image {
    position: absolute;
    top: -200px;
    right: -50px;
    width: 500px;
    height: 500px;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAAAXNSR0IArs4c6QAACixJREFUeF7t3TFSJEAMQ9HhBNz/jESkJLuH+EGXym9zirKxvmUx9H79/f39+4R/v7+/4as/n+/v7/T1vr/+lwG6Pn9fAABARUAAvA1gAOBAiv4/AAAAaYCuWzD1c2BFQBXAHAAHUOaPAxjPwAAAAAAgdKBu4NcOEAAAIIz/hwPgALZDkNcE9v1lAIXA1YFwABxAmT8OgAPgAIqCOAAOoMwPBzBOYAAAAAAIHagEJEACDOM3fwLJAGQAZf7nBXB9AQAAAABA6MC6AwUAAAjj73MAACCESwK6bkHV/zaD+fr5+UnvAfgBvv0B6r/+lw0EABxMmR8PuoyfkAAAAAAQOrDuwAAAAML4e9INAMYt0HqKuz6A+v/2o/QcAAfAAYQOrAMYAAAgjL8TAACcAElALPBbC3y9/xwAB5AAtr4BAcAHgQggdAAAtj+IxAFwAEH+MoB1AAIAAABA6AAACAHD+Phruus3+Ov6OQAOIAFsfQO+FuDr7w8AAAAAoQPrAAQAAAjjLwScB4D/Hnz71zivLaTvv/1BJk+CCTGTAwAAAEgDtG6hCGBbANfnjwPgABLAAXAbgAAAAAAQOrAOQAAAgDD+PsgEAH6NlgR0/QZV/9vfQnEAHEAC2PoGvA4gAAAAAAgdWAcgAABAGH8ZAADIAJKArltQ9csAkoDWCUwAbwVwvf9OACcAAIcOrC8gAACAMP4yAACQASQBXbeg6n97AnEAHEAC2PoGvA4gD4JwMAkA1wW0Xj8AAAAAhA4AAAsdxkeI5oR4++fEHAAHkAC2vgGvAwgAAAAAQgfWAQgAABDG36vAACADSAK6bkHVLwNIAlonMAG8FcD1/jsBnAAAHDqwvoAAAADC+MsAAEAGkAR03YKq/+0JxAFwAAlg6xvwOoAAAAAAIHRgHYAAAABh/GUAACADSAK6bkHVLwNIAlonMAG8FcD1/nsQhINJAL4uoPX6AQAAACB0AACEaGF8hGhOOG8CJgGtE5gA3grgev+dAE4AAA4dWF9AAAAAYfw9aQYAMoAkoOsWVP1vTyAOgANIAFvfgNcBBAAAAAChA+sABAAACOMvAwAAGUAS0HULqn4ZQBLQOoEJ4K0ArvffCeAEAODQgfUFBAAAEMZfBgAAMoAkoOsWVP1vTyAOgANIAFvfgNcB5EkwDiYB4LqA1usHAAAAgNABAGChw/gI0ZwQb59E4wA4gASw9Q14HUAAAAAAEDqwDkAAAIAw/p40AwAZQBLQdQuqfhlAEtA6gQngrQCu998J4AQA4NCB9QUEAAAQxl8GAAAygCSg6xZU/W9PIA6AA0gAW9+A1wEEAAAAAKED6wAEAAAI4y8DAAAZQBLQdQuqfhlAEtA6gQngrQCu99+DIBxMAvB1Aa3XDwAAAAChAwAgRAvjI0RzwnkTMAloncAE8FYA1/vvBHACAHDowPoCAgAACOPvSTMAkAEkAV23oOp/ewJxABxAAtj6BrwOIAAAAAAIHVgHIAAAQBh/GQAAyACSgK5bUPXLAJKA1glMAG8FcL3/TgAnAACHDqwvIAAAgDD+MgAAkAEkAV23oOp/ewJxABxAAtj6BrwOIE+CcTAJANcFtF4/AAAAAIQOAAALHcZHiOaEePskGgfAASSArW/A6wACAAAAgNCBdQACAACE8fekGQDIAJKArltQ9csAkoDWCUwAbwVwvf9OACcAAIcOrC8gAACAMP4yAACQASQBXbeg6n97AnEAHEAC2PoGvA4gAAAAAAgdWAcgAABAGH8ZAADIAJKArltQ9csAkoDWCUwAbwVwvf8eBOFgEoCvC2i9fgAAAAAIHQAAIVoYHyGaE86bgElA6wQmgLcCuN5/J4ATAIBDB9YXEAAAQBh/T5oBgAwgCei6BVX/2xOIA+AAEsDWN+B1AAEAAABA6MA6AAEAAML4ywAAQAaQBHTdgqpfBpAEtE5gAngrgOv9dwI4AQA4dGB9AQEAAITxlwEAgAwgCei6BVX/2xOIA+AAEsDWN+B1AHkSjINJALguoPX6AQAAACB0AABY6DA+QjQnxNsn0TgADiABbH0DXgcQAAAAAIQOrAMQAAAgjL8nzQBABpAEdN2Cql8GkAS0TmACeCuA6/13AjgBADh0YH0BAQAAhPGXAQCADCAJ6LoFVf/bE4gD4AASwNY34HUAAQAAAEDowDoAAQAAwvjLAABABpAEdN2Cql8GkAS0TmACeCuA6/33IAgHkwB8XUDr9QMAAABA6AAACNHC+AjRnHDeBEwCWicwAbwVwPX+OwGcAAAcOrC+gAAAAML4e9IMAGQASUDXLaj6355AHAAHkAC2vgGvAwgAAAAAQgfWAQgAABDGXwYAADKAJKDrFlT9MoAkoHUCE8BbAVzvvxPACQDAoQPrCwgAACCMvwwAAGQASUDXLaj6355AHAAHkAC2vgGvA8iTYBxMAsB1Aa3XDwAAAAChAwDAQofxEaI5Id4+icYBcAAJYOsb8DqAAAAAACB0YB2AAAAAYfw9aQYAMoAkoOsWVP0ygCSgdQITwFsBXO+/E8AJAMChA+sLCAAAIIy/DAAAZABJQNctqPrfnkAcAAeQALa+Aa8DCAAAAABCB9YBCAAAEMZfBgAAMoAkoOsWVP0ygCSgdQITwFsBXO+/B0E4mATg6wJarx8AAAAAQgcAQIgWxkeI5oTzJmAS0DqBCeCtAK733wngBADg0IH1BQQAABDG35NmACADSAK6bkHV//YE4gA4gASw9Q14HUAAAAAAEDqwDkAAAIAw/jIAAJABJAFdt6DqlwEkAa0TmADeCuB6/50ATgAADh1YX0AAAABh/GUAACADSAK6bkHV//YE4gA4gASw9Q14HUCeBONgEgCuC2i9fgAAAAAIHQAAFjqMjxDNCfH2STQOgANIAFvfgNcBBAAAAAChA+sABAAACOPvSTMAkAEkAV23oOqXASQBrROYAN4K4Hr/nQBOAAAOHVhfQAAAAGH8ZQAAIANIArpuQdX/9gTiADiABLD1DXgdQAAAAAAQOrAOQAAAgDD+MgAAkAEkAV23oOqXASQBrROYAN4K4Hr/PQjCwSQAXxfQev0AAAAAEDoAAEK0MD5CNCecNwGTgNYJTABvBXC9/04AJwAAhw6sLyAAAIAw/p40AwAZQBLQdQuq/rcnEAfAASSArW/A6wACAAAAgNCBdQACAACE8ZcBAIAMIAnougVVvwwgCWidwATwVgDX++8EcAIAcOjA+gICAAAI4y8DAAAZQBLQdQuq/rcnEAfAASSArW/A6wDyJBgHkwBwXUDr9QMAAABA6AAAsNBhfIRoToi3T6JxABxAAtj6BrwOIAAAAAAIHVgHIAAAQBh/T5oBgAwgCei6BVW/DCAJaJ3ABPBWANf77wRwAgBw6MD6AgIAAAjjLwMAABlAEtB1C6r+tycQB8ABJICtb8DrAAIAAACA0IF1AAIAAITxlwEAgAwgCei6BVW/DCAJaJ3ABPBWANf7/x/aVlkHhH7qqQAAAABJRU5ErkJggg=='/%3E%3C/defs%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='518' height='518' viewBox='0 0 518 518' fill='none'%3E%3Cpath d='M20.9718 202.44C44.9501 172.242 72.7377 140.989 108.246 106.029C143.72 71.104 175.317 43.8302 205.792 20.3312C239.565 -5.65038 282.318 -6.19449 315.037 21.1813C345.138 45.2585 376.326 73.0764 411.222 108.716C446.118 144.288 473.396 176.016 496.83 206.589C524.447 242.603 524.005 280.487 495.81 315.99C471.865 346.189 444.044 377.407 408.57 412.367C373.061 447.326 341.6 474.498 311.058 497.963C277.216 524.047 235.314 523.638 201.914 496.977C171.78 472.934 140.693 445.116 105.831 409.544C70.9011 373.939 43.7597 342.346 20.2916 311.705C-5.62534 277.936 -6.13551 235.257 20.9718 202.44Z' fill='url(%23pattern0_642_14320)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_642_14320' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0_642_14320' transform='scale(0.00390625)'/%3E%3C/pattern%3E%3Cimage id='image0_642_14320' width='256' height='256' preserveAspectRatio='none' xlink:href='data:image/png;base64,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'/%3E%3C/defs%3E%3C/svg%3E");
    -webkit-mask-size: cover;
    mask-size: cover
}

.vacancy-cta__image img {
    width: 900px;
    height: 500px;
    -o-object-position: top;
    object-position: top;
    -o-object-fit: cover;
    object-fit: cover
}

.vacancy-cta>svg {
    position: absolute;
    top: -230px;
    right: -80px;
    width: 550px;
    height: 550px
}

.vacancy-cta__btn {
    position: absolute;
    top: calc(50% - 65px);
    right: -45px;
    width: 65px;
    height: 130px;
    opacity: 0
}

@media (max-width: 1199px) {
    .vacancy-cta__btn {
        opacity: 1;
        right: 0
    }
}

@media (min-width: 992px) {
    .vacancy-cta:hover h2 {
        transform: translateY(-150px);
        opacity: 0
    }
}

.vacancy-cta:hover h4 {
    bottom: 40px;
    opacity: 1
}

.vacancy-cta:hover .vacancy-cta__image {
    top: -50px;
    width: 1240px;
    height: 1200px;
    transform: translateY(-400px) translate(100px)
}

.vacancy-cta:hover .vacancy-cta__image img {
    width: 1400px;
    height: 800px;
    transform: scale(.7) translate(-50px) translateY(450px)
}

.vacancy-cta:hover>svg {
    transform: scale(5);
    opacity: 0
}

.vacancy-cta:hover .vacancy-cta__btn {
    right: 0;
    opacity: 1
}

@media (max-width: 1199px) {
    .values h2 {
        padding-left: 35px
    }

    .values .wrapper {
        padding: 0
    }
}

.values__loop {
    grid-gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

@media (max-width: 1199px) {
    .values__loop {
        overflow: auto;
        white-space: nowrap
    }
}

.values__loop * {
    white-space: normal
}

.value-item {
    height: calc(100% - 50px);
    padding: 25px;
    border: 3px solid #24195D;
    border-radius: 4px
}

@media (max-width: 1199px) {
    .value-item {
        min-width: 275px;
        height: unset
    }
}

.value-item h3 {
    width: 100%;
    height: 80px;
    padding-right: 20%
}

.value-item img {
    width: 206px;
    height: 206px;
    margin: 45px auto
}

.value-item .cms-output {
    white-space: normal
}

@media (max-width: 1199px) {
    .value-item:nth-child(1) {
        margin-left: 35px
    }

    .value-item:nth-last-child(1) {
        margin-right: 35px
    }
}

.vessel-input {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    border: 2px solid #1B1464;
    font-weight: 600;
    color: #1b1464
}

.vessel-search-container {
    width: 100%;
    max-width: 700px
}

.vessel-search-container-input {
    position: relative;
    margin-top: 40px;
    box-sizing: border-box
}

.vessel-search-container-input button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding-left: 5px;
    border: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: #1b1464
}

.vessel-search-container-input button svg {
    margin-right: 10px
}

.vessel-search-container-input input {
    box-sizing: border-box;
    width: 100%
}

.vessel-card {
    margin-bottom: 50px
}

.vessel-card .mobile_header {
    display: none
}

.vessel-card .vessel-card-header-image-text-wrapper {
    display: flex;
    gap: 40px
}

.vessel-card .vessel-card-header-numbers {
    display: flex;
    gap: 30px
}

.vessel-card .vessel-card-header {
    display: flex;
    padding: 20px;
    background: #e4fbfc;
    border-radius: 4px;
    align-items: center;
    gap: 52px
}

.vessel-card h2.vessel-card-title {
    font-size: 25px
}

.vessel-card .vessel-card-certificate-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #F1F1F1
}

.vessel-card .vessel-card-certificate-row .vessel-card-certificate-column {
    width: 20%;
    padding: 12px
}

.vessel-card .vessel-card-certificate-row-blue {
    background-color: #e9e9e9;
    border-bottom: 1px solid #F1F1F1
}

@media only screen and (max-width: 900px) {
    .vessel-card .vessel-card-header {
        display: block !important
    }

    .vessel-card .vessel-card-certificates-heading {
        display: none !important
    }

    .vessel-card .vessel-card-certificate-row {
        flex-direction: column;
        width: calc(100% - 30px);
        padding: 15px
    }

    .vessel-card .vessel-card-header-numbers {
        width: 100%;
        justify-content: space-between
    }

    .vessel-card .vessel-card-certificate-column {
        width: 100% !important;
        display: flex;
        padding: 4px !important
    }

    .vessel-card .vessel-card-certificate-column .mobile_header {
        display: block;
        font-weight: 700;
        width: 120px
    }
}

.vessel__not-found {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 40px;
    line-height: 2.5rem;
    padding: 50px 0;
    font-weight: 400
}

.correspondent-card {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    border: 1px solid #E4FBFC
}

@media (max-width: 1199px) {
    .correspondent-card {
        flex-wrap: wrap;
        gap: 10px
    }
}

.correspondent-card h4 {
    font-size: 18px;
    margin-bottom: 15px
}

.correspondent-card .correspondent-card-block--column {
    width: 33.3333333333%
}

@media (max-width: 1199px) {
    .correspondent-card .correspondent-card-block--column {
        width: 100%
    }
}

.correspondent-card-block {
    padding: 20px
}

.correspondent-card-block--grey {
    background-color: #d3d3d3;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.correspondent-card-contact {
    margin-bottom: 15px
}

.correspondent-card-contact .correspondent-card-name {
    font-weight: 700;
    color: #1b1464
}

.correspondent-card-contact a {
    text-decoration: none;
    color: #000
}

.correspondent-card-column * {
    display: block
}

.correspondent-card-title {
    font-size: 20px
}

.correspondent-card-location {
    display: flex;
    align-items: center;
    gap: 20px
}

.correspondent-card-location svg {
    width: 25px
}

.choose-search-type {
    display: inline-flex;
    gap: 2px;
    padding: 2px;
    border: 2px solid #24195D;
    border-radius: 4px;
    overflow: hidden
}

.choose-search-type button {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    color: #24195d;
    font-weight: 500;
    transition: all .35s ease;
    border: 0;
    background-color: #fff;
    cursor: pointer
}

.choose-search-type button.is-active,
.choose-search-type button.active {
    background-color: #24195d;
    color: #fff
}

@media (max-width: 768px) {
    #people-finder .team__items {
        display: grid;
        grid-template-columns: 1fr
    }

    #people-finder .team__items .vessel-card {
        margin: 0
    }

    #people-finder .team-item {
        width: 100%;
        margin: 0
    }
}

#people-finder .team-item__content {
    padding: 25px
}

#people-finder .team-item__link {
    position: unset
}

.people-finder-item {
    max-width: 600px;
    padding: 25px;
    border-radius: 4px
}

.people-finder-item img {
    max-width: 250px
}

/*!
 * Bootstrap Grid v5.3.2 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {

    .container-sm,
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {

    .container-md,
    .container-sm,
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {

    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px
    }
}

@media (min-width: 1400px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px
    }
}

:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.33333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0
}

.g-1,
.gx-1 {
    --bs-gutter-x: .25rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: .25rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: .5rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: .5rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: .25rem
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: .25rem
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: .5rem
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: .5rem
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: .25rem
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: .25rem
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: .5rem
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: .5rem
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333333%
    }

    .offset-lg-5 {
        margin-left: 41.66666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333333%
    }

    .offset-lg-8 {
        margin-left: 66.66666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333333%
    }

    .offset-lg-11 {
        margin-left: 91.66666667%
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: .25rem
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: .25rem
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: .5rem
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: .5rem
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333333%
    }

    .offset-xl-5 {
        margin-left: 41.66666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333333%
    }

    .offset-xl-8 {
        margin-left: 66.66666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333333%
    }

    .offset-xl-11 {
        margin-left: 91.66666667%
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: .25rem
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: .25rem
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: .5rem
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: .5rem
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: .25rem
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: .25rem
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: .5rem
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: .5rem
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-inline-grid {
    display: inline-grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

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

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

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

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

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

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.order-first {
    order: -1 !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.order-last {
    order: 6 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.me-5 {
    margin-right: 3rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-left: 0 !important
}

.ms-1 {
    margin-left: .25rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-3 {
    margin-left: 1rem !important
}

.ms-4 {
    margin-left: 1.5rem !important
}

.ms-5 {
    margin-left: 3rem !important
}

.ms-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

@media (min-width: 576px) {
    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-grid {
        display: grid !important
    }

    .d-sm-inline-grid {
        display: inline-grid !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }

    .order-sm-first {
        order: -1 !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .order-sm-4 {
        order: 4 !important
    }

    .order-sm-5 {
        order: 5 !important
    }

    .order-sm-last {
        order: 6 !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-sm-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-sm-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-sm-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-sm-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-sm-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-sm-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: .25rem !important
    }

    .mt-sm-2 {
        margin-top: .5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .me-sm-0 {
        margin-right: 0 !important
    }

    .me-sm-1 {
        margin-right: .25rem !important
    }

    .me-sm-2 {
        margin-right: .5rem !important
    }

    .me-sm-3 {
        margin-right: 1rem !important
    }

    .me-sm-4 {
        margin-right: 1.5rem !important
    }

    .me-sm-5 {
        margin-right: 3rem !important
    }

    .me-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .ms-sm-0 {
        margin-left: 0 !important
    }

    .ms-sm-1 {
        margin-left: .25rem !important
    }

    .ms-sm-2 {
        margin-left: .5rem !important
    }

    .ms-sm-3 {
        margin-left: 1rem !important
    }

    .ms-sm-4 {
        margin-left: 1.5rem !important
    }

    .ms-sm-5 {
        margin-left: 3rem !important
    }

    .ms-sm-auto {
        margin-left: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-sm-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-sm-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-sm-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-sm-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: .25rem !important
    }

    .pt-sm-2 {
        padding-top: .5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .pe-sm-0 {
        padding-right: 0 !important
    }

    .pe-sm-1 {
        padding-right: .25rem !important
    }

    .pe-sm-2 {
        padding-right: .5rem !important
    }

    .pe-sm-3 {
        padding-right: 1rem !important
    }

    .pe-sm-4 {
        padding-right: 1.5rem !important
    }

    .pe-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-1 {
        padding-bottom: .25rem !important
    }

    .pb-sm-2 {
        padding-bottom: .5rem !important
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important
    }

    .ps-sm-0 {
        padding-left: 0 !important
    }

    .ps-sm-1 {
        padding-left: .25rem !important
    }

    .ps-sm-2 {
        padding-left: .5rem !important
    }

    .ps-sm-3 {
        padding-left: 1rem !important
    }

    .ps-sm-4 {
        padding-left: 1.5rem !important
    }

    .ps-sm-5 {
        padding-left: 3rem !important
    }
}

@media (min-width: 768px) {
    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-grid {
        display: grid !important
    }

    .d-md-inline-grid {
        display: inline-grid !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }

    .order-md-first {
        order: -1 !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .order-md-last {
        order: 6 !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-md-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-md-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-md-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-md-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-md-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: .25rem !important
    }

    .mt-md-2 {
        margin-top: .5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .me-md-0 {
        margin-right: 0 !important
    }

    .me-md-1 {
        margin-right: .25rem !important
    }

    .me-md-2 {
        margin-right: .5rem !important
    }

    .me-md-3 {
        margin-right: 1rem !important
    }

    .me-md-4 {
        margin-right: 1.5rem !important
    }

    .me-md-5 {
        margin-right: 3rem !important
    }

    .me-md-auto {
        margin-right: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: .25rem !important
    }

    .mb-md-2 {
        margin-bottom: .5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .ms-md-0 {
        margin-left: 0 !important
    }

    .ms-md-1 {
        margin-left: .25rem !important
    }

    .ms-md-2 {
        margin-left: .5rem !important
    }

    .ms-md-3 {
        margin-left: 1rem !important
    }

    .ms-md-4 {
        margin-left: 1.5rem !important
    }

    .ms-md-5 {
        margin-left: 3rem !important
    }

    .ms-md-auto {
        margin-left: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-md-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-md-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-md-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-md-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: .25rem !important
    }

    .pt-md-2 {
        padding-top: .5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .pe-md-0 {
        padding-right: 0 !important
    }

    .pe-md-1 {
        padding-right: .25rem !important
    }

    .pe-md-2 {
        padding-right: .5rem !important
    }

    .pe-md-3 {
        padding-right: 1rem !important
    }

    .pe-md-4 {
        padding-right: 1.5rem !important
    }

    .pe-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-1 {
        padding-bottom: .25rem !important
    }

    .pb-md-2 {
        padding-bottom: .5rem !important
    }

    .pb-md-3 {
        padding-bottom: 1rem !important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-md-5 {
        padding-bottom: 3rem !important
    }

    .ps-md-0 {
        padding-left: 0 !important
    }

    .ps-md-1 {
        padding-left: .25rem !important
    }

    .ps-md-2 {
        padding-left: .5rem !important
    }

    .ps-md-3 {
        padding-left: 1rem !important
    }

    .ps-md-4 {
        padding-left: 1.5rem !important
    }

    .ps-md-5 {
        padding-left: 3rem !important
    }
}

@media (min-width: 992px) {
    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-grid {
        display: grid !important
    }

    .d-lg-inline-grid {
        display: inline-grid !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .order-lg-3 {
        order: 3 !important
    }

    .order-lg-4 {
        order: 4 !important
    }

    .order-lg-5 {
        order: 5 !important
    }

    .order-lg-last {
        order: 6 !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-lg-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-lg-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-lg-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-lg-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-lg-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: .25rem !important
    }

    .mt-lg-2 {
        margin-top: .5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .me-lg-0 {
        margin-right: 0 !important
    }

    .me-lg-1 {
        margin-right: .25rem !important
    }

    .me-lg-2 {
        margin-right: .5rem !important
    }

    .me-lg-3 {
        margin-right: 1rem !important
    }

    .me-lg-4 {
        margin-right: 1.5rem !important
    }

    .me-lg-5 {
        margin-right: 3rem !important
    }

    .me-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .ms-lg-0 {
        margin-left: 0 !important
    }

    .ms-lg-1 {
        margin-left: .25rem !important
    }

    .ms-lg-2 {
        margin-left: .5rem !important
    }

    .ms-lg-3 {
        margin-left: 1rem !important
    }

    .ms-lg-4 {
        margin-left: 1.5rem !important
    }

    .ms-lg-5 {
        margin-left: 3rem !important
    }

    .ms-lg-auto {
        margin-left: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-lg-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-lg-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-lg-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-lg-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: .25rem !important
    }

    .pt-lg-2 {
        padding-top: .5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .pe-lg-0 {
        padding-right: 0 !important
    }

    .pe-lg-1 {
        padding-right: .25rem !important
    }

    .pe-lg-2 {
        padding-right: .5rem !important
    }

    .pe-lg-3 {
        padding-right: 1rem !important
    }

    .pe-lg-4 {
        padding-right: 1.5rem !important
    }

    .pe-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: .25rem !important
    }

    .pb-lg-2 {
        padding-bottom: .5rem !important
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

    .ps-lg-0 {
        padding-left: 0 !important
    }

    .ps-lg-1 {
        padding-left: .25rem !important
    }

    .ps-lg-2 {
        padding-left: .5rem !important
    }

    .ps-lg-3 {
        padding-left: 1rem !important
    }

    .ps-lg-4 {
        padding-left: 1.5rem !important
    }

    .ps-lg-5 {
        padding-left: 3rem !important
    }
}

@media (min-width: 1200px) {
    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-grid {
        display: grid !important
    }

    .d-xl-inline-grid {
        display: inline-grid !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }

    .d-xl-none {
        display: none !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }

    .order-xl-first {
        order: -1 !important
    }

    .order-xl-0 {
        order: 0 !important
    }

    .order-xl-1 {
        order: 1 !important
    }

    .order-xl-2 {
        order: 2 !important
    }

    .order-xl-3 {
        order: 3 !important
    }

    .order-xl-4 {
        order: 4 !important
    }

    .order-xl-5 {
        order: 5 !important
    }

    .order-xl-last {
        order: 6 !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-xl-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-xl-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-xl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-xl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-1 {
        margin-top: .25rem !important
    }

    .mt-xl-2 {
        margin-top: .5rem !important
    }

    .mt-xl-3 {
        margin-top: 1rem !important
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xl-5 {
        margin-top: 3rem !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .me-xl-0 {
        margin-right: 0 !important
    }

    .me-xl-1 {
        margin-right: .25rem !important
    }

    .me-xl-2 {
        margin-right: .5rem !important
    }

    .me-xl-3 {
        margin-right: 1rem !important
    }

    .me-xl-4 {
        margin-right: 1.5rem !important
    }

    .me-xl-5 {
        margin-right: 3rem !important
    }

    .me-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .ms-xl-0 {
        margin-left: 0 !important
    }

    .ms-xl-1 {
        margin-left: .25rem !important
    }

    .ms-xl-2 {
        margin-left: .5rem !important
    }

    .ms-xl-3 {
        margin-left: 1rem !important
    }

    .ms-xl-4 {
        margin-left: 1.5rem !important
    }

    .ms-xl-5 {
        margin-left: 3rem !important
    }

    .ms-xl-auto {
        margin-left: auto !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-xl-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-xl-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-xl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-xl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-1 {
        padding-top: .25rem !important
    }

    .pt-xl-2 {
        padding-top: .5rem !important
    }

    .pt-xl-3 {
        padding-top: 1rem !important
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xl-5 {
        padding-top: 3rem !important
    }

    .pe-xl-0 {
        padding-right: 0 !important
    }

    .pe-xl-1 {
        padding-right: .25rem !important
    }

    .pe-xl-2 {
        padding-right: .5rem !important
    }

    .pe-xl-3 {
        padding-right: 1rem !important
    }

    .pe-xl-4 {
        padding-right: 1.5rem !important
    }

    .pe-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xl-0 {
        padding-left: 0 !important
    }

    .ps-xl-1 {
        padding-left: .25rem !important
    }

    .ps-xl-2 {
        padding-left: .5rem !important
    }

    .ps-xl-3 {
        padding-left: 1rem !important
    }

    .ps-xl-4 {
        padding-left: 1.5rem !important
    }

    .ps-xl-5 {
        padding-left: 3rem !important
    }
}

@media (min-width: 1400px) {
    .d-xxl-inline {
        display: inline !important
    }

    .d-xxl-inline-block {
        display: inline-block !important
    }

    .d-xxl-block {
        display: block !important
    }

    .d-xxl-grid {
        display: grid !important
    }

    .d-xxl-inline-grid {
        display: inline-grid !important
    }

    .d-xxl-table {
        display: table !important
    }

    .d-xxl-table-row {
        display: table-row !important
    }

    .d-xxl-table-cell {
        display: table-cell !important
    }

    .d-xxl-flex {
        display: flex !important
    }

    .d-xxl-inline-flex {
        display: inline-flex !important
    }

    .d-xxl-none {
        display: none !important
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important
    }

    .flex-xxl-row {
        flex-direction: row !important
    }

    .flex-xxl-column {
        flex-direction: column !important
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important
    }

    .justify-content-xxl-center {
        justify-content: center !important
    }

    .justify-content-xxl-between {
        justify-content: space-between !important
    }

    .justify-content-xxl-around {
        justify-content: space-around !important
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xxl-start {
        align-items: flex-start !important
    }

    .align-items-xxl-end {
        align-items: flex-end !important
    }

    .align-items-xxl-center {
        align-items: center !important
    }

    .align-items-xxl-baseline {
        align-items: baseline !important
    }

    .align-items-xxl-stretch {
        align-items: stretch !important
    }

    .align-content-xxl-start {
        align-content: flex-start !important
    }

    .align-content-xxl-end {
        align-content: flex-end !important
    }

    .align-content-xxl-center {
        align-content: center !important
    }

    .align-content-xxl-between {
        align-content: space-between !important
    }

    .align-content-xxl-around {
        align-content: space-around !important
    }

    .align-content-xxl-stretch {
        align-content: stretch !important
    }

    .align-self-xxl-auto {
        align-self: auto !important
    }

    .align-self-xxl-start {
        align-self: flex-start !important
    }

    .align-self-xxl-end {
        align-self: flex-end !important
    }

    .align-self-xxl-center {
        align-self: center !important
    }

    .align-self-xxl-baseline {
        align-self: baseline !important
    }

    .align-self-xxl-stretch {
        align-self: stretch !important
    }

    .order-xxl-first {
        order: -1 !important
    }

    .order-xxl-0 {
        order: 0 !important
    }

    .order-xxl-1 {
        order: 1 !important
    }

    .order-xxl-2 {
        order: 2 !important
    }

    .order-xxl-3 {
        order: 3 !important
    }

    .order-xxl-4 {
        order: 4 !important
    }

    .order-xxl-5 {
        order: 5 !important
    }

    .order-xxl-last {
        order: 6 !important
    }

    .m-xxl-0 {
        margin: 0 !important
    }

    .m-xxl-1 {
        margin: .25rem !important
    }

    .m-xxl-2 {
        margin: .5rem !important
    }

    .m-xxl-3 {
        margin: 1rem !important
    }

    .m-xxl-4 {
        margin: 1.5rem !important
    }

    .m-xxl-5 {
        margin: 3rem !important
    }

    .m-xxl-auto {
        margin: auto !important
    }

    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-xxl-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-xxl-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-xxl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-xxl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-xxl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xxl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xxl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xxl-0 {
        margin-top: 0 !important
    }

    .mt-xxl-1 {
        margin-top: .25rem !important
    }

    .mt-xxl-2 {
        margin-top: .5rem !important
    }

    .mt-xxl-3 {
        margin-top: 1rem !important
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xxl-5 {
        margin-top: 3rem !important
    }

    .mt-xxl-auto {
        margin-top: auto !important
    }

    .me-xxl-0 {
        margin-right: 0 !important
    }

    .me-xxl-1 {
        margin-right: .25rem !important
    }

    .me-xxl-2 {
        margin-right: .5rem !important
    }

    .me-xxl-3 {
        margin-right: 1rem !important
    }

    .me-xxl-4 {
        margin-right: 1.5rem !important
    }

    .me-xxl-5 {
        margin-right: 3rem !important
    }

    .me-xxl-auto {
        margin-right: auto !important
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important
    }

    .mb-xxl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xxl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xxl-auto {
        margin-bottom: auto !important
    }

    .ms-xxl-0 {
        margin-left: 0 !important
    }

    .ms-xxl-1 {
        margin-left: .25rem !important
    }

    .ms-xxl-2 {
        margin-left: .5rem !important
    }

    .ms-xxl-3 {
        margin-left: 1rem !important
    }

    .ms-xxl-4 {
        margin-left: 1.5rem !important
    }

    .ms-xxl-5 {
        margin-left: 3rem !important
    }

    .ms-xxl-auto {
        margin-left: auto !important
    }

    .p-xxl-0 {
        padding: 0 !important
    }

    .p-xxl-1 {
        padding: .25rem !important
    }

    .p-xxl-2 {
        padding: .5rem !important
    }

    .p-xxl-3 {
        padding: 1rem !important
    }

    .p-xxl-4 {
        padding: 1.5rem !important
    }

    .p-xxl-5 {
        padding: 3rem !important
    }

    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-xxl-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-xxl-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-xxl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-xxl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-xxl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xxl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xxl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xxl-0 {
        padding-top: 0 !important
    }

    .pt-xxl-1 {
        padding-top: .25rem !important
    }

    .pt-xxl-2 {
        padding-top: .5rem !important
    }

    .pt-xxl-3 {
        padding-top: 1rem !important
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xxl-5 {
        padding-top: 3rem !important
    }

    .pe-xxl-0 {
        padding-right: 0 !important
    }

    .pe-xxl-1 {
        padding-right: .25rem !important
    }

    .pe-xxl-2 {
        padding-right: .5rem !important
    }

    .pe-xxl-3 {
        padding-right: 1rem !important
    }

    .pe-xxl-4 {
        padding-right: 1.5rem !important
    }

    .pe-xxl-5 {
        padding-right: 3rem !important
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important
    }

    .pb-xxl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xxl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xxl-0 {
        padding-left: 0 !important
    }

    .ps-xxl-1 {
        padding-left: .25rem !important
    }

    .ps-xxl-2 {
        padding-left: .5rem !important
    }

    .ps-xxl-3 {
        padding-left: 1rem !important
    }

    .ps-xxl-4 {
        padding-left: 1.5rem !important
    }

    .ps-xxl-5 {
        padding-left: 3rem !important
    }
}

@media print {
    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-grid {
        display: grid !important
    }

    .d-print-inline-grid {
        display: inline-grid !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }

    .d-print-none {
        display: none !important
    }
}

:root {
    --f-spinner-width: 36px;
    --f-spinner-height: 36px;
    --f-spinner-color-1: rgba(0, 0, 0, .1);
    --f-spinner-color-2: rgba(17, 24, 28, .8);
    --f-spinner-stroke: 2.75
}

.f-spinner {
    margin: auto;
    padding: 0;
    width: var(--f-spinner-width);
    height: var(--f-spinner-height)
}

.f-spinner svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    animation: f-spinner-rotate 2s linear infinite
}

.f-spinner svg * {
    stroke-width: var(--f-spinner-stroke);
    fill: none
}

.f-spinner svg *:first-child {
    stroke: var(--f-spinner-color-1)
}

.f-spinner svg *:last-child {
    stroke: var(--f-spinner-color-2);
    animation: f-spinner-dash 2s ease-in-out infinite
}

@keyframes f-spinner-rotate {
    to {
        transform: rotate(360deg)
    }
}

@keyframes f-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35
    }

    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124
    }
}

.f-throwOutUp {
    animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp
}

.f-throwOutDown {
    animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutDown
}

@keyframes f-throwOutUp {
    to {
        transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
        opacity: 0
    }
}

@keyframes f-throwOutDown {
    to {
        transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
        opacity: 0
    }
}

.f-zoomInUp {
    animation: var(--f-transition-duration, .2s) ease .1s both f-zoomInUp
}

.f-zoomOutDown {
    animation: var(--f-transition-duration, .2s) ease both f-zoomOutDown
}

@keyframes f-zoomInUp {
    0% {
        transform: scale(.975) translate3d(0, 16px, 0);
        opacity: 0
    }

    to {
        transform: scale(1) translateZ(0);
        opacity: 1
    }
}

@keyframes f-zoomOutDown {
    to {
        transform: scale(.975) translate3d(0, 16px, 0);
        opacity: 0
    }
}

.f-fadeIn {
    animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
    z-index: 2
}

.f-fadeOut {
    animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
    z-index: 1
}

@keyframes f-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes f-fadeOut {
    to {
        opacity: 0
    }
}

.f-fadeFastIn {
    animation: var(--f-transition-duration, .2s) ease-out both f-fadeFastIn;
    z-index: 2
}

.f-fadeFastOut {
    animation: var(--f-transition-duration, .1s) ease-out both f-fadeFastOut;
    z-index: 2
}

@keyframes f-fadeFastIn {
    0% {
        opacity: .75
    }

    to {
        opacity: 1
    }
}

@keyframes f-fadeFastOut {
    to {
        opacity: 0
    }
}

.f-fadeSlowIn {
    animation: var(--f-transition-duration, .5s) ease both f-fadeSlowIn;
    z-index: 2
}

.f-fadeSlowOut {
    animation: var(--f-transition-duration, .5s) ease both f-fadeSlowOut;
    z-index: 1
}

@keyframes f-fadeSlowIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes f-fadeSlowOut {
    to {
        opacity: 0
    }
}

.f-crossfadeIn {
    animation: var(--f-transition-duration, .2s) ease-out both f-crossfadeIn;
    z-index: 2
}

.f-crossfadeOut {
    animation: calc(var(--f-transition-duration, .2s)*.5) linear .1s both f-crossfadeOut;
    z-index: 1
}

@keyframes f-crossfadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes f-crossfadeOut {
    to {
        opacity: 0
    }
}

.f-slideIn.from-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNext
}

.f-slideIn.from-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrev
}

.f-slideOut.to-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNext
}

.f-slideOut.to-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrev
}

@keyframes f-slideInPrev {
    0% {
        transform: translate(100%)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes f-slideInNext {
    0% {
        transform: translate(-100%)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes f-slideOutNext {
    to {
        transform: translate(-100%)
    }
}

@keyframes f-slideOutPrev {
    to {
        transform: translate(100%)
    }
}

.f-classicIn.from-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInNext;
    z-index: 2
}

.f-classicIn.from-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
    z-index: 2
}

.f-classicOut.to-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
    z-index: 1
}

.f-classicOut.to-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
    z-index: 1
}

@keyframes f-classicInNext {
    0% {
        transform: translate(-75px);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes f-classicInPrev {
    0% {
        transform: translate(75px);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes f-classicOutNext {
    to {
        transform: translate(-75px);
        opacity: 0
    }
}

@keyframes f-classicOutPrev {
    to {
        transform: translate(75px);
        opacity: 0
    }
}

:root {
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all .15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: .65
}

.f-button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    position: relative;
    margin: 0;
    padding: 0;
    width: var(--f-button-width);
    height: var(--f-button-height);
    border: var(--f-button-border);
    border-radius: var(--f-button-border-radius);
    color: var(--f-button-color);
    background: var(--f-button-bg);
    box-shadow: var(--f-button-shadow);
    pointer-events: all;
    cursor: pointer;
    transition: var(--f-button-transition)
}

@media (hover: hover) {
    .f-button:hover:not([disabled]) {
        color: var(--f-button-hover-color);
        background-color: var(--f-button-hover-bg)
    }
}

.f-button:active:not([disabled]) {
    background-color: var(--f-button-active-bg)
}

.f-button:focus:not(:focus-visible) {
    outline: none
}

.f-button:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

.f-button svg {
    width: var(--f-button-svg-width);
    height: var(--f-button-svg-height);
    fill: var(--f-button-svg-fill);
    stroke: currentColor;
    stroke-width: var(--f-button-svg-stroke-width);
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity .15s ease;
    transform: var(--f-button-transform);
    filter: var(--f-button-svg-filter);
    pointer-events: none
}

.f-button[disabled] {
    cursor: default
}

.f-button[disabled] svg {
    opacity: var(--f-button-svg-disabled-opacity)
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
    position: absolute;
    z-index: 1
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
    top: 50%;
    transform: translateY(-50%)
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
    left: var(--f-button-prev-pos)
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
    left: auto;
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
    right: auto;
    left: var(--f-button-prev-pos)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
    top: auto;
    left: 50%;
    transform: translate(-50%)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
    top: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
    bottom: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
    transform: rotate(90deg)
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
    pointer-events: none
}

html.with-fancybox {
    width: auto;
    overflow: visible;
    scroll-behavior: auto
}

html.with-fancybox body {
    touch-action: none
}

html.with-fancybox body.hide-scrollbar {
    width: auto;
    margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
    overflow: hidden !important;
    overscroll-behavior-y: none
}

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-hover-color: #fff;
    --fancybox-bg: rgba(24, 24, 27, .98);
    --fancybox-slide-gap: 10px;
    --f-spinner-width: 50px;
    --f-spinner-height: 50px;
    --f-spinner-color-1: rgba(255, 255, 255, .1);
    --f-spinner-color-2: #bbb;
    --f-spinner-stroke: 3.65;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #f8f8f8;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: visible;
    z-index: var(--fancybox-zIndex, 1050);
    outline: none;
    transform-origin: top left;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    text-size-adjust: 100%;
    overscroll-behavior-y: contain
}

.fancybox__container *,
.fancybox__container *:before,
.fancybox__container *:after {
    box-sizing: inherit
}

.fancybox__container::backdrop {
    background-color: #0000
}

.fancybox__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: var(--fancybox-bg);
    opacity: var(--fancybox-opacity, 1);
    will-change: opacity
}

.fancybox__carousel {
    position: relative;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    z-index: 10;
    overflow-y: visible;
    overflow-x: clip
}

.fancybox__viewport {
    width: 100%;
    height: 100%
}

.fancybox__viewport.is-draggable {
    cursor: move;
    cursor: grab
}

.fancybox__viewport.is-dragging {
    cursor: move;
    cursor: grabbing
}

.fancybox__track {
    display: flex;
    margin: 0 auto;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 var(--fancybox-slide-gap) 0 0;
    padding: 4px;
    overflow: auto;
    overscroll-behavior: contain;
    transform: translateZ(0);
    backface-visibility: hidden
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 40px
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video,
.fancybox__slide.has-image {
    overflow: hidden
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
    overflow: visible
}

.fancybox__slide:before,
.fancybox__slide:after {
    content: "";
    flex: 0 0 0;
    margin: auto
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
    display: block
}

.fancybox__content {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    cursor: default;
    border-radius: 0;
    z-index: 20
}

.is-loading .fancybox__content {
    opacity: 0
}

.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
    cursor: auto
}

.fancybox__slide.has-image>.fancybox__content {
    padding: 0;
    background: #0000;
    min-height: 1px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: none;
    transform: translateZ(0);
    backface-visibility: hidden
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
    width: 100%;
    height: auto;
    max-height: 100%
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
    will-change: transform, width, height
}

.fancybox-image {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    filter: blur(0px)
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: 14px 0 4px;
    overflow-wrap: anywhere;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    cursor: auto;
    visibility: visible
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
    opacity: 0;
    visibility: hidden
}

.is-compact .fancybox__caption {
    padding-bottom: 0
}

.f-button.is-close-btn {
    --f-button-svg-stroke-width: 2;
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 40
}

.fancybox__content>.f-button.is-close-btn {
    --f-button-width: 34px;
    --f-button-height: 34px;
    --f-button-border-radius: 4px;
    --f-button-color: var(--fancybox-color, #fff);
    --f-button-hover-color: var(--fancybox-color, #fff);
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 22px;
    --f-button-svg-height: 22px;
    position: absolute;
    top: -38px;
    right: 0;
    opacity: .75
}

.is-loading .fancybox__content>.f-button.is-close-btn {
    visibility: hidden
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
    visibility: hidden
}

.fancybox__content>.f-button.is-close-btn:hover {
    opacity: 1
}

.fancybox__footer {
    padding: 0;
    margin: 0;
    position: relative
}

.fancybox__footer .fancybox__caption {
    width: 100%;
    padding: 24px;
    opacity: var(--fancybox-opacity, 1);
    transition: all .25s ease
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: #18181b80
}

.is-compact .fancybox__footer .fancybox__caption {
    padding: 12px
}

.is-compact .fancybox__content>.f-button.is-close-btn {
    --f-button-border-radius: 50%;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-outline-color: #000;
    --f-button-bg: rgba(0, 0, 0, .6);
    --f-button-active-bg: rgba(0, 0, 0, .6);
    --f-button-hover-bg: rgba(0, 0, 0, .6);
    --f-button-svg-width: 18px;
    --f-button-svg-height: 18px;
    --f-button-svg-filter: none;
    top: 5px;
    right: 5px
}

.fancybox__nav {
    --f-button-width: 50px;
    --f-button-height: 50px;
    --f-button-border: 0;
    --f-button-border-radius: 50%;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: transparent;
    --f-button-hover-bg: rgba(24, 24, 27, .3);
    --f-button-active-bg: rgba(24, 24, 27, .5);
    --f-button-shadow: none;
    --f-button-transition: all .15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 26px;
    --f-button-svg-height: 26px;
    --f-button-svg-stroke-width: 2.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .5));
    --f-button-svg-disabled-opacity: .65;
    --f-button-next-pos: 1rem;
    --f-button-prev-pos: 1rem;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__nav .f-button:before {
    position: absolute;
    content: "";
    top: -30px;
    right: -20px;
    left: -20px;
    bottom: -30px;
    z-index: 1
}

.is-idle .fancybox__nav {
    animation: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__slide>.f-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -.5));
    z-index: 30;
    cursor: pointer
}

.fancybox-protected {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.fancybox-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    -o-object-fit: contain;
    object-fit: contain;
    z-index: 40;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none
}

.fancybox-focus-guard {
    outline: none;
    opacity: 0;
    position: fixed;
    pointer-events: none
}

.fancybox__container:not([aria-hidden]) {
    opacity: 0
}

.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content) {
    animation: var(--f-interface-enter-duration, .25s) ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
    animation: var(--f-backdrop-enter-duration, .35s) ease backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content) {
    animation: var(--f-interface-exit-duration, .15s) ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
    animation: var(--f-backdrop-exit-duration, .35s) ease forwards f-fadeOut
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
    width: calc(100% - 120px);
    height: 90%
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
    width: 100%;
    height: 100%
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
    padding: 0;
    background: #18181be6;
    color: #fff
}

.has-map .fancybox__content {
    background: #e5e3df
}

.fancybox__html5video,
.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: #0000
}

.fancybox-placeholder {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.f-carousel__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-outline: 0;
    --f-thumb-outline-color: #5eb0ef;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-border-radius: 2px;
    --f-thumb-offset: 0px;
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0
}

.f-carousel__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: .5;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1
}

.f-carousel__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 16px;
    --f-thumb-clip-width: 46px
}

.f-thumbs {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    perspective: 1000px;
    transform: translateZ(0)
}

.f-thumbs .f-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background-image: linear-gradient(#ebeff2, #e2e8f0);
    z-index: -1
}

.f-thumbs .f-spinner svg {
    display: none
}

.f-thumbs.is-vertical {
    height: 100%
}

.f-thumbs__viewport {
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: translateZ(0)
}

.f-thumbs__track {
    display: flex
}

.f-thumbs__slide {
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    overflow: visible;
    cursor: pointer
}

.f-thumbs__slide.is-loading img {
    opacity: 0
}

.is-classic .f-thumbs__viewport {
    height: 100%
}

.is-modern .f-thumbs__track {
    width: -moz-max-content;
    width: max-content
}

.is-modern .f-thumbs__track:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((var(--f-thumb-clip-width, 0))*-.5);
    width: calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));
    cursor: pointer
}

.is-modern .f-thumbs__slide {
    width: var(--f-thumb-clip-width);
    transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
    transition: none;
    pointer-events: none
}

.is-modern.is-resting .f-thumbs__slide {
    transition: transform .33s ease
}

.is-modern.is-resting .f-thumbs__slide__button {
    transition: clip-path .33s ease
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
    filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))
}

.f-thumbs__slide__button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: var(--f-thumb-width);
    height: 100%;
    margin: 0 -100%;
    padding: 0;
    border: 0;
    position: relative;
    border-radius: var(--f-thumb-border-radius);
    overflow: hidden;
    background: #0000;
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    opacity: var(--f-thumb-opacity);
    transition: opacity .2s ease
}

.f-thumbs__slide__button:hover {
    opacity: var(--f-thumb-hover-opacity)
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: none
}

.f-thumbs__slide__button:focus-visible {
    outline: none;
    opacity: var(--f-thumb-selected-opacity)
}

.is-modern .f-thumbs__slide__button {
    --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * .5) round var(--f-thumb-border-radius, 0));
    clip-path: var(--clip-path)
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
    opacity: var(--f-thumb-selected-opacity)
}

.is-classic .is-nav-selected .f-thumbs__slide__button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    bottom: 0;
    border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
    border-radius: var(--f-thumb-border-radius);
    animation: f-fadeIn .2s ease-out;
    z-index: 10
}

.f-thumbs__slide__img {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: var(--f-thumb-offset);
    box-sizing: border-box;
    pointer-events: none;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--f-thumb-border-radius)
}

.f-thumbs.is-horizontal .f-thumbs__track {
    padding: 8px 0 12px
}

.f-thumbs.is-horizontal .f-thumbs__slide {
    margin: 0 var(--f-thumb-gap) 0 0
}

.f-thumbs.is-vertical .f-thumbs__track {
    flex-wrap: wrap;
    padding: 0 8px
}

.f-thumbs.is-vertical .f-thumbs__slide {
    margin: 0 0 var(--f-thumb-gap) 0
}

.fancybox__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-border-radius: 2px;
    --f-thumb-outline: 2px;
    --f-thumb-outline-color: #ededed;
    position: relative;
    opacity: var(--fancybox-opacity, 1);
    transition: max-height .35s cubic-bezier(.23, 1, .32, 1)
}

.fancybox__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: .5;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-classic .f-spinner {
    background-image: linear-gradient(#ffffff1a, #ffffff0d)
}

.fancybox__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 16px;
    --f-thumb-clip-width: 46px;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-modern .f-spinner {
    background-image: linear-gradient(#ffffff1a, #ffffff0d)
}

.fancybox__thumbs.is-horizontal {
    padding: 0 var(--f-thumb-gap)
}

.fancybox__thumbs.is-vertical {
    padding: var(--f-thumb-gap) 0
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 64px;
    --f-thumb-clip-width: 32px;
    --f-thumb-height: 48px;
    --f-thumb-extra-gap: 10px
}

.fancybox__thumbs.is-masked {
    max-height: 0px !important
}

.is-closing .fancybox__thumbs {
    transition: none !important
}

.fancybox__toolbar {
    --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, .94));
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: rgba(24, 24, 27, .65);
    --f-button-hover-bg: rgba(70, 70, 73, .65);
    --f-button-active-bg: rgba(90, 90, 93, .65);
    --f-button-border-radius: 0;
    --f-button-svg-width: 24px;
    --f-button-svg-height: 24px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .15));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: .65;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI Adjusted, Segoe UI, Liberation Sans, sans-serif;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .5));
    pointer-events: none;
    z-index: 20
}

.fancybox__toolbar :focus-visible {
    z-index: 1
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.is-idle .fancybox__toolbar {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__toolbar__column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
    flex-grow: 1;
    flex-basis: 0
}

.fancybox__toolbar__column.is-right {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap
}

.fancybox__infobar {
    padding: 0 5px;
    line-height: var(--f-button-height);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.fancybox__infobar span {
    padding: 0 5px
}

.fancybox__infobar:not(:first-child):not(:last-child) {
    background: var(--f-button-bg)
}

[data-fancybox-toggle-slideshow] {
    position: relative
}

[data-fancybox-toggle-slideshow] .f-progress {
    height: 100%;
    opacity: .3
}

[data-fancybox-toggle-slideshow] svg g:first-child {
    display: flex
}

[data-fancybox-toggle-slideshow] svg g:last-child {
    display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
    display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
    display: flex
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
    display: flex
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex
}

.f-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
    z-index: 30;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none
}