html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !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;
}

@media (min-width: 768px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !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;
    }
}

@media (min-width: 960px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !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;
    }
}

@media (min-width: 1250px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !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;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }

    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !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;
    }
}

.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-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    flex: 1 1 auto !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;
}

.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;
}

.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;
}

@media (min-width: 768px) {
    .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-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        flex: 1 1 auto !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;
    }

    .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;
    }

    .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;
    }
}

@media (min-width: 960px) {
    .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-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        flex: 1 1 auto !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;
    }

    .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;
    }

    .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;
    }
}

@media (min-width: 1250px) {
    .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-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        flex: 1 1 auto !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;
    }

    .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;
    }

    .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;
    }
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 16px !important;
}

.mt-1,
.my-1 {
    margin-top: 16px !important;
}

.mr-1,
.mx-1 {
    margin-right: 16px !important;
}

.mb-1,
.my-1 {
    margin-bottom: 16px !important;
}

.ml-1,
.mx-1 {
    margin-left: 16px !important;
}

.m-2 {
    margin: 24px !important;
}

.mt-2,
.my-2 {
    margin-top: 24px !important;
}

.mr-2,
.mx-2 {
    margin-right: 24px !important;
}

.mb-2,
.my-2 {
    margin-bottom: 24px !important;
}

.ml-2,
.mx-2 {
    margin-left: 24px !important;
}

.m-3 {
    margin: 32px !important;
}

.mt-3,
.my-3 {
    margin-top: 32px !important;
}

.mr-3,
.mx-3 {
    margin-right: 32px !important;
}

.mb-3,
.my-3 {
    margin-bottom: 32px !important;
}

.ml-3,
.mx-3 {
    margin-left: 32px !important;
}

.m-4 {
    margin: 40px !important;
}

.mt-4,
.my-4 {
    margin-top: 40px !important;
}

.mr-4,
.mx-4 {
    margin-right: 40px !important;
}

.mb-4,
.my-4 {
    margin-bottom: 40px !important;
}

.ml-4,
.mx-4 {
    margin-left: 40px !important;
}

.m-5 {
    margin: 64px !important;
}

.mt-5,
.my-5 {
    margin-top: 64px !important;
}

.mr-5,
.mx-5 {
    margin-right: 64px !important;
}

.mb-5,
.my-5 {
    margin-bottom: 64px !important;
}

.ml-5,
.mx-5 {
    margin-left: 64px !important;
}

.m-6 {
    margin: 80px !important;
}

.mt-6,
.my-6 {
    margin-top: 80px !important;
}

.mr-6,
.mx-6 {
    margin-right: 80px !important;
}

.mb-6,
.my-6 {
    margin-bottom: 80px !important;
}

.ml-6,
.mx-6 {
    margin-left: 80px !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 16px !important;
}

.pt-1,
.py-1 {
    padding-top: 16px !important;
}

.pr-1,
.px-1 {
    padding-right: 16px !important;
}

.pb-1,
.py-1 {
    padding-bottom: 16px !important;
}

.pl-1,
.px-1 {
    padding-left: 16px !important;
}

.p-2 {
    padding: 24px !important;
}

.pt-2,
.py-2 {
    padding-top: 24px !important;
}

.pr-2,
.px-2 {
    padding-right: 24px !important;
}

.pb-2,
.py-2 {
    padding-bottom: 24px !important;
}

.pl-2,
.px-2 {
    padding-left: 24px !important;
}

.p-3 {
    padding: 32px !important;
}

.pt-3,
.py-3 {
    padding-top: 32px !important;
}

.pr-3,
.px-3 {
    padding-right: 32px !important;
}

.pb-3,
.py-3 {
    padding-bottom: 32px !important;
}

.pl-3,
.px-3 {
    padding-left: 32px !important;
}

.p-4 {
    padding: 40px !important;
}

.pt-4,
.py-4 {
    padding-top: 40px !important;
}

.pr-4,
.px-4 {
    padding-right: 40px !important;
}

.pb-4,
.py-4 {
    padding-bottom: 40px !important;
}

.pl-4,
.px-4 {
    padding-left: 40px !important;
}

.p-5 {
    padding: 64px !important;
}

.pt-5,
.py-5 {
    padding-top: 64px !important;
}

.pr-5,
.px-5 {
    padding-right: 64px !important;
}

.pb-5,
.py-5 {
    padding-bottom: 64px !important;
}

.pl-5,
.px-5 {
    padding-left: 64px !important;
}

.p-6 {
    padding: 80px !important;
}

.pt-6,
.py-6 {
    padding-top: 80px !important;
}

.pr-6,
.px-6 {
    padding-right: 80px !important;
}

.pb-6,
.py-6 {
    padding-bottom: 80px !important;
}

.pl-6,
.px-6 {
    padding-left: 80px !important;
}

.m-n1 {
    margin: -16px !important;
}

.mt-n1,
.my-n1 {
    margin-top: -16px !important;
}

.mr-n1,
.mx-n1 {
    margin-right: -16px !important;
}

.mb-n1,
.my-n1 {
    margin-bottom: -16px !important;
}

.ml-n1,
.mx-n1 {
    margin-left: -16px !important;
}

.m-n2 {
    margin: -16px !important;
}

.mt-n2,
.my-n2 {
    margin-top: -16px !important;
}

.mr-n2,
.mx-n2 {
    margin-right: -16px !important;
}

.mb-n2,
.my-n2 {
    margin-bottom: -16px !important;
}

.ml-n2,
.mx-n2 {
    margin-left: -16px !important;
}

.m-n3 {
    margin: -16px !important;
}

.mt-n3,
.my-n3 {
    margin-top: -16px !important;
}

.mr-n3,
.mx-n3 {
    margin-right: -16px !important;
}

.mb-n3,
.my-n3 {
    margin-bottom: -16px !important;
}

.ml-n3,
.mx-n3 {
    margin-left: -16px !important;
}

.m-n4 {
    margin: -16px !important;
}

.mt-n4,
.my-n4 {
    margin-top: -16px !important;
}

.mr-n4,
.mx-n4 {
    margin-right: -16px !important;
}

.mb-n4,
.my-n4 {
    margin-bottom: -16px !important;
}

.ml-n4,
.mx-n4 {
    margin-left: -16px !important;
}

.m-n5 {
    margin: -16px !important;
}

.mt-n5,
.my-n5 {
    margin-top: -16px !important;
}

.mr-n5,
.mx-n5 {
    margin-right: -16px !important;
}

.mb-n5,
.my-n5 {
    margin-bottom: -16px !important;
}

.ml-n5,
.mx-n5 {
    margin-left: -16px !important;
}

.m-n6 {
    margin: -16px !important;
}

.mt-n6,
.my-n6 {
    margin-top: -16px !important;
}

.mr-n6,
.mx-n6 {
    margin-right: -16px !important;
}

.mb-n6,
.my-n6 {
    margin-bottom: -16px !important;
}

.ml-n6,
.mx-n6 {
    margin-left: -16px !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 768px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: 16px !important;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 16px !important;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 16px !important;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 16px !important;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 16px !important;
    }

    .m-sm-2 {
        margin: 24px !important;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 24px !important;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 24px !important;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 24px !important;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 24px !important;
    }

    .m-sm-3 {
        margin: 32px !important;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 32px !important;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 32px !important;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 32px !important;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 32px !important;
    }

    .m-sm-4 {
        margin: 40px !important;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 40px !important;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 40px !important;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 40px !important;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 40px !important;
    }

    .m-sm-5 {
        margin: 64px !important;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 64px !important;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 64px !important;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 64px !important;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 64px !important;
    }

    .m-sm-6 {
        margin: 80px !important;
    }

    .mt-sm-6,
    .my-sm-6 {
        margin-top: 80px !important;
    }

    .mr-sm-6,
    .mx-sm-6 {
        margin-right: 80px !important;
    }

    .mb-sm-6,
    .my-sm-6 {
        margin-bottom: 80px !important;
    }

    .ml-sm-6,
    .mx-sm-6 {
        margin-left: 80px !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: 16px !important;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 16px !important;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 16px !important;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 16px !important;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 16px !important;
    }

    .p-sm-2 {
        padding: 24px !important;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 24px !important;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 24px !important;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 24px !important;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 24px !important;
    }

    .p-sm-3 {
        padding: 32px !important;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 32px !important;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 32px !important;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 32px !important;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 32px !important;
    }

    .p-sm-4 {
        padding: 40px !important;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 40px !important;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 40px !important;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 40px !important;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 40px !important;
    }

    .p-sm-5 {
        padding: 64px !important;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 64px !important;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 64px !important;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 64px !important;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 64px !important;
    }

    .p-sm-6 {
        padding: 80px !important;
    }

    .pt-sm-6,
    .py-sm-6 {
        padding-top: 80px !important;
    }

    .pr-sm-6,
    .px-sm-6 {
        padding-right: 80px !important;
    }

    .pb-sm-6,
    .py-sm-6 {
        padding-bottom: 80px !important;
    }

    .pl-sm-6,
    .px-sm-6 {
        padding-left: 80px !important;
    }

    .m-sm-n1 {
        margin: -16px !important;
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -16px !important;
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -16px !important;
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -16px !important;
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -16px !important;
    }

    .m-sm-n2 {
        margin: -16px !important;
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -16px !important;
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -16px !important;
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -16px !important;
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -16px !important;
    }

    .m-sm-n3 {
        margin: -16px !important;
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -16px !important;
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -16px !important;
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -16px !important;
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -16px !important;
    }

    .m-sm-n4 {
        margin: -16px !important;
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -16px !important;
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -16px !important;
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -16px !important;
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -16px !important;
    }

    .m-sm-n5 {
        margin: -16px !important;
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -16px !important;
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -16px !important;
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -16px !important;
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -16px !important;
    }

    .m-sm-n6 {
        margin: -16px !important;
    }

    .mt-sm-n6,
    .my-sm-n6 {
        margin-top: -16px !important;
    }

    .mr-sm-n6,
    .mx-sm-n6 {
        margin-right: -16px !important;
    }

    .mb-sm-n6,
    .my-sm-n6 {
        margin-bottom: -16px !important;
    }

    .ml-sm-n6,
    .mx-sm-n6 {
        margin-left: -16px !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 960px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 16px !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 16px !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 16px !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 16px !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 16px !important;
    }

    .m-md-2 {
        margin: 24px !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 24px !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 24px !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 24px !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 24px !important;
    }

    .m-md-3 {
        margin: 32px !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 32px !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 32px !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 32px !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 32px !important;
    }

    .m-md-4 {
        margin: 40px !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 40px !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 40px !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 40px !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 40px !important;
    }

    .m-md-5 {
        margin: 64px !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 64px !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 64px !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 64px !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 64px !important;
    }

    .m-md-6 {
        margin: 80px !important;
    }

    .mt-md-6,
    .my-md-6 {
        margin-top: 80px !important;
    }

    .mr-md-6,
    .mx-md-6 {
        margin-right: 80px !important;
    }

    .mb-md-6,
    .my-md-6 {
        margin-bottom: 80px !important;
    }

    .ml-md-6,
    .mx-md-6 {
        margin-left: 80px !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 16px !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 16px !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 16px !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 16px !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 16px !important;
    }

    .p-md-2 {
        padding: 24px !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 24px !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 24px !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 24px !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 24px !important;
    }

    .p-md-3 {
        padding: 32px !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 32px !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 32px !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 32px !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 32px !important;
    }

    .p-md-4 {
        padding: 40px !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 40px !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 40px !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 40px !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 40px !important;
    }

    .p-md-5 {
        padding: 64px !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 64px !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 64px !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 64px !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 64px !important;
    }

    .p-md-6 {
        padding: 80px !important;
    }

    .pt-md-6,
    .py-md-6 {
        padding-top: 80px !important;
    }

    .pr-md-6,
    .px-md-6 {
        padding-right: 80px !important;
    }

    .pb-md-6,
    .py-md-6 {
        padding-bottom: 80px !important;
    }

    .pl-md-6,
    .px-md-6 {
        padding-left: 80px !important;
    }

    .m-md-n1 {
        margin: -16px !important;
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -16px !important;
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -16px !important;
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -16px !important;
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -16px !important;
    }

    .m-md-n2 {
        margin: -16px !important;
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -16px !important;
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -16px !important;
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -16px !important;
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -16px !important;
    }

    .m-md-n3 {
        margin: -16px !important;
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -16px !important;
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -16px !important;
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -16px !important;
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -16px !important;
    }

    .m-md-n4 {
        margin: -16px !important;
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -16px !important;
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -16px !important;
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -16px !important;
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -16px !important;
    }

    .m-md-n5 {
        margin: -16px !important;
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -16px !important;
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -16px !important;
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -16px !important;
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -16px !important;
    }

    .m-md-n6 {
        margin: -16px !important;
    }

    .mt-md-n6,
    .my-md-n6 {
        margin-top: -16px !important;
    }

    .mr-md-n6,
    .mx-md-n6 {
        margin-right: -16px !important;
    }

    .mb-md-n6,
    .my-md-n6 {
        margin-bottom: -16px !important;
    }

    .ml-md-n6,
    .mx-md-n6 {
        margin-left: -16px !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1250px) {
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: 16px !important;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 16px !important;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 16px !important;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 16px !important;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 16px !important;
    }

    .m-lg-2 {
        margin: 24px !important;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 24px !important;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 24px !important;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 24px !important;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 24px !important;
    }

    .m-lg-3 {
        margin: 32px !important;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 32px !important;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 32px !important;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 32px !important;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 32px !important;
    }

    .m-lg-4 {
        margin: 40px !important;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 40px !important;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 40px !important;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 40px !important;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 40px !important;
    }

    .m-lg-5 {
        margin: 64px !important;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 64px !important;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 64px !important;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 64px !important;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 64px !important;
    }

    .m-lg-6 {
        margin: 80px !important;
    }

    .mt-lg-6,
    .my-lg-6 {
        margin-top: 80px !important;
    }

    .mr-lg-6,
    .mx-lg-6 {
        margin-right: 80px !important;
    }

    .mb-lg-6,
    .my-lg-6 {
        margin-bottom: 80px !important;
    }

    .ml-lg-6,
    .mx-lg-6 {
        margin-left: 80px !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: 16px !important;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 16px !important;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 16px !important;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 16px !important;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 16px !important;
    }

    .p-lg-2 {
        padding: 24px !important;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 24px !important;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 24px !important;
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 24px !important;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 24px !important;
    }

    .p-lg-3 {
        padding: 32px !important;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 32px !important;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 32px !important;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 32px !important;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 32px !important;
    }

    .p-lg-4 {
        padding: 40px !important;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 40px !important;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 40px !important;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 40px !important;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 40px !important;
    }

    .p-lg-5 {
        padding: 64px !important;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 64px !important;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 64px !important;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 64px !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 64px !important;
    }

    .p-lg-6 {
        padding: 80px !important;
    }

    .pt-lg-6,
    .py-lg-6 {
        padding-top: 80px !important;
    }

    .pr-lg-6,
    .px-lg-6 {
        padding-right: 80px !important;
    }

    .pb-lg-6,
    .py-lg-6 {
        padding-bottom: 80px !important;
    }

    .pl-lg-6,
    .px-lg-6 {
        padding-left: 80px !important;
    }

    .m-lg-n1 {
        margin: -16px !important;
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -16px !important;
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -16px !important;
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -16px !important;
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -16px !important;
    }

    .m-lg-n2 {
        margin: -16px !important;
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -16px !important;
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -16px !important;
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -16px !important;
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -16px !important;
    }

    .m-lg-n3 {
        margin: -16px !important;
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -16px !important;
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -16px !important;
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -16px !important;
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -16px !important;
    }

    .m-lg-n4 {
        margin: -16px !important;
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -16px !important;
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -16px !important;
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -16px !important;
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -16px !important;
    }

    .m-lg-n5 {
        margin: -16px !important;
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -16px !important;
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -16px !important;
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -16px !important;
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -16px !important;
    }

    .m-lg-n6 {
        margin: -16px !important;
    }

    .mt-lg-n6,
    .my-lg-n6 {
        margin-top: -16px !important;
    }

    .mr-lg-n6,
    .mx-lg-n6 {
        margin-right: -16px !important;
    }

    .mb-lg-n6,
    .my-lg-n6 {
        margin-bottom: -16px !important;
    }

    .ml-lg-n6,
    .mx-lg-n6 {
        margin-left: -16px !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

.container {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 960px) {
    .container {
        max-width: 980px;
    }
}

@media (min-width: 1250px) {
    .container {
        max-width: 1248px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto {
    position: relative;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

@media (min-width: 768px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-6 {
        order: 6;
    }

    .order-sm-7 {
        order: 7;
    }

    .order-sm-8 {
        order: 8;
    }

    .order-sm-9 {
        order: 9;
    }

    .order-sm-10 {
        order: 10;
    }

    .order-sm-11 {
        order: 11;
    }

    .order-sm-12 {
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 960px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-6 {
        order: 6;
    }

    .order-md-7 {
        order: 7;
    }

    .order-md-8 {
        order: 8;
    }

    .order-md-9 {
        order: 9;
    }

    .order-md-10 {
        order: 10;
    }

    .order-md-11 {
        order: 11;
    }

    .order-md-12 {
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1250px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-6 {
        order: 6;
    }

    .order-lg-7 {
        order: 7;
    }

    .order-lg-8 {
        order: 8;
    }

    .order-lg-9 {
        order: 9;
    }

    .order-lg-10 {
        order: 10;
    }

    .order-lg-11 {
        order: 11;
    }

    .order-lg-12 {
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

:root {
    font-size: 10px;
    font-size: 10px;
}

html {
    box-sizing: border-box;
}

body {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    color: #121E28;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

@media (max-width: 640px) {
    body {
        font-size: 14px;
    }
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

.style-1-2-second-title a {
    text-decoration: none;
    transition: all 0.3s;
    color: #121E28;
    vertical-align: top;
	text-align:justify;
}

hr {
    border: 0;
    height: 1px;
    background: #e0e0e0;
}

img {
    max-width: 100%;
}

input {
    font-size: 16px;
}

section {
    padding: 20px 0;
}

@media (max-width: 640px) {
    section {
        padding: 24px 0;
    }
}

hr {
    margin: 0;
    border: none;
    border-top: solid 1px #ECEDEE;
}

@media (min-width: 768px) {
    .container--sm {
        max-width: 720px;
    }
}

@media (min-width: 960px) {
    .container--sm {
        max-width: 980px;
    }
}

@media (min-width: 1250px) {
    .container--sm {
        max-width: 1128px;
    }
}

.shadow-1 {
    box-shadow: 0px 2px 2px rgba(18, 30, 40, 0.1);
}

.shadow-2 {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.shadow-3 {
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.shadow-4 {
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
}

.shadow-5 {
    box-shadow: 0px 2px 12px rgba(26, 27, 134, 0.1);
}

.section-links {
    margin-bottom: 120px;
}

.section-gray {
    background-color: #fafbfb;
    padding-bottom: 36px;
}


.btn-back-to-top {
    font-size: 32px;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    right: 30px;
    bottom: 5%;
    color: #ffffff;
    background-color: #07184A;
    opacity: 0.5;
    display: none;
    cursor: pointer;
}

    .btn-back-to-top.show {
        display: flex;
    }

.page-content {
    text-align: justify;
    padding: 32px 0;
}

    .page-content ul, .page-content ol {
        padding-left: 1em;
    }

    .page-content p {
        margin-bottom: 12px;
        font-weight: 500;
    }

    .page-content h5,
    .page-content h4 {
        padding-top: 28px;
        padding-bottom: 24px;
        margin-bottom: 0;
    }

        .page-content h5:first-child,
        .page-content h4:first-child {
            padding-top: 16px;
        }

.w--100 {
    width: 100% !important;
}

.w--50 {
    width: 50% !important;
}

.w--25 {
    width: 25% !important;
}

.w--33 {
    width: calc(100% / 3) !important;
}

.w--67 {
    width: calc(100% / 3 * 2) !important;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
    position: relative;
}

.sticky {
    position: sticky;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: 0px 2px 12px rgba(26, 27, 134, 0.1);
    top: 0;
}

@media (min-width: 960px) {
    .hidden-pc {
        display: none !important;
    }
}

@media (max-width: 960px) {
    .hidden-mb {
        display: none !important;
    }
}

.control-btn {
    display: flex;
}

    .control-btn span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #71787E;
        font-size: 14px;
        color: #ffffff;
        cursor: pointer;
    }

@font-face {
    font-family: 'Noto Serif';
    src: url("fonts/NotoSerif-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Serif';
    src: url("fonts/NotoSerif-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url("fonts/Inter-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'yinfoc';
    src: url("fonts/yinfoc.eot?v8d2l5");
    src: url("fonts/yinfoc.eot?v8d2l5#iefix") format("embedded-opentype"), url("fonts/yinfoc.ttf?v8d2l5") format("truetype"), url("fonts/yinfoc.woff?v8d2l5") format("woff"), url("fonts/yinfoc.svg?v8d2l5#yinfoc") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'yinfoc' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-ic-exit:before {
    content: "\e918";
}

.icon-ic-file-text:before {
    content: "\e919";
}

.icon-ic-log-out:before {
    content: "\e91a";
}

.icon-ic-people:before {
    content: "\e91b";
}

.icon-ic-checkmark:before {
    content: "\e916";
}

.icon-ic-close:before {
    content: "\e917";
}

.icon-calendar-1:before {
    content: "\e90f";
}

.icon-arrowhead-left:before {
    content: "\e910";
}

.icon-arrowhead-right:before {
    content: "\e911";
}

.icon-calendar-2:before {
    content: "\e912";
}

.icon-map:before {
    content: "\e913";
}

.icon-tag:before {
    content: "\e914";
}

.icon-view:before {
    content: "\e915";
}

.icon-ic-calendar:before {
    content: "\e90e";
}

.icon-ic-arrow-down:before {
    content: "\e900";
}

.icon-ic-arrow-left:before {
    content: "\e901";
}

.icon-ic-arrow-right:before {
    content: "\e902";
}

.icon-ic-arrow-up:before {
    content: "\e903";
}

.icon-ic-back-top:before {
    content: "\e904";
}

.icon-ic-facebook:before {
    content: "\e905";
}

.icon-ic-google:before {
    content: "\e906";
}

.icon-ic-home:before {
    content: "\e907";
}

.icon-ic-linkin:before {
    content: "\e908";
}

.icon-ic-location:before {
    content: "\e909";
}

.icon-ic-mail:before {
    content: "\e90a";
}

.icon-ic-phone:before {
    content: "\e90b";
}

.icon-ic-search:before {
    content: "\e90c";
}

.icon-ic-twiter:before {
    content: "\e90d";
}

.is-fix {
    position: fixed;
    z-index: 10;
}

.is-fix--tl {
    top: 0;
    left: 0;
}

.is-fix--tr {
    top: 0;
    right: 0;
}

.w--100 {
    width: 100%;
}

/**
 * Basic typography style for copy text
 */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.3;
}

h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 640px) {
    h2 {
        font-size: 24px;
    }
}

h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 960px) {
    h3 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    h3 {
        font-size: 22px;
    }
}

h4 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 640px) {
    h4 {
        font-size: 22px;
    }
}

h5 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}

h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

p {
    margin: 0;
}

small {
    font-size: 14px;
}

.fs--14 {
    font-size: 14px !important;
}

.fs--15 {
    font-size: 15px !important;
}

.fs--16 {
    font-size: 16px !important;
}

.fs--18 {
    font-size: 18px !important;
}

.fs--20 {
    font-size: 20px !important;
}

.fs--22 {
    font-size: 22px !important;
}

.text--center {
    text-align: center;
}

.text--right {
    text-align: right;
}

.text--justify {
    text-align: justify;
}

.title {
    margin-bottom: 24px;
}

.title-md {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #0E2D80;
}

.title-sm {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #0E2D80;
}

.title-xs {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #0E2D80;
}

.text-primary-dark {
    color: #0E2D80 !important;
}

.text-primary {
    color: #154BEC !important;
}

.text-secondary-orange {
    color: #FF611D !important;
}

.text-secondary-green {
    color: #47D3D3 !important;
}

.text-secondary-blue-sky {
    color: #0094FF !important;
}

.text-secondary-yellow {
    color: #FFC003 !important;
}

.text-secondary-red {
    color: #FF1919 !important;
}

.text-secondary-blue-dark {
    color: #07184A !important;
}

.text-secondary-blue {
    color: #0B2573 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-gray04 {
    color: #71787E !important;
}

.text-gray05 {
    color: #121E28 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-gray01 {
    color: #FAFBFB !important;
}

.text-gray02 {
    color: #ECEDEE !important;
}

.text-gray03 {
    color: #B8BCBF !important;
}

.slider-wrapper #nivoslider .nivo-desc {
    position: absolute;
    background-color: #121E28cc;
    padding: 24px 32px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 936px;
}

    .slider-wrapper #nivoslider .nivo-desc .html-name {
        font-size: 30px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 8px;
        color: #ffffff;
    }

    .slider-wrapper #nivoslider .nivo-desc .slide-br {
        display: none;
    }

    .slider-wrapper #nivoslider .nivo-desc .html-content {
        color: #ffffff;
        font-weight: 400;
        font-size: 16px;
    }

@media (max-width: 960px) {
    .slider-wrapper #nivoslider .nivo-desc {
        width: 100%;
        height: 100%;
        background-color: #121e28b3;
    }

        .slider-wrapper #nivoslider .nivo-desc .html-name {
            font-size: 26px;
        }
}

@media (max-width: 640px) {
    .slider-wrapper #nivoslider .nivo-desc .html-name {
        font-size: 22px;
    }

    .slider-wrapper #nivoslider .nivo-desc .html-content {
        font-size: 14px;
    }
}

.slider-wrapper .nivo-controlNav {
    display: none !important;
}

.slick-slide:focus {
    outline: none;
}

.slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 5rem;
}

    .slick-dots button {
        display: none;
    }

    .slick-dots li {
        width: 1.2rem;
        height: 1.2rem;
        border-radius: 50%;
        background-color: #D8D8D8;
        margin: 0 .8rem;
        display: inline-block;
        cursor: pointer;
    }

.slick-arrow {
    position: absolute;
    bottom: -1rem;
}

    .slick-arrow:focus {
        outline: none;
    }

    .slick-arrow.slick-prev {
        right: 10rem;
    }

    .slick-arrow.slick-next {
        right: 16px;
    }

.bg-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
	padding-bottom: 20px;
	
}
.leader-bg-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 20px;
    height: 100%;
}

.bg-img--elip {
    border-radius: 50%;
	height: 100%;
}

.bg-img__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bg-img img {
    position: absolute;
    width: 100%;
    /*height: 100%;*/
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

.bg-img--home-banner {
    padding-top: calc( 100% * 560 / 1440);
}

.bg-img--thumb-lg {
    padding-top: calc( 100% * 342 / 480);
}

.bg-img--thumb-md {
    padding-top: calc( 100% * 240 / 392);
}

.bg-img--banner {
    padding-top: 0;
    height: 480px;
}

.bg-img--43 {
    padding-top: calc( 100% * 3 / 4);
}

.bg-img--34 {
    padding-top: calc( 100% * 4 / 3);
}

.bg-img--23 {
    padding-top: calc( 100% * 3 / 2);
}

.bg-img--169 {
    padding-top: calc( 100% * 9 / 16);
}

.bg-img--32 {
    padding-top: calc( 100% * 2 / 3);
}

.bg-primary-dark {
    background-color: #0E2D80 !important;
    color: #ffffff;
}

.bg-primary {
    background-color: #154BEC !important;
    color: #ffffff;
}

.bg-secondary-orange {
    background-color: #FF611D !important;
    color: #ffffff;
}

.bg-secondary-green {
    background-color: #47D3D3 !important;
    color: #ffffff;
}

.bg-secondary-blue-sky {
    background-color: #0094FF !important;
    color: #ffffff;
}

.bg-secondary-yellow {
    background-color: #FFC003 !important;
    color: #ffffff;
}

.bg-secondary-red {
    background-color: #FF1919 !important;
    color: #ffffff;
}

.bg-secondary-blue-dark {
    background-color: #0257a8 !important;
    color: #ffffff;
}

.bg-secondary-blue {
    background-color: #0B2573 !important;
    color: #ffffff;
}

.bg-white {
    background-color: #ffffff !important;
    color: #ffffff;
}

.bg-gray04 {
    background-color: #71787E !important;
    color: #ffffff;
}

.bg-gray05 {
    background-color: #121E28 !important;
    color: #ffffff;
}

.bg-white {
    background-color: #ffffff !important;
    color: #121E28;
}

.bg-gray01 {
    background-color: #FAFBFB !important;
    color: #121E28;
}

.bg-gray02 {
    background-color: #ECEDEE !important;
    color: #121E28;
}

.bg-gray03 {
    background-color: #B8BCBF !important;
    color: #121E28;
}

.btn {
    border-radius: 0;
    border: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    padding: 14px 30px;
    font-size: 16px;
}

    .btn i {
        margin-right: .5em;
    }

.btn--radius {
    border-radius: 50px;
}

.btn--sm {
    padding: .67em 1.33em;
    font-size: 1.2rem;
}

.btn--md {
    padding: .5em 2em;
    font-size: 1.8rem;
}

.btn--lg {
    padding: 1.5em 2em;
    font-size: 1.8rem;
}

.btn--circle {
    border-radius: 99999px;
}

.btn.btn--red {
    background-color: #FF1919;
    color: #ffffff;
}

.box {
    padding-top: 8px;
    padding-bottom: 8px;
    border-left: solid 2px #ECEDEE;
}

    .box .box-title {
        margin-bottom: 12px;
    }

        .box .box-title i {
            color: #FF1919;
            font-size: 16px;
        }

.box-vertical {
    background-color: #FAFBFB;
}

    .box-vertical .box-vertical--txt {
        padding: 10px 10px 10px 10px;
    }

        .box-vertical .box-vertical--txt h3 {
            margin-bottom: 16px;
        }

        .box-vertical .box-vertical--txt p {
            margin-bottom: 12px;
        }

        .box-vertical .box-vertical--txt a i {
            font-size: 14px;
        }

.box-radius {
    border-radius: 12px;
    overflow: hidden;
}

.box-links .box-links-title {
    font-weight: bold;
    margin-bottom: 12px;
}

.box-links ul {
    padding-left: 20px;
}

    .box-links ul li::marker {
        color: #154BEC;
    }

    .box-links ul li a {
        color: #154BEC;
        font-weight: 500;
        line-height: 28px;
    }

.box-info {
    padding: 24px;
    background-color: #FAFBFB;
}

    .box-info .box-info-name {
        font-weight: 500;
        font-size: 22px;
        margin-bottom: 8px;
        color: #0E2D80;
    }

    .box-info .box-info-des {
        font-weight: 500;
        font-size: 16px;
    }

.box-logo {
    text-align: center;
}

.box-logo-img {
    background-color: #FAFBFB;
    position: relative;
    padding-top: calc(100% / 264 * 112);
    border-radius: 4px;
    overflow: hidden;
    transition: all .2s;
}

.box-logo-img--inner {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 18px;
    top: 0;
    left: 0;
}

    .box-logo-img--inner img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.box-logo-name {
    font-weight: 500;
    font-size: 16px;
    padding: 12px 18px;
}

.box-logo:hover .box-logo-img {
    background: #FFFFFF;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.box-overlay {
    position: relative;
}

    .box-overlay:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        top: 0;
        left: 0;
        z-index: 2;
    }

    .box-overlay .box-overlay--caption {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px;
        color: #ffffff;
    }

.breadcrumb {
    list-style: none;
    padding: 28px 0;
}

    .breadcrumb li {
        display: inline-block;
        color: #0E2D80;
        font-weight: 500;
        font-size: 14px;
    }

        .breadcrumb li a {
            color: #0E2D80;
            font-weight: 400;
        }

@media (max-width: 960px) {
    .breadcrumb {
        display: none;
    }
}

.yinfoc-dropdown {
    position: relative;
    cursor: pointer;
}

    .yinfoc-dropdown .yinfoc-dropdown-content {
        position: absolute;
        z-index: 99;
        background-color: #ffffff;
        visibility: hidden;
        opacity: 0;
        top: calc(100% + 10px);
        right: 0;
        transform: translateY(10px);
        transition: all .3s;
        z-index: 99;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        min-width: 100px;
        padding: 8px 0;
    }

        .yinfoc-dropdown .yinfoc-dropdown-content.show {
            visibility: inherit;
            opacity: 1;
            transform: translateY(0px);
        }

    .yinfoc-dropdown:hover .yinfoc-dropdown-content {
        visibility: inherit;
        opacity: 1;
        transform: translateY(0px);
    }

    .yinfoc-dropdown .yinfoc-dropdown-item {
        padding: 8px 18px;
        color: #71787E;
        cursor: pointer;
        font-weight: normal;
    }

        .yinfoc-dropdown .yinfoc-dropdown-item:hover {
            background-color: #FAFBFB;
            color: #121E28;
        }

.box-icon {
    display: flex !important;
    align-items: center;
}

    .box-icon img {
        width: 32px;
        height: 32px;
        margin-right: 16px;
        object-fit: cover;
    }

    .box-icon .box-icon--txt {
        width: calc(100% - 32px - 16px);
        font-weight: 400;
        font-size: 16px !important;
    }

    .box-icon.box-icon--lg {
        align-items: flex-start;
    }

        .box-icon.box-icon--lg img {
            width: 48px;
            height: 48px;
        }

        .box-icon.box-icon--lg .box-icon--txt {
            width: calc(100% - 48px - 16px);
            font-weight: 600;
        }

            .box-icon.box-icon--lg .box-icon--txt p {
                font-size: 12px;
                margin-top: 4px;
                font-weight: 400;
            }

.tab-bar {
    display: flex;
}

    .tab-bar.tab-bar--full .tab-bar-item {
        flex: 1 0 auto;
        padding: 16px;
    }

        .tab-bar.tab-bar--full .tab-bar-item.active {
            position: relative;
        }

            .tab-bar.tab-bar--full .tab-bar-item.active:after {
                content: "";
                position: absolute;
                bottom: -12px;
                left: 50%;
                transform: translateX(-50%);
                border-top: 6px solid #FF1919;
                border-right: 8px solid transparent;
                border-left: 8px solid transparent;
                border-bottom: 6px solid transparent;
                z-index: 2;
            }

            .tab-bar.tab-bar--full .tab-bar-item.active .tab-bar-item--title {
                color: #FF1919;
            }

    .tab-bar.tab-bar--news {
        width: 100%;
        overflow-x: auto;
    }

        .tab-bar.tab-bar--news .tab-bar--inner {
            display: flex;
        }

        .tab-bar.tab-bar--news .tab-bar-item {
            font-weight: 500;
            padding: 10px 0;
            margin-right: 32px;
        }

            .tab-bar.tab-bar--news .tab-bar-item:last-child {
                margin-right: 0;
            }

            .tab-bar.tab-bar--news .tab-bar-item.active {
                border-bottom: none;
                background-color: transparent;
                color: #0094FF;
                position: relative;
            }

                .tab-bar.tab-bar--news .tab-bar-item.active:after {
                    content: "";
                    width: 50%;
                    height: 2px;
                    background-color: #0094FF;
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: 0;
                }

@media (max-width: 960px) {
    .tab-bar.tab-bar--news .tab-bar-item {
        margin-right: 24px;
    }
}

.tab-bar-item {
    text-align: center;
    padding: 12px 20px;
    box-sizing: border-box;
    cursor: pointer;
}

    .tab-bar-item .tab-bar-item--title {
        font-weight: 600;
        font-size: 24px;
    }

    .tab-bar-item small {
        font-size: 14px;
    }

    .tab-bar-item.active {
        border-bottom: solid 2px #FF1919;
        background-color: #FAFBFB;
    }

.tab-content-item {
    padding: 40px 0;
    display: none;
}

    .tab-content-item.active {
        display: block;
    }

.y-collapse {
    background-color: #FAFBFB;
}

    .y-collapse .y-collapse-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
        cursor: pointer;
    }

    .y-collapse .y-collapse-icon {
        margin-left: 10px;
    }

    .y-collapse .y-collapse-title--txt {
        font-weight: 600;
        font-size: 20px;
        color: #0E2D80;
        display: flex;
        align-items: center;
    }

    .y-collapse .y-collapse-title--tool a {
        color: #121E28;
        opacity: 0.5;
        font-weight: 600;
        padding: 10px 0;
    }

        .y-collapse .y-collapse-title--tool a:hover {
            color: #FF611D;
        }

    .y-collapse .y-collapse-content {
        padding: 0 24px;
        visibility: hidden;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: all .5s ease-out;
    }

    .y-collapse .y-collapse-content-insert {
        margin-top: 16px;
    }

    .y-collapse.open .y-collapse-content {
        padding-bottom: 24px;
        visibility: inherit;
        opacity: 1;
        height: auto;
    }

    .y-collapse.open .y-collapse-icon {
        transform: rotate(180deg);
    }

@media (max-width: 640px) {
    .y-collapse .y-collapse-title {
        display: block;
    }

    .y-collapse .y-collapse-title--tool {
        margin-top: 10px;
    }

    .y-collapse .y-collapse-title--txt {
        width: 100%;
        justify-content: space-between;
        font-size: 18px;
        align-items: flex-start;
    }

    .y-collapse .y-collapse-icon {
        margin-top: 5px;
    }
}

.semester .semester-title {
    font-size: 18px;
    font-weight: bold;
}

.subject {
    padding: 12px 20px;
    background: #FAFBFB;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    transition: all .3s;
}

    .subject .subject-name {
        font-weight: 500;
        font-size: 16px;
    }

    .subject ul.subject-info {
        display: flex;
        flex-wrap: wrap;
        padding-left: 1em;
    }

        .subject ul.subject-info li {
            width: 50%;
            margin-top: 8px;
            font-size: 14px;
        }

    .subject:hover {
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
    }

.leader {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-img {
    width: 280px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 24px;
    height: 300px;
	
}

.leader-name {
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    color: #0E2D80;
    margin-bottom: 4px;
}

.leader-des {
    font-weight: 500;
    font-size: 14px;
}

.leader-link {
    font-weight: 500;
    font-size: 16px;
    color: #154BEC;
    margin-top: 16px;
    display: flex;
    align-items: center;
}

    .leader-link i {
        margin-left: 8px;
    }

.new-box {
    color: #71787E;
}

    .new-box .new-tag {
        font-size: 12px;
        text-transform: uppercase;
        padding: 4px 8px;
        display: inline-block;
        margin-bottom: 8px;
        border-radius: 4px;
    }

    .new-box .new-title {
        font-weight: bold;
        color: #121E28;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .new-box .new-info p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .new-box .new-note {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .new-box .new-note--item {
        margin-right: 16px;
        font-size: 14px;
    }

        .new-box .new-note--item:last-child {
            margin-right: 0;
        }

@media (max-width: 640px) {
    .new-box .new-title {
        font-size: 18px !important;
    }

    .new-box .new-note--item {
        font-size: 12px;
        margin-right: 10px;
    }
}

.new-box.new-vertical .new-box--img {
    position: relative;
}

.new-box.new-vertical .new-tag {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 30px;
    padding: 6px 12px;
    border-radius: 0;
}

.new-box.new-vertical .new-title.new-title--sm {
    font-weight: 500;
    font-size: 18px;
}

@media (max-width: 960px) {
    .new-box.new-vertical .new-title.new-title--sm {
        font-size: 16px !important;
    }
}

.new-box.new-horizontal {
    display: flex;
    align-items: flex-start;
}

    .new-box.new-horizontal .new-box--img {
        width: 120px;
    }

        .new-box.new-horizontal .new-box--img.new-box--img-lg {
            width: 184px;
        }

    .new-box.new-horizontal .new-info {
        width: calc(100% - 120px - 16px);
        margin-left: 16px;
    }

        .new-box.new-horizontal .new-info .new-title {
            font-size: 16px;
            color: #121E28;
            margin-bottom: 8px;
            font-weight: 500;
        }

@media (max-width: 640px) {
    .new-box.new-horizontal .new-title {
        font-size: 14px !important;
    }

    .new-box.new-horizontal .new-box--img.new-box--img-lg {
        width: 120px;
    }
}

.new-box.new-overlay {
    position: relative;
}

    .new-box.new-overlay:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 57.86%, rgba(0, 0, 0, 0.8) 100%);
        top: 0;
        left: 0;
        z-index: 1;
    }

    .new-box.new-overlay .new-info {
        position: absolute;
        width: 100%;
        bottom: 0;
        z-index: 2;
        color: #ffffff;
    }

        .new-box.new-overlay .new-info .new-title {
            color: #ffffff;
            margin-bottom: 16px;
            font-size: 26px;
        }

            .new-box.new-overlay .new-info .new-title.new-title--sm {
                font-size: 18px;
                margin-bottom: 8px;
                font-weight: 500;
            }

        .new-box.new-overlay .new-info .new-tag {
            margin-bottom: 20px;
        }

.new-category-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .new-category-nav .new-category--title {
        margin-bottom: 0;
    }

    .new-category-nav .new-category--view-all {
        display: flex;
        align-items: center;
    }

        .new-category-nav .new-category--view-all i {
            margin-left: 8px;
        }

		
		.menu-item_left{
			    border-left: 1px solid #ffffff6b;
		}
		.menu-sub-item_cus{
			    width: calc(100% / 2)!important;
		}
.menu-item {
    color: #121E28;
}

    .menu-item > a {
        padding: 8px 12px;
        font-weight: 400;
    }

        .menu-item > a i {
            margin-right: 8px;
        }

        .menu-item > a .menu-item-btn {
            display: none;
        }

@media (max-width: 640px) {
    .menu-item > a {
        padding: 8px 10px;
    }
}

.menu-item.is-show-mb {
    display: none !important;
}

.menu-item:hover > a {
    color: #FFC003 !important;
}

.menu-item:hover .menu-sub {
    visibility: inherit;
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 640px) {
    .menu-item.is-show-mb {
        display: block !important;
    }
}

.menu-group-title{
    color:black;
}
.menu-sub {
    padding-top: 18px;
    position: absolute;
    width: 867px;
    z-index: 99;
    visibility: hidden;
    transform: translateY(10px);
    opacity: 0;
    transition: all .2s ease-in-out;
    left: 0px;
    box-shadow: 0px 2px 12px rgba(26, 27, 134, 0.1);
    max-height: 500px;
    /*overflow-y: hidden;*/
    overflow-y: hidden;
}

    .menu-sub.active {
        visibility: inherit;
        transform: translateY(0);
        opacity: 1;
    }

    .menu-sub .menu-sub--inner {
        text-align:start;
        background-color: #ffffff;
		padding: 20px 32px 20px 32px;
		display: flex;
        flex-wrap: wrap;
    }

        .menu-sub .menu-sub--inner .container {
            text-align:start;
            display: flex;
            flex-wrap: wrap;
        }

        .menu-sub .menu-sub--inner .menu-sub-item {
            width: calc(100% / 3);
            padding-right: 20px;
            margin-bottom: 10px;
            color: #121E28;
            font-weight: 500;
            font-size: 16px;
            display: block;
        }

            .menu-sub .menu-sub--inner .menu-sub-item i {
                margin-right: 5px;
            }

        .menu-sub .menu-sub--inner .menu-group {
            width: 25%;
        }

    .menu-sub.menu-sub--sm {
        width: 342px;
    }

        .menu-sub.menu-sub--sm .menu-sub-item {
            width: 100% !important;
        }

            .menu-sub.menu-sub--sm .menu-sub-item:last-child {
                margin-bottom: 0;
            }

    .menu-sub.menu-sub--link {
        width: 342px;
        box-shadow: 0px 2px 12px rgba(26, 27, 134, 0.1) !important;
        top: calc(100% + 5px) !important;
    }

        .menu-sub.menu-sub--link .menu-sub-item {
            width: 100% !important;
            margin-bottom: 15px;
        }

            .menu-sub.menu-sub--link .menu-sub-item:last-child {
                margin-bottom: 0;
            }

    .menu-sub.menu-sub--lg {
        width: 976px;
    }

    .menu-sub.menu-sub--full {
        width: 100%;
        box-shadow: 0px 2px 12px rgba(26, 27, 134, 0.1);
        border-top: solid 2px #B8BCBF;
    }

        .menu-sub.menu-sub--full .menu-sub--inner {
            padding: 20px;
        }

        .menu-sub.menu-sub--full .menu-group .menu-group-title {
            position: relative;
            z-index: 999;
            margin-bottom: 32px;
        }

            .menu-sub.menu-sub--full .menu-group .menu-group-title:after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -10px;
                height: 4px;
                width: 72px;
                background-color: #FF1919;
            }

        .menu-sub.menu-sub--full .menu-group .menu-sub-item {
            width: 100%;
            margin-bottom: 16px;
            padding-left: 0;
            font-size: 14px;
        }

    .menu-sub .list-img-box {
        width: 548px;
        display: flex;
        justify-content: space-between;
    }

        .menu-sub .list-img-box .img-box-v {
            width: 156px;
        }

    .menu-sub .list-link {
        width: calc(100% - 548px - 48px);
        margin-left: 48px;
    }

        .menu-sub .list-link a {
            display: block;
            font-weight: 600;
            margin-bottom: 20px;
        }

@media (max-width: 960px) {
    .menu-sub {
        display: none;
        max-height: inherit;
    }
}

.top_bar {
    height: 45px;
}

    .top_bar .user-avatar {
        width: 32px;
        height: 32px;
        background: #47D3D3;
        border-radius: 50%;
        position: relative;
        margin-left: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-weight: 600;
        font-size: 16px;
    }

        .top_bar .user-avatar::after {
            position: absolute;
            width: 36px;
            height: 36px;
            content: "";
            background-color: #47d3d34d;
            top: -2px;
            left: -2px;
            border-radius: 50%;
        }

    .top_bar .menu-item > a {
        color: #ffffff;
    }

    .top_bar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    .top_bar .top_bar--left, .top_bar .top_bar--right {
        margin: 0 -12px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .top_bar .btn {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid #FFFFFF;
        box-sizing: border-box;
        border-radius: 4px;
        padding: 2px 7px;
        font-weight: 500;
        font-size: 14px;
    }

        .top_bar .btn:hover {
            background-color: #ffffff;
            color: #0E2D80;
        }

    .top_bar .lang {
        position: relative;
        height: 20px;
        margin-right: 24px;
        margin-left: 12px;
        cursor: pointer;
    }

        .top_bar .lang img {
            height: 20px;
            width: 28px;
            object-fit: cover;
            display: block;
        }

        .top_bar .lang .lang-select {
            width: 172px;
        }

            .top_bar .lang .lang-select.show {
                visibility: inherit;
                opacity: 1;
                transform: translateY(0px);
            }

            .top_bar .lang .lang-select .lang-option {
                display: flex;
                align-items: center;
                width: 150px;
                padding: 10px 16px;
                padding-right: 28px;
                position: relative;
                color: #71787E;
            }

                .top_bar .lang .lang-select .lang-option img {
                    margin-right: 8px;
                }

                .top_bar .lang .lang-select .lang-option i {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    right: 8px;
                    width: 12px;
                }

                .top_bar .lang .lang-select .lang-option.active {
                    color: #0E2D80;
                }

@media (max-width: 960px) {
    .top_bar .menu-sub {
        display: none;
    }

    .top_bar .top_bar--right {
        display: none;
    }
}

.nav-bar {
    background-color: #154BEC;
    color: #ffffff;
}

    .nav-bar .nav-bar--inner {
        overflow-x: auto;
    }

    .nav-bar ul {
        text-align: center;
        margin: auto;
    }

        .nav-bar ul li {
            display: inline-block;
            font-weight: 500;
            color: #ffffff;
        }

            .nav-bar ul li a {
                color: #ffffff;
                padding: 18px 20px;
                display: block;
            }

                .nav-bar ul li a i {
                    display: none;
                }

    .nav-bar .nav-bar--select, .nav-bar .nav-title {
        display: none;
    }

@media (max-width: 960px) {
    .nav-bar ul {
        text-align: left;
        width: 100%;
    }

    .nav-bar .nav-bar--select, .nav-bar .nav-title {
        display: block;
    }

    .nav-bar .nav-bar--select {
        font-weight: 500;
        font-size: 18px;
        padding: 12px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .nav-bar .nav-bar--select i {
            margin-left: 8px;
        }

    .nav-bar .nav-bar--inner {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background-color: #000000cc;
        align-items: center;
        padding: 0 20px;
    }

        .nav-bar .nav-bar--inner .nav-bar--items {
            width: 100%;
            background-color: #ffffff;
            border-radius: 8px;
        }

        .nav-bar .nav-bar--inner .nav-title {
            padding: 16px 20px;
            color: #000000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 16px;
            font-weight: 500;
        }

        .nav-bar .nav-bar--inner ul {
            overflow-x: hidden;
            max-height: 80vh;
            overflow-y: auto;
        }

            .nav-bar .nav-bar--inner ul li {
                display: block;
                color: #71787E;
            }

                .nav-bar .nav-bar--inner ul li a {
                    color: #71787E;
                    padding: 16px 20px;
                    border-top: solid 1px #ECEDEE;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                }

                .nav-bar .nav-bar--inner ul li.active {
                    color: #0E2D80;
                }

                    .nav-bar .nav-bar--inner ul li.active a {
                        color: #0E2D80;
                    }

                        .nav-bar .nav-bar--inner ul li.active a i {
                            display: block;
                        }

        .nav-bar .nav-bar--inner.active {
            display: flex;
        }
}

header {
    background-size: cover;
    background-position: right;
    background-color: #ffffff;
    position: relative;
}

    header .user-info {
        display: none;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px !important;
        height: 56px;
        background-color: #FAFBFB;
        font-weight: 500;
    }

        header .user-info span {
            color: #FF611D;
        }

        header .user-info .user-avatar {
            width: 32px;
            height: 32px;
            background: #47D3D3;
            border-radius: 50%;
            position: relative;
            margin-right: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 600;
            font-size: 16px;
        }

            header .user-info .user-avatar::after {
                position: absolute;
                width: 36px;
                height: 36px;
                content: "";
                background-color: #47d3d34d;
                top: -2px;
                left: -2px;
                border-radius: 50%;
            }

    header .header {
         padding-top: 20px; 
         padding-bottom: 20px; 
		    /*padding-bottom: 45px;
    padding-top: 40px;*/
        display: flex;
        align-items: center;
    }

        header .header .header-left {
            width: 50%;
        }

        header .header .logo {
            display: flex;
            align-items: center;
        }

            header .header .logo img {
                width: 100px;
                height: 100px;
                object-fit: fill;
                margin-right: 15px;
            }

            header .header .logo h1 {
                text-transform: uppercase;
                font-size: 25px;
                letter-spacing: 0.01em;
            }

            header .header .logo .logo-light {
                display: none;
            }

        header .header .slogan {
            font-family: 'Noto Serif', serif;
            width: 50%;
            text-align: center;
            font-size: 24px;
            text-transform: uppercase;
            font-weight: 700;
        }

        header .header .header-tool {
            display: none;
        }

    header .menu .menu-sub {
        top: calc(100% - 2px);
        margin-top: 0;
        padding-top: 0;
        box-shadow: none;
        border-bottom: solid 5px #FF611D;
    }

    header .menu .logo-white {
        display: none !important;
    }

        header .menu .logo-white img {
            height: 47px;
            width: auto;
        }

    header .menu.sticky {
        position: fixed;
        width: 100%;
        top: 0;
        background-color: #FF611D;
        z-index: 99;
    }

        header .menu.sticky .logo-white {
            display: inline-block !important;
        }

        header .menu.sticky .menu-item > a {
            color: #ffffff !important;
            display: block;
        }

        header .menu.sticky .menu-items {
            display: flex;
            align-items: center;
        }

        header .menu.sticky .search-box .search-icon {
            color: #ffffff !important;
        }

        header .menu.sticky .search-box input {
            background-color: transparent;
            color: #ffffff !important;
        }

            header .menu.sticky .search-box input::placeholder {
                color: #ffffff !important;
            }

            header .menu.sticky .search-box input:focus {
                border: none;
                outline: none;
                background-color: #00000050;
                header .menu.menu-mobile--open .menu-inne
            }

    header .menu .menu-inner {
        border-top: 2px solid #ff000082;
        font-weight: 600;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .menu .menu-items {
        list-style: none;
        padding: 0;
        margin: 0 -20px;
    }

        header .menu .menu-items > li {
            display: inline-block;
            text-transform: uppercase;
        }

            header .menu .menu-items > li:hover > a {
                color: #154BEC !important;
            }

            header .menu .menu-items > li > a {
                padding: 8px 10px;
                color: #121E28;
            }

                header .menu .menu-items > li > a:hover {
                    color: #154BEC !important;
                }

            header .menu .menu-items > li.active > a {
                color: #154BEC !important;
            }

    header .menu .search-box {
        position: relative;
    }

        header .menu .search-box .search-icon {
            position: absolute;
            top: 9px;
            left: 12px;
            color: #121E28;
        }

        header .menu .search-box input {
            border: none;
            height: 36px;
            padding-left: 40px;
            width: 240px;
            background-color: transparent;
        }

            header .menu .search-box input:focus {
                border: none;
                outline: none;
                background-color: #ECEDEE;
            }

@media (max-width: 960px) {
    #search_div_button{
        display:none!important;
    }
    header .user-info {
        display: flex;
    }

    header .header {
        display: block;
    }

        header .header .header-left {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header .header .slogan {
            width: 100%;
            margin-top: 20px;
        }

        header .header .logo {
            width: 60%;
            font-size: 14px;
        }

            header .header .logo img {
                height: 48px;
                width: 48px;
            }

            header .header .logo h1 {
                font-size: 18px;
                margin-bottom: 0;
            }

        header .header .header-tool {
            width: calc(40%);
            display: flex;
            align-items: center;
            justify-content: flex-end;
            font-size: 24px;
        }

            header .header .header-tool .search-box-mb {
                position: relative;
                display: block;
                width: 100%;
                height: 100%;
                transition: all .3s;
            }

                header .header .header-tool .search-box-mb i {
                    position: absolute;
                    top: 8px;
                    left: 10px;
                }

                header .header .header-tool .search-box-mb input {
                    display: none;
                }

                header .header .header-tool .search-box-mb.active {
                    background-color: #ECEDEE;
                    width: 200px;
                    transform: translateX(calc(-50% + 8px));
                }

                    header .header .header-tool .search-box-mb.active input {
                        display: block;
                        width: 100%;
                        height: 100%;
                        border: none;
                        background-color: transparent;
                        padding-left: 45px;
                    }

                        header .header .header-tool .search-box-mb.active input:focus {
                            outline: none;
                        }

    header .menu {
        display: none;
    }

    header .lang {
        position: relative;
        height: 20px;
        margin-right: 12px;
        margin-left: 12px;
        cursor: pointer;
        color: #121E28;
    }

        header .lang img {
            height: 20px;
            width: 28px;
            object-fit: cover;
            display: block;
        }

        header .lang .lang-select {
            position: absolute;
            padding: 8px;
            background-color: #ffffff;
            visibility: hidden;
            opacity: 0;
            top: calc(100% + 5px);
            right: 0;
            transform: translateY(10px);
            transition: all .3s;
            z-index: 100;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }

            header .lang .lang-select.show {
                visibility: inherit;
                opacity: 1;
                transform: translateY(0px);
            }

            header .lang .lang-select .lang-option {
                display: flex;
                align-items: center;
                width: 150px;
                padding: 5px;
                padding-right: 28px;
                position: relative;
                color: #71787E;
                font-size: 14px;
            }

                header .lang .lang-select .lang-option img {
                    margin-right: 8px;
                }

                header .lang .lang-select .lang-option i {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    right: 8px;
                    width: 12px;
                }

                header .lang .lang-select .lang-option.active {
                    color: #0E2D80;
                }

    header.sticky {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 99;
        background-color: #FF611D;
        background-image: none !important;
        color: #ffffff;
    }

        header.sticky .header {
            padding-top: 12px;
            padding-bottom: 12px;
            background-color: #FF611D;
        }

            header.sticky .header .search-box-mb.active {
                background-color: #d0541f !important;
            }

                header.sticky .header .search-box-mb.active input {
                    color: #ffffff;
                }

                    header.sticky .header .search-box-mb.active input::placeholder {
                        color: #ffffff;
                    }

            header.sticky .header .lang > img {
                border: solid thin #ffffff;
            }

            header.sticky .header .search-button {
                color: #ffffff;
            }

            header.sticky .header .menu-button span {
                background-color: #ffffff;
            }

        header.sticky .slogan {
            display: none;
        }

        header.sticky .menu.menu-mobile--open {
            top: 72px;
            height: calc(100vh - 72px);
        }

    header .menu.menu-mobile--open {
        display: block;
        position: fixed;
        top: 140px;
        left: 0;
        width: 100%;
        height: calc(100vh - 140px);
        background-color: #ffffff;
        padding-bottom: 20px;
        z-index: 99;
    }

        header .menu.menu-mobile--open .search-box {
            display: none;
        }

        header .menu.menu-mobile--open .menu-inner {
            height: 100%;
            display: block;
            overflow-x: hidden;
            overflow-y: auto;
            padding: 0;
        }

            header .menu.menu-mobile--open .menu-inner .menu-items {
                margin: 0;
            }

                header .menu.menu-mobile--open .menu-inner .menu-items .menu-item {
                    display: block !important;
                    border-top: solid thin #ECEDEE;
                }

                    header .menu.menu-mobile--open .menu-inner .menu-items .menu-item > a {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        padding: 0 16px !important;
                        height: 56px;
                        box-sizing: border-box;
                        position: relative;
                        font-size: 16px;
                    }

                        header .menu.menu-mobile--open .menu-inner .menu-items .menu-item > a .menu-item-btn {
                            width: 40px;
                            height: 100%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            position: absolute;
                            right: 0;
                            top: 0;
                        }

                    header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub {
                        display: none;
                        opacity: 1;
                        visibility: inherit;
                        transform: translateY(0);
                        position: relative;
                        border-bottom: none;
                        border-top: none !important;
                    }

                        header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner {
                            display: block;
                            padding: 0;
                        }

                            header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .container {
                                padding: 0;
                            }

                            header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-group {
                                width: 100% !important;
                            }

                                header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-group * {
                                    width: 100% !important;
                                }

                            header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-group-title {
                                padding: 16px;
                                margin-bottom: 0;
                                border-top: solid 1px #ECEDEE !important;
                            }

                                header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-group-title:after {
                                    display: none;
                                }

                            header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-sub-item {
                                width: 100% !important;
                                display: block !important;
                                margin-bottom: 0;
                                padding: 16px 32px;
                                background-color: #FAFBFB;
                                border-top: solid 1px #ECEDEE;
                            }

                                header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-sub-item img {
                                    display: none;
                                }

                                header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-sub-item .box-icon--txt {
                                    font-size: 14px !important;
                                    font-weight: 500;
                                }

                                    header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-sub-item .box-icon--txt p {
                                        display: none;
                                    }

                                header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-sub-item .trust-badge-item {
                                    padding: 0;
                                }

                                    header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-sub-item .trust-badge-item p {
                                        display: none;
                                    }

                                    header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-sub-item .trust-badge-item .trust-badge-item--title {
                                        margin: 0;
                                        font-size: 14px;
                                        font-weight: 500;
                                    }

                                header .menu.menu-mobile--open .menu-inner .menu-items .menu-item .menu-sub .menu-sub--inner .menu-sub-item * {
                                    width: 100% !important;
                                    text-align: left;
                                }

                    header .menu.menu-mobile--open .menu-inner .menu-items .menu-item.active .menu-sub {
                        display: block;
                    }

                    header .menu.menu-mobile--open .menu-inner .menu-items .menu-item.active .menu-item-btn {
                        transform: rotate(90deg);
                    }
}

@media (max-width: 640px) {
    header .logo > div {
        display: none;
    }

    header .logo {
        width: 63px;
    }

        header .logo img {
            height: 48px;
            width: 48px;
        }
}
@media (max-width: 512px) {
    header .header .logo {
        width: 20%!important;
    }
    header .header .header-tool  {
        width: 80% !important;
    }
}
#dnn_dnnSearchMB_txtSearch {
    height: 40px;
    border: 1px solid white;
}
.menu-button, .search-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

    .menu-button span {
        width: 20px;
        height: 2px;
        border-radius: 5px;
        background-color: #231F20;
        margin-bottom: 4px;
        transition: all .3s;
    }

        .menu-button span:last-child {
            margin-bottom: 0;
        }

    .menu-button.active {
        margin-top: -5px;
    }

        .menu-button.active span {
            width: 24px;
            display: none;
        }

            .menu-button.active span:first-child {
                display: block;
                transform: rotate(45deg) translateY(4px) translateX(4px);
            }

            .menu-button.active span:last-child {
                display: block;
                transform: rotate(-45deg);
            }

.banner .banner-inner {
    display: flex;
    flex-direction: column-reverse;
    color: #ffffff;
}

.banner .banner-caption {
    background-color: #121E28cc;
    padding: 24px 32px;
    width: 936px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

    .banner .banner-caption .banner-caption--txt {
        width: calc(100% - 148px);
        padding-right: 20px;
    }

        .banner .banner-caption .banner-caption--txt h3 {
            margin-bottom: 8px;
        }

    .banner .banner-caption .btn {
        width: 148px;
    }

@media (min-width: 1200px) {
    .banner {
        height: 450px;
        padding-top: 0;
    }
}

@media (min-width: 1400px) {
    .banner {
        height: 560px;
        padding-top: 0;
    }
}

@media (max-width: 960px) {
    .banner {
        height: 320px;
        padding-top: 0;
    }

        .banner .container {
            max-width: 100%;
            height: 100%;
            padding: 0;
        }

        .banner .banner-caption {
            width: 100%;
            height: 100%;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            background-color: #121e28b3;
        }

            .banner .banner-caption .banner-caption--txt {
                margin-bottom: 32px;
                width: 100%;
            }
}

@media (max-width: 640px) {
    .banner {
        padding-top: calc(100% * 360 / 375);
    }
}

#home-slide {
    position: relative;
}

    #home-slide .slick-arrow {
        position: absolute;
        bottom: 50%;
        transform: translateY(50%);
        width: 48px;
        height: 48px;
        background-color: #121E28;
        color: #ffffff;
        border-radius: 50%;
        opacity: 0.5;
        z-index: 2;
        border: none;
        cursor: pointer;
        font-size: 20px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

        #home-slide .slick-arrow:hover {
            background-color: #0E2D80;
            opacity: 1;
        }

@media (max-width: 960px) {
    #home-slide .slick-arrow {
        display: none !important;
    }
}

#home-slide .slide-next {
    right: 32px;
}

#home-slide .slide-prev {
    left: 32px;
}

.majors {
    border-top: solid 4px #FF1919;
    background: #ffffff;
    padding: 32px 40px;
    margin-top: -152px;
}

@media (max-width: 640px) {
    .majors {
        padding: 24px 20px;
    }
}

.majors .majors-title {
    margin-bottom: 44px;
}

@media (max-width: 640px) {
    .majors .majors-title {
        margin-bottom: 24px;
    }
}

.majors .majors-body {
    border-bottom: solid 1px #ECEDEE;
}

.majors .majors-footer {
    padding-top: 28px;
}

    .majors .majors-footer a {
        font-weight: 500;
        font-size: 22px;
    }

        .majors .majors-footer a i {
            font-size: 18px;
        }

@media (max-width: 640px) {
    .majors .majors-footer a {
        font-size: 18px;
    }
}

.majors-item {
    margin-bottom: 24px;
}

.section-study .study-header {
    margin-bottom: 30px;
}

.section-study .study-item .bg-img {
    z-index: 0;
}

.section-study .study-item .study-item--txt {
    padding: 20px 16px;
    background-color: #ffffff;
    margin: -60px 20px 0 20px;
    position: relative;
    box-shadow: 0px 2px 2px rgba(18, 30, 40, 0.1);
}

    .section-study .study-item .study-item--txt h5 {
        margin-bottom: 16px;
    }

    .section-study .study-item .study-item--txt ul {
        list-style: none;
        font-weight: 500;
    }

        .section-study .study-item .study-item--txt ul li a {
            padding: 8px 0;
            display: block;
        }

            .section-study .study-item .study-item--txt ul li a i {
                color: #FF1919;
                margin-right: 8px;
            }

@media (min-width: 640px) and (max-width: 960px) {
    .section-study ul {
        display: flex;
        flex-wrap: wrap;
    }

        .section-study ul li {
            width: 50%;
            padding-right: 24px;
        }
}
.section-gray {
    background-color: #fafbfb;
    padding-bottom: 20px;
}
.section-links {
    padding-top: 48px;
}
.bg-img--banner {
    padding-top: 0;
    height: 480px;
}
.section-notes {
    padding-top: 20px;
}

    .section-notes .note-item {
        text-align: center;
    }

        .section-notes .note-item img {
            margin-bottom: 32px;
            height: 72px;
        }

@media (max-width: 960px) {
    .section-notes .note-item {
        margin-bottom: 32px;
    }

        .section-notes .note-item img {
            margin-bottom: 16px;
        }
}

.members .members-header {
    margin-bottom: 32px;
}

.members .members-item {
    text-align: center;
    padding: 32px 0;
}

    .members .members-item .member-image {
        padding: 0 30px;
        margin-bottom: 24px;
    }

    .members .members-item .member-txt p {
        margin-bottom: 24px;
        font-size: 14px;
    }

.recruitment h2 {
    margin-bottom: 24px;
    color: #ffffff;
}

.recruitment p {
    margin-bottom: 32px;
}

.recruitment .btn {
    width: 212px;
    font-weight: 600;
}

@media (max-width: 960px) {
    .recruitment .bg-img {
        height: 360px;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .recruitment .bg-img {
        height: 400px;
        padding: 0;
    }

        .recruitment .bg-img .bg-img__inner {
            background-color: #00000099;
        }
}

.new-item {
    margin-top: 32px;
}

    .new-item .new-info {
        margin-top: 20px;
        font-size: 14px;
    }

        .new-item .new-info .new-date i {
            margin-right: 8px;
        }

.contacts h4 {
    margin-bottom: 0;
    width: 276px;
}

.contacts .contact-list {
    width: calc(100% - 250px);
}

    .contacts .contact-list .contact-item {
        color: #154BEC;
        display: inline-flex;
        align-items: center;
        margin-right: 86px;
    }

        .contacts .contact-list .contact-item i {
            font-size: 24px;
            margin-right: 18px;
        }

@media (max-width: 960px) {
    .contacts .container {
        flex-direction: column;
    }

    .contacts h4 {
        width: 100%;
        text-align: center;
    }

    .contacts .contact-list {
        width: 100%;
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .contacts .contact-list .contact-item {
            width: 25%;
            margin: 0;
        }
}

@media (max-width: 640px) {
    .contacts .contact-list {
        width: 100%;
        margin-top: 16px;
        display: flex;
        justify-content: space-between;
    }

        .contacts .contact-list .contact-item {
            width: 50%;
            margin: 0;
            margin-bottom: 16px;
        }
}

.contact-note table {
    border: none;
}

    .contact-note table tr td {
        border: none;
        padding-right: 16px;
        height: 40px;
    }

        .contact-note table tr td:first-child {
            font-weight: bold;
        }

.contact-note a {
    color: #154BEC;
}

.page-title {
    font-weight: 600;
    color: #0E2D80;
    position: relative;
    font-size: 30px;
    line-height: 1.5;
}

    .page-title:after {
        position: absolute;
        content: "";
        width: 32px;
        height: 4px;
        background-color: #FF1919;
        left: 0;
        top: -16px;
    }

@media (max-width: 960px) {
    .page-title {
        font-weight: 600;
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-weight: 500;
        font-size: 24px;
    }
}

.page-des {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .page-des {
        font-size: 14px;
        line-height: 24px;
    }
}

.page-header {
    min-height: 240px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 50px;
    overflow: hidden;
}

    .page-header .container {
        height: 100%;
    }

    .page-header .page-header--inner {
        height: 100%;
    }

    .page-header .page-caption {
        background-color: #ffffffcc;
        display: inline-block;
        max-width: 100%;
        min-width: 400px;
    }

        .page-header .page-caption .page-caption--inner {
            position: relative;
            padding: 44px 32px 24px 32px;
        }

            .page-header .page-caption .page-caption--inner:after {
                content: "";
                position: absolute;
                top: -24px;
                right: -24px;
                width: 24px;
                height: 48px;
                background-color: #FF1919;
            }

            .page-header .page-caption .page-caption--inner:before {
                content: "";
                position: absolute;
                top: -24px;
                right: 0;
                width: 24px;
                height: 24px;
                background-color: #FF1919;
            }

        .page-header .page-caption.page-caption-dark {
            background-color: #121E28cc;
            color: #ffffff;
        }

            .page-header .page-caption.page-caption-dark .page-title {
                color: #ffffff;
            }

@media (max-width: 960px) {
    .page-header.page-header--dark {
        padding: 0;
    }

        .page-header.page-header--dark .container {
            padding: 0;
            max-width: 100%;
        }

    .page-header .page-caption.page-caption-dark .page-caption--inner {
        padding: 80px 40px 46px 40px;
    }

        .page-header .page-caption.page-caption-dark .page-caption--inner:before {
            display: none;
        }
}

@media (max-width: 640px) {
    .page-header {
        padding: 0;
        min-height: auto;
    }

        .page-header .container {
            padding: 0;
            max-width: 100%;
        }

        .page-header .page-caption .page-caption--inner {
            padding: 72px 20px 48px 20px;
        }

            .page-header .page-caption .page-caption--inner:before {
                display: none;
            }
}

.page-header-normal {
    padding-top: 44px;
    background-color: #FAFBFB;
}

.trust-badge-item {
    text-align: center;
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
}

    .trust-badge-item p {
        flex: 1 0 auto;
    }

    .trust-badge-item img {
        height: 80px;
    }
	.trust-badge-item h5 {
			text-align: center;
			padding-top: 20px;
		}
		.trust-badge-item a {
			text-align: center;
			
		}
    .trust-badge-item .trust-badge-img--circle {
        width: 240px;
        border-radius: 50%;
        overflow: hidden;
    }

    .trust-badge-item .trust-badge-item--title {
        margin-top: 20px;
        margin-bottom: 8px;
    }

    .trust-badge-item .trust-badge-item--link {
        display: inline-block;
        margin-top: 16px;
    }

.trust-badge-item--sm {
    padding: 0 15px;
}

    .trust-badge-item--sm img {
        height: 56px;
    }

    .trust-badge-item--sm .trust-badge-item--title {
        font-size: 16px;
        margin-top: 12px;
    }

    .trust-badge-item--sm p {
        font-size: 12px;
        font-weight: 400;
    }

.img-box {
    display: flex;
    align-items: center;
}

    .img-box .img-box--img {
        width: 40%;
    }

.img-box .img-box--txt {
    width: 60%;
    padding: 0 10px 300px 10px;
    font-weight: 500;
    text-align: justify;
    vertical-align: top;
}

@media (max-width: 640px) {
    .img-box {
        flex-direction: column-reverse;
    }

        .img-box .img-box--img,
        .img-box .img-box--txt {
            width: 100%;
        }

        .img-box .img-box--img {
            margin-bottom: 32px;
        }

        .img-box .img-box--txt {
            padding: 0 30px;
        }
}

.img-box-h {
    margin-bottom: 72px;
}

.img-box-v {
    display: block;
}

    .img-box-v img {
        border-radius: 4px;
    }

    .img-box-v .img-box--txt {
        margin-top: 10px;
        font-weight: 600;
        color: #121E28;
    }

.structure-item {
    background-color: #FAFBFB;
    padding: 24px;
}

footer {
    padding-top: 64px;
}

.footer {
    padding-bottom: 40px;
}

    .footer .contact-group a {
        display: block;
        padding: 6px 0;
    }

    .footer .contact-group i {
        margin-right: 12px;
    }

    .footer .footer-links {
        margin-top: 32px;
    }

        .footer .footer-links a {
            color: #ffffff;
            display: block;
            padding: 8px 0;
            font-size: 14px;
        }L

            .footer .footer-links a:hover {
                text-decoration: underline;
            }

        .footer .footer-links .footer-links-title {
            text-transform: uppercase;
            color: #FFFFFF;
            opacity: 0.5;
            margin-bottom: 16px;
        }

    .footer iframe {
        width: 100%;
        height: 220px;
        margin-top: 60px;
    }

.copyright {
    padding: 16px;
    color: #ffffff70;
    text-align: center;
    border-top: solid 1px #ffffff30;
}
a, a:visited {
    
    text-decoration: none;
    outline: 0;
}

.dnn_search {
    display: none;
}

.searchInputContainer {
    background: #ecedee;
    border: 1px solid #bdbdbd;
}