.btn {
    border-width: 2px;
}

body {
    font-family: Jost;
}

.display-1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    line-height: 1.1;
}

.display-1>.mbr-iconfont {
    font-size: 3.125rem;
}

.display-2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    line-height: 1.1;
}

.display-2>.mbr-iconfont {
    font-size: 2.75rem;
}

.display-4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.display-4>.mbr-iconfont {
    font-size: 1.25rem;
}

.display-5 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
}

.display-5>.mbr-iconfont {
    font-size: 2rem;
}

.display-7 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    line-height: 1.5;
}

.display-7>.mbr-iconfont {
    font-size: 1.625rem;
}

/* ---- Fluid typography for mobile devices ---- */

/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */

/* 100vw - current viewport width */

/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */

/* 0.65 - min scale variable, may vary */

@media (max-width: 992px) {
    .display-1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 1.75rem;
        font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.1 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-2 {
        font-size: 1.76rem;
        font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-4 {
        font-size: 0.8rem;
        font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-5 {
        font-size: 1.28rem;
        font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-7 {
        font-size: 1.04rem;
        font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
    }
}

/* Buttons */

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-md {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-lg {
    padding: 1rem 2.6rem;
    border-radius: 4px;
}

.bg-primary {
    background-color: #111111 !important;
}

.bg-success {
    background-color: #40b0bf !important;
}

.bg-info {
    background-color: #683dae !important;
}

.bg-warning {
    background-color: #ffe161 !important;
}

.bg-danger {
    background-color: #e43f3f !important;
}

.btn-primary,
.btn-primary:active {
    background-color: #111111 !important;
    border-color: #111111 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
    color: #ffffff !important;
    background-color: #000000 !important;
    border-color: #000000 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff !important;
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.btn-secondary,
.btn-secondary:active {
    background-color: #ff6666 !important;
    border-color: #ff6666 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
    color: #ffffff !important;
    background-color: #ff0f0f !important;
    border-color: #ff0f0f !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #ffffff !important;
    background-color: #ff0f0f !important;
    border-color: #ff0f0f !important;
}

.btn-info,
.btn-info:active {
    background-color: #683dae !important;
    border-color: #683dae !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
    color: #ffffff !important;
    background-color: #42266e !important;
    border-color: #42266e !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-info.disabled,
.btn-info:disabled {
    color: #ffffff !important;
    background-color: #42266e !important;
    border-color: #42266e !important;
}

.btn-success,
.btn-success:active {
    background-color: #40b0bf !important;
    border-color: #40b0bf !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
    color: #ffffff !important;
    background-color: #2a747e !important;
    border-color: #2a747e !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-success.disabled,
.btn-success:disabled {
    color: #ffffff !important;
    background-color: #2a747e !important;
    border-color: #2a747e !important;
}

.btn-warning,
.btn-warning:active {
    background-color: #ffe161 !important;
    border-color: #ffe161 !important;
    color: #614f00 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
    color: #0a0800 !important;
    background-color: #ffd10a !important;
    border-color: #ffd10a !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #614f00 !important;
    background-color: #ffd10a !important;
    border-color: #ffd10a !important;
}

.btn-danger,
.btn-danger:active {
    background-color: #e43f3f !important;
    border-color: #e43f3f !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
    color: #ffffff !important;
    background-color: #b31919 !important;
    border-color: #b31919 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #ffffff !important;
    background-color: #b31919 !important;
    border-color: #b31919 !important;
}

.btn-white,
.btn-white:active {
    background-color: #fafafa !important;
    border-color: #fafafa !important;
    color: #7a7a7a !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
    color: #4f4f4f !important;
    background-color: #cfcfcf !important;
    border-color: #cfcfcf !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-white.disabled,
.btn-white:disabled {
    color: #7a7a7a !important;
    background-color: #cfcfcf !important;
    border-color: #cfcfcf !important;
}

.btn-black,
.btn-black:active {
    background-color: #232323 !important;
    border-color: #232323 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
    color: #ffffff !important;
    background-color: #000000 !important;
    border-color: #000000 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-black.disabled,
.btn-black:disabled {
    color: #ffffff !important;
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.btn-primary-outline,
.btn-primary-outline:active {
    background-color: transparent !important;
    border-color: #111111;
    color: #111111;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
    color: #000000 !important;
    background-color: transparent !important;
    border-color: #000000 !important;
    box-shadow: none !important;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
    color: #ffffff !important;
    background-color: #111111 !important;
    border-color: #111111 !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active {
    background-color: transparent !important;
    border-color: #ff6666;
    color: #ff6666;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
    color: #ff0f0f !important;
    background-color: transparent !important;
    border-color: #ff0f0f !important;
    box-shadow: none !important;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
    color: #ffffff !important;
    background-color: #ff6666 !important;
    border-color: #ff6666 !important;
}

.btn-info-outline,
.btn-info-outline:active {
    background-color: transparent !important;
    border-color: #683dae;
    color: #683dae;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
    color: #42266e !important;
    background-color: transparent !important;
    border-color: #42266e !important;
    box-shadow: none !important;
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
    color: #ffffff !important;
    background-color: #683dae !important;
    border-color: #683dae !important;
}

.btn-success-outline,
.btn-success-outline:active {
    background-color: transparent !important;
    border-color: #40b0bf;
    color: #40b0bf;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
    color: #2a747e !important;
    background-color: transparent !important;
    border-color: #2a747e !important;
    box-shadow: none !important;
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
    color: #ffffff !important;
    background-color: #40b0bf !important;
    border-color: #40b0bf !important;
}

.btn-warning-outline,
.btn-warning-outline:active {
    background-color: transparent !important;
    border-color: #ffe161;
    color: #ffe161;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
    color: #ffd10a !important;
    background-color: transparent !important;
    border-color: #ffd10a !important;
    box-shadow: none !important;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #614f00 !important;
    background-color: #ffe161 !important;
    border-color: #ffe161 !important;
}

.btn-danger-outline,
.btn-danger-outline:active {
    background-color: transparent !important;
    border-color: #e43f3f;
    color: #e43f3f;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
    color: #b31919 !important;
    background-color: transparent !important;
    border-color: #b31919 !important;
    box-shadow: none !important;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
    color: #ffffff !important;
    background-color: #e43f3f !important;
    border-color: #e43f3f !important;
}

.btn-black-outline,
.btn-black-outline:active {
    background-color: transparent !important;
    border-color: #232323;
    color: #232323;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
    color: #000000 !important;
    background-color: transparent !important;
    border-color: #000000 !important;
    box-shadow: none !important;
}

.btn-black-outline.disabled,
.btn-black-outline:disabled {
    color: #ffffff !important;
    background-color: #232323 !important;
    border-color: #232323 !important;
}

.btn-white-outline,
.btn-white-outline:active {
    background-color: transparent !important;
    border-color: #fafafa;
    color: #fafafa;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
    color: #cfcfcf !important;
    background-color: transparent !important;
    border-color: #cfcfcf !important;
    box-shadow: none !important;
}

.btn-white-outline.disabled,
.btn-white-outline:disabled {
    color: #7a7a7a !important;
    background-color: #fafafa !important;
    border-color: #fafafa !important;
}

.text-primary {
    color: #111111 !important;
}

.text-secondary {
    color: #ff6666 !important;
}

.text-success {
    color: #40b0bf !important;
}

.text-info {
    color: #683dae !important;
}

.text-warning {
    color: #ffe161 !important;
}

.text-danger {
    color: #e43f3f !important;
}

.text-white {
    color: #fafafa !important;
}

.text-black {
    color: #232323 !important;
}

a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
    color: #000000 !important;
}

a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
    color: #ff0000 !important;
}

a.text-success:hover,
a.text-success:focus,
a.text-success.active {
    color: #266a73 !important;
}

a.text-info:hover,
a.text-info:focus,
a.text-info.active {
    color: #3b2362 !important;
}

a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
    color: #facb00 !important;
}

a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
    color: #a61717 !important;
}

a.text-white:hover,
a.text-white:focus,
a.text-white.active {
    color: #c7c7c7 !important;
}

a.text-black:hover,
a.text-black:focus,
a.text-black.active {
    color: #000000 !important;
}

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
    position: relative;
    background-image: transparent;
    background-size: 10000px 2px;
    background-repeat: no-repeat;
    background-position: 0px 1.2em;
    background-position: -10000px 1.2em;
}

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
    transition: background-position 2s ease-in-out;
    background-image: linear-gradient(currentColor 50%, currentColor 50%);
    background-position: 0px 1.2em;
}

.nav-tabs .nav-link.active {
    color: #111111;
}

.nav-tabs .nav-link:not(.active) {
    color: #232323;
}

.alert-success {
    background-color: #70c770;
}

.alert-info {
    background-color: #683dae;
}

.alert-warning {
    background-color: #ffe161;
}

.alert-danger {
    background-color: #e43f3f;
}

.mbr-gallery-filter li.active .btn {
    background-color: #111111;
    border-color: #111111;
    color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
    box-shadow: none;
}

a,
a:hover {
    color: #111111;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #c3c3c3;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #a0d8df;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #ad92d9;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #fdf2f2;
}

/* Scroll to top button*/

.form-control {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.form-control>.mbr-iconfont {
    font-size: 1.25rem;
}

.form-control:hover,
.form-control:focus {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
    border-color: #111111 !important;
}

.form-control:-webkit-input-placeholder {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.form-control:-webkit-input-placeholder>.mbr-iconfont {
    font-size: 1.25rem;
}

blockquote {
    border-color: #111111;
}

/* Forms */

.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #111111;
    color: #ffffff;
}

.jq-number__spin {
    transition: 0.25s ease;
}

.jq-number__spin:hover {
    border-color: #111111;
}

.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
    transition: 0.4s;
    border-top-color: #353535;
    border-bottom-color: #353535;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
    border-top-color: #111111;
    border-bottom-color: #111111;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
    color: #ffffff !important;
    background-color: #111111 !important;
    box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
    color: #000000 !important;
    background: #ff6666 !important;
    box-shadow: none !important;
}

.lazy-bg {
    background-image: none !important;
}

.lazy-placeholder:not(section),
.lazy-none {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: auto;
}

iframe.lazy-placeholder,
.lazy-placeholder:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: transparent no-repeat center;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23111111' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

section.lazy-placeholder:after {
    opacity: 0.5;
}

body {
    overflow-x: hidden;
}

a {
    transition: color 0.6s;
}

.cid-uWzdMG8G1u {
    z-index: 1000;
    width: 100%;
    position: relative;
}

.cid-uWzdMG8G1u .dropdown-item:before {
    font-family: Moririse2 !important;
    content: "\e966";
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    margin-right: 0.5rem;
    line-height: 1;
    font-size: inherit;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    transform: scale(0, 1);
    transition: all 0.25s ease-in-out;
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .navbar-toggler {
        transform: scale(0.8);
    }
}

.cid-uWzdMG8G1u .navbar-brand {
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

.cid-uWzdMG8G1u .navbar-brand img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0px !important;
}

.cid-uWzdMG8G1u .navbar-brand .navbar-caption {
    line-height: inherit !important;
}

.cid-uWzdMG8G1u .navbar-brand .navbar-logo a {
    outline: none;
}

.cid-uWzdMG8G1u .navbar-nav {
    margin: auto;
    margin-left: 0;
    margin-left: auto;
}

.cid-uWzdMG8G1u .navbar-nav .nav-item {
    padding: 0 !important;
    transition: .3s all !important;
}

.cid-uWzdMG8G1u .navbar-nav .nav-item .nav-link {
    padding: 16px !important;
    margin: 0 !important;
    border-radius: 1rem !important;
    transition: .3s all !important;
    border-radius: 4px !important;
}

.cid-uWzdMG8G1u .navbar-nav .nav-item .nav-link:hover {
    background-color: rgba(27, 31, 10, 0.06);
}

.cid-uWzdMG8G1u .navbar-nav .open .nav-link::after {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .cid-uWzdMG8G1u .navbar-nav .open .nav-link::before {
        content: "";
        width: 100%;
        height: 20px;
        top: 100%;
        background: transparent;
        position: absolute;
    }
}

.cid-uWzdMG8G1u .navbar-nav .dropdown-item {
    padding: 12px !important;
    border-radius: 0.5rem !important;
    margin: 0 8px !important;
    transition: .3s all !important;
    border-radius: 4px !important;
}

.cid-uWzdMG8G1u .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
}

@media (min-width: 992px) {
    .cid-uWzdMG8G1u .navbar-nav {
        padding-left: 1.5rem;
    }
}

.cid-uWzdMG8G1u .nav-link {
    width: fit-content;
    position: relative;
}

.cid-uWzdMG8G1u .navbar-logo {
    padding-left: 2rem;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .navbar-logo {
        padding-left: 1rem;
    }
}

.cid-uWzdMG8G1u .navbar-caption {
    padding-left: 1rem;
    padding-right: .5rem;
}

@media (min-width: 767px) {
    .cid-uWzdMG8G1u .navbar-caption {
        padding-left: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .nav-dropdown {
        padding-bottom: 0.5rem;
    }
}

.cid-uWzdMG8G1u .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    transition: .3s all;
}

.cid-uWzdMG8G1u .container {
    display: flex;
    height: 90px;
    padding: 0.5rem 0.6rem;
    flex-wrap: nowrap;
    left: 0;
    right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100vw;
    margin-top: 1rem;
    background-color: #005d94;
    box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
    border-radius: 4px !important;
}

@media (max-width: 992px) {
    .cid-uWzdMG8G1u .container {
        padding-right: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .container {
        width: 95%;
        height: 56px !important;
        padding-right: 1rem;
        margin-top: 0rem;
    }
}

.cid-uWzdMG8G1u .iconfont-wrapper {
    color: #254983 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-uWzdMG8G1u .dropdown-menu {
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 100%;
    padding: 12px 4px !important;
    border-radius: 1.5rem;
    transition: .3s all !important;
    min-width: auto;
    background: #005d94;
    border-radius: 4px !important;
}

.cid-uWzdMG8G1u .nav-item:focus,
.cid-uWzdMG8G1u .nav-link:focus {
    outline: none;
}

.cid-uWzdMG8G1u .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

.cid-uWzdMG8G1u .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}

.cid-uWzdMG8G1u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}

.cid-uWzdMG8G1u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}

.cid-uWzdMG8G1u .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-uWzdMG8G1u .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-uWzdMG8G1u .navbar {
    min-height: 90px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.cid-uWzdMG8G1u .navbar.opened {
    transition: all 0.3s;
}

.cid-uWzdMG8G1u .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}

.cid-uWzdMG8G1u .navbar .navbar-logo img {
    width: auto;
}

.cid-uWzdMG8G1u .navbar .navbar-collapse {
    z-index: 1;
    justify-content: flex-end;
}

.cid-uWzdMG8G1u .navbar.collapsed {
    justify-content: center;
}

.cid-uWzdMG8G1u .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

.cid-uWzdMG8G1u .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}

.cid-uWzdMG8G1u .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-uWzdMG8G1u .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-uWzdMG8G1u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-uWzdMG8G1u .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-uWzdMG8G1u .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-uWzdMG8G1u .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .navbar {
        min-height: 72px;
    }
    .cid-uWzdMG8G1u .navbar .navbar-logo img {
        height: 2rem !important;
    }
}

@media (max-width: 991px) {
    .cid-uWzdMG8G1u .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-uWzdMG8G1u .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-uWzdMG8G1u .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-uWzdMG8G1u .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }
    .cid-uWzdMG8G1u .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-uWzdMG8G1u .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 10px;
    }
    .cid-uWzdMG8G1u .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-uWzdMG8G1u .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-uWzdMG8G1u .navbar.navbar-short .navbar-logo img {
    height: 2rem;
}

.cid-uWzdMG8G1u .dropdown-item.active,
.cid-uWzdMG8G1u .dropdown-item:active {
    background-color: transparent;
}

.cid-uWzdMG8G1u .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-uWzdMG8G1u .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

.cid-uWzdMG8G1u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}

.cid-uWzdMG8G1u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #005d94;
}

.cid-uWzdMG8G1u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 105%;
    transform: none;
    top: -12px;
}

.cid-uWzdMG8G1u .navbar .dropdown.open>.dropdown-menu {
    display: flex;
}

.cid-uWzdMG8G1u ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-uWzdMG8G1u .navbar-buttons {
    text-align: center;
    min-width: 140px;
}

@media (max-width: 992px) {
    .cid-uWzdMG8G1u .navbar-buttons {
        text-align: left;
    }
}

.cid-uWzdMG8G1u button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}

.cid-uWzdMG8G1u nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-uWzdMG8G1u nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-uWzdMG8G1u nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-uWzdMG8G1u nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-uWzdMG8G1u .navbar-dropdown {
    padding: 0 1rem;
}

.cid-uWzdMG8G1u a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-uWzdMG8G1u .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media (max-width: 992px) {
    .cid-uWzdMG8G1u .icons-menu {
        justify-content: flex-start;
        margin-bottom: .5rem;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .cid-uWzdMG8G1u .navbar {
        height: 70px;
    }
    .cid-uWzdMG8G1u .navbar.opened {
        height: auto;
    }
    .cid-uWzdMG8G1u .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu {
    display: none;
    width: max-content;
    max-width: 500px !important;
    transform: translateX(-50%);
    top: calc(100% + 20px);
    left: 50%;
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown-item {
    line-height: 1 !important;
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(-90deg);
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(0deg);
}

.cid-uWzdMG8G1u .mbr-section-btn {
    margin: -0.6rem -0.6rem;
}

.cid-uWzdMG8G1u .navbar-toggler {
    margin-left: 12px;
    margin-right: 8px;
    order: 1000;
}

@media (max-width: 991px) {
    .cid-uWzdMG8G1u .navbar-brand {
        margin-right: auto;
    }
    .cid-uWzdMG8G1u .navbar-collapse {
        z-index: -1 !important;
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        padding: 1rem;
        border-radius: 1.5rem;
        background: #005d94;
        backdrop-filter: blur(8px);
        border-radius: 4px !important;
    }
    .cid-uWzdMG8G1u .navbar-nav .nav-item .nav-link::after {
        margin-left: 10px;
    }
    .cid-uWzdMG8G1u .navbar-nav .dropdown-item:hover {
        background-color: rgba(27, 31, 10, 0.06);
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu {
        max-width: 100% !important;
        transform: translateX(0);
        top: 10px;
        left: 0;
        padding: 8px !important;
        border-radius: 1rem;
        background-color: rgba(27, 31, 10, 0.04) !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown-item {
        padding: 8px !important;
        line-height: 1 !important;
        margin-bottom: 4px !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown .dropdown-item {
        align-items: center;
        display: flex;
        height: max-content !important;
        min-height: max-content !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown .dropdown-item::after {
        display: inline-block;
        position: static;
        margin-left: 0.5rem;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        transition: .3s all;
        transform: rotate(0deg);
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown.open .dropdown-item::after {
        transform: rotate(180deg);
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown-submenu {
        position: static;
        width: 100%;
        max-width: 100% !important;
        transform: translateX(0) !important;
        top: 0;
        left: 0;
        padding: 8px !important;
        border-radius: 1rem;
        background-color: rgba(27, 31, 10, 0.04) !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown.open>.dropdown-menu {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .cid-uWzdMG8G1u .navbar-collapse {
        padding: 1rem;
    }
}

.cid-uHis611o7e {
    padding-top: 10rem;
    padding-bottom: 7rem;
    background-color: #ffffff;
}

.cid-uHis611o7e .mbr-section-subtitle {
    text-align: center;
}

.cid-u8dueNJJ86 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #000000;
}

.cid-u8dueNJJ86 .row-links {
    width: 100%;
    justify-content: center;
}

.cid-u8dueNJJ86 .social-row {
    width: 100%;
    justify-content: center;
}

.cid-u8dueNJJ86 .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cid-u8dueNJJ86 .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.cid-u8dueNJJ86 .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}

.cid-u8dueNJJ86 .media-container-row .foot-menu li p {
    margin: 0;
}

.cid-u8dueNJJ86 .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cid-u8dueNJJ86 .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}

.cid-u8dueNJJ86 .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}

.cid-u8dueNJJ86 .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}

.cid-u8dueNJJ86 .media-container-row .social-list a:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .cid-u8dueNJJ86 .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-u8dueNJJ86 .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

.cid-u8dueNJJ86 .media-container-row .row-copirayt p {
    width: 100%;
}

.cid-uHisjNUfCS {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.cid-uHisjNUfCS .mbr-section-subtitle {
    text-align: center;
}

.cid-uHisjNUfCS .mbr-text {
    text-align: center;
}

.cid-uHisjQBLaL {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #000000;
}

.cid-uHisjQBLaL .row-links {
    width: 100%;
    justify-content: center;
}

.cid-uHisjQBLaL .social-row {
    width: 100%;
    justify-content: center;
}

.cid-uHisjQBLaL .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cid-uHisjQBLaL .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.cid-uHisjQBLaL .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}

.cid-uHisjQBLaL .media-container-row .foot-menu li p {
    margin: 0;
}

.cid-uHisjQBLaL .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cid-uHisjQBLaL .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}

.cid-uHisjQBLaL .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}

.cid-uHisjQBLaL .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}

.cid-uHisjQBLaL .media-container-row .social-list a:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .cid-uHisjQBLaL .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-uHisjQBLaL .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

.cid-uHisjQBLaL .media-container-row .row-copirayt p {
    width: 100%;
}

.cid-uHisvpJLbn {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.cid-uHisvpJLbn .mbr-section-subtitle {
    text-align: center;
}

.cid-uHisvtpNj9 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #000000;
}

.cid-uHisvtpNj9 .row-links {
    width: 100%;
    justify-content: center;
}

.cid-uHisvtpNj9 .social-row {
    width: 100%;
    justify-content: center;
}

.cid-uHisvtpNj9 .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cid-uHisvtpNj9 .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.cid-uHisvtpNj9 .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}

.cid-uHisvtpNj9 .media-container-row .foot-menu li p {
    margin: 0;
}

.cid-uHisvtpNj9 .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cid-uHisvtpNj9 .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}

.cid-uHisvtpNj9 .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}

.cid-uHisvtpNj9 .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}

.cid-uHisvtpNj9 .media-container-row .social-list a:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .cid-uHisvtpNj9 .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-uHisvtpNj9 .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

.cid-uHisvtpNj9 .media-container-row .row-copirayt p {
    width: 100%;
}

.cid-uWzdMG8G1u {
    z-index: 1000;
    width: 100%;
    position: relative;
}

.cid-uWzdMG8G1u .dropdown-item:before {
    font-family: Moririse2 !important;
    content: "\e966";
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    margin-right: 0.5rem;
    line-height: 1;
    font-size: inherit;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    transform: scale(0, 1);
    transition: all 0.25s ease-in-out;
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .navbar-toggler {
        transform: scale(0.8);
    }
}

.cid-uWzdMG8G1u .navbar-brand {
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

.cid-uWzdMG8G1u .navbar-brand img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0px !important;
}

.cid-uWzdMG8G1u .navbar-brand .navbar-caption {
    line-height: inherit !important;
}

.cid-uWzdMG8G1u .navbar-brand .navbar-logo a {
    outline: none;
}

.cid-uWzdMG8G1u .navbar-nav {
    margin: auto;
    margin-left: 0;
    margin-left: auto;
}

.cid-uWzdMG8G1u .navbar-nav .nav-item {
    padding: 0 !important;
    transition: .3s all !important;
}

.cid-uWzdMG8G1u .navbar-nav .nav-item .nav-link {
    padding: 16px !important;
    margin: 0 !important;
    border-radius: 1rem !important;
    transition: .3s all !important;
    border-radius: 4px !important;
}

.cid-uWzdMG8G1u .navbar-nav .nav-item .nav-link:hover {
    background-color: rgba(27, 31, 10, 0.06);
}

.cid-uWzdMG8G1u .navbar-nav .open .nav-link::after {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .cid-uWzdMG8G1u .navbar-nav .open .nav-link::before {
        content: "";
        width: 100%;
        height: 20px;
        top: 100%;
        background: transparent;
        position: absolute;
    }
}

.cid-uWzdMG8G1u .navbar-nav .dropdown-item {
    padding: 12px !important;
    border-radius: 0.5rem !important;
    margin: 0 8px !important;
    transition: .3s all !important;
    border-radius: 4px !important;
}

.cid-uWzdMG8G1u .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
}

@media (min-width: 992px) {
    .cid-uWzdMG8G1u .navbar-nav {
        padding-left: 1.5rem;
    }
}

.cid-uWzdMG8G1u .nav-link {
    width: fit-content;
    position: relative;
}

.cid-uWzdMG8G1u .navbar-logo {
    padding-left: 2rem;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .navbar-logo {
        padding-left: 1rem;
    }
}

.cid-uWzdMG8G1u .navbar-caption {
    padding-left: 1rem;
    padding-right: .5rem;
}

@media (min-width: 767px) {
    .cid-uWzdMG8G1u .navbar-caption {
        padding-left: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .nav-dropdown {
        padding-bottom: 0.5rem;
    }
}

.cid-uWzdMG8G1u .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    transition: .3s all;
}

.cid-uWzdMG8G1u .container {
    display: flex;
    height: 90px;
    padding: 0.5rem 0.6rem;
    flex-wrap: nowrap;
    left: 0;
    right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100vw;
    margin-top: 1rem;
    background-color: #005d94;
    box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
    border-radius: 4px !important;
}

@media (max-width: 992px) {
    .cid-uWzdMG8G1u .container {
        padding-right: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .container {
        width: 95%;
        height: 56px !important;
        padding-right: 1rem;
        margin-top: 0rem;
    }
}

.cid-uWzdMG8G1u .iconfont-wrapper {
    color: #254983 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-uWzdMG8G1u .dropdown-menu {
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 100%;
    padding: 12px 4px !important;
    border-radius: 1.5rem;
    transition: .3s all !important;
    min-width: auto;
    background: #005d94;
    border-radius: 4px !important;
}

.cid-uWzdMG8G1u .nav-item:focus,
.cid-uWzdMG8G1u .nav-link:focus {
    outline: none;
}

.cid-uWzdMG8G1u .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

.cid-uWzdMG8G1u .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}

.cid-uWzdMG8G1u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}

.cid-uWzdMG8G1u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}

.cid-uWzdMG8G1u .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-uWzdMG8G1u .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-uWzdMG8G1u .navbar {
    min-height: 90px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.cid-uWzdMG8G1u .navbar.opened {
    transition: all 0.3s;
}

.cid-uWzdMG8G1u .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}

.cid-uWzdMG8G1u .navbar .navbar-logo img {
    width: auto;
}

.cid-uWzdMG8G1u .navbar .navbar-collapse {
    z-index: 1;
    justify-content: flex-end;
}

.cid-uWzdMG8G1u .navbar.collapsed {
    justify-content: center;
}

.cid-uWzdMG8G1u .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

.cid-uWzdMG8G1u .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}

.cid-uWzdMG8G1u .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-uWzdMG8G1u .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-uWzdMG8G1u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-uWzdMG8G1u .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-uWzdMG8G1u .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-uWzdMG8G1u .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 767px) {
    .cid-uWzdMG8G1u .navbar {
        min-height: 72px;
    }
    .cid-uWzdMG8G1u .navbar .navbar-logo img {
        height: 2rem !important;
    }
}

@media (max-width: 991px) {
    .cid-uWzdMG8G1u .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-uWzdMG8G1u .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-uWzdMG8G1u .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-uWzdMG8G1u .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }
    .cid-uWzdMG8G1u .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-uWzdMG8G1u .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 10px;
    }
    .cid-uWzdMG8G1u .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-uWzdMG8G1u .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-uWzdMG8G1u .navbar.navbar-short .navbar-logo img {
    height: 2rem;
}

.cid-uWzdMG8G1u .dropdown-item.active,
.cid-uWzdMG8G1u .dropdown-item:active {
    background-color: transparent;
}

.cid-uWzdMG8G1u .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-uWzdMG8G1u .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

.cid-uWzdMG8G1u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}

.cid-uWzdMG8G1u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #005d94;
}

.cid-uWzdMG8G1u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 105%;
    transform: none;
    top: -12px;
}

.cid-uWzdMG8G1u .navbar .dropdown.open>.dropdown-menu {
    display: flex;
}

.cid-uWzdMG8G1u ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-uWzdMG8G1u .navbar-buttons {
    text-align: center;
    min-width: 140px;
}

@media (max-width: 992px) {
    .cid-uWzdMG8G1u .navbar-buttons {
        text-align: left;
    }
}

.cid-uWzdMG8G1u button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}

.cid-uWzdMG8G1u button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}

.cid-uWzdMG8G1u nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-uWzdMG8G1u nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-uWzdMG8G1u nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-uWzdMG8G1u nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-uWzdMG8G1u .navbar-dropdown {
    padding: 0 1rem;
}

.cid-uWzdMG8G1u a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-uWzdMG8G1u .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media (max-width: 992px) {
    .cid-uWzdMG8G1u .icons-menu {
        justify-content: flex-start;
        margin-bottom: .5rem;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .cid-uWzdMG8G1u .navbar {
        height: 70px;
    }
    .cid-uWzdMG8G1u .navbar.opened {
        height: auto;
    }
    .cid-uWzdMG8G1u .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu {
    display: none;
    width: max-content;
    max-width: 500px !important;
    transform: translateX(-50%);
    top: calc(100% + 20px);
    left: 50%;
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown-item {
    line-height: 1 !important;
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(-90deg);
}

.cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(0deg);
}

.cid-uWzdMG8G1u .mbr-section-btn {
    margin: -0.6rem -0.6rem;
}

.cid-uWzdMG8G1u .navbar-toggler {
    margin-left: 12px;
    margin-right: 8px;
    order: 1000;
}

@media (max-width: 991px) {
    .cid-uWzdMG8G1u .navbar-brand {
        margin-right: auto;
    }
    .cid-uWzdMG8G1u .navbar-collapse {
        z-index: -1 !important;
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        padding: 1rem;
        border-radius: 1.5rem;
        background: #005d94;
        backdrop-filter: blur(8px);
        border-radius: 4px !important;
    }
    .cid-uWzdMG8G1u .navbar-nav .nav-item .nav-link::after {
        margin-left: 10px;
    }
    .cid-uWzdMG8G1u .navbar-nav .dropdown-item:hover {
        background-color: rgba(27, 31, 10, 0.06);
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu {
        max-width: 100% !important;
        transform: translateX(0);
        top: 10px;
        left: 0;
        padding: 8px !important;
        border-radius: 1rem;
        background-color: rgba(27, 31, 10, 0.04) !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown-item {
        padding: 8px !important;
        line-height: 1 !important;
        margin-bottom: 4px !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown .dropdown-item {
        align-items: center;
        display: flex;
        height: max-content !important;
        min-height: max-content !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown .dropdown-item::after {
        display: inline-block;
        position: static;
        margin-left: 0.5rem;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        transition: .3s all;
        transform: rotate(0deg);
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown.open .dropdown-item::after {
        transform: rotate(180deg);
    }
    .cid-uWzdMG8G1u .navbar .dropdown>.dropdown-menu .dropdown-submenu {
        position: static;
        width: 100%;
        max-width: 100% !important;
        transform: translateX(0) !important;
        top: 0;
        left: 0;
        padding: 8px !important;
        border-radius: 1rem;
        background-color: rgba(27, 31, 10, 0.04) !important;
    }
    .cid-uWzdMG8G1u .navbar .dropdown.open>.dropdown-menu {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .cid-uWzdMG8G1u .navbar-collapse {
        padding: 1rem;
    }
}

.cid-uVxPMYoZYa {
    padding-top: 8rem;
    padding-bottom: 0rem;
    background-color: #000000;
}

.cid-uVxPMYoZYa .mbr-fallback-image.disabled {
    display: none;
}

.cid-uVxPMYoZYa .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uVxPMYoZYa .mbr-section-title {
    color: #ffffff;
}

.cid-uJaHJgJG0d {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-uJaHJgJG0d .mbr-fallback-image.disabled {
    display: none;
}

.cid-uJaHJgJG0d .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uJaHJgJG0d .mbr-section-subtitle {
    color: #700909;
}

.cid-uJaHJgJG0d .mbr-section-title {
    color: #005d94;
}

.cid-uJan1j4mPt {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

.cid-uJan1j4mPt .mbr-fallback-image.disabled {
    display: none;
}

.cid-uJan1j4mPt .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .cid-uJan1j4mPt .image-wrapper {
        margin-bottom: 2rem;
    }
}

.cid-uJan1j4mPt .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .cid-uJan1j4mPt .text-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .cid-uJan1j4mPt .text-wrapper {
        margin-bottom: 2rem;
    }
}

.cid-uJan1j4mPt .mbr-section-title {
    color: #000000;
    text-align: center;
}

.cid-uJan1j4mPt .mbr-text,
.cid-uJan1j4mPt .mbr-section-btn {
    text-align: left;
    color: #000000;
}

.cid-uJarB1Hw6c {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uJarB1Hw6c .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uJarB1Hw6c .mbr-text {
    color: #fafafa;
}

.cid-uHhrmXnmp6 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-uHhrmXnmp6 img,
.cid-uHhrmXnmp6 .item-img {
    width: 100%;
}

.cid-uHhrmXnmp6 .item:focus,
.cid-uHhrmXnmp6 span:focus {
    outline: none;
}

.cid-uHhrmXnmp6 .item {
    cursor: pointer;
    margin-bottom: 2rem;
}

.cid-uHhrmXnmp6 .item-wrapper {
    border: 2px solid #232323;
    border-style: dashed;
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

@media (min-width: 992px) {
    .cid-uHhrmXnmp6 .item-wrapper .item-content {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .cid-uHhrmXnmp6 .item-wrapper .item-content {
        padding: 1rem;
    }
}

.cid-uHhrmXnmp6 .mbr-section-btn {
    margin-top: auto !important;
}

.cid-uHhrmXnmp6 .mbr-section-title {
    color: #232323;
}

.cid-uHhrmXnmp6 .mbr-text,
.cid-uHhrmXnmp6 .mbr-section-btn {
    text-align: center;
}

.cid-uHhrmXnmp6 .item-title {
    text-align: center;
}

.cid-uHhrmXnmp6 .item-subtitle {
    text-align: center;
}

.cid-uJarCaCPut {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uJarCaCPut .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uJarCaCPut .mbr-text {
    color: #fafafa;
}

.cid-uVxDvzkGWf {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

.cid-uVxDvzkGWf .mbr-fallback-image.disabled {
    display: none;
}

.cid-uVxDvzkGWf .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uVxDvzkGWf .card-wrapper {
    background: #c5e6f9;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .cid-uVxDvzkGWf .card-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cid-uVxDvzkGWf .card-wrapper {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .cid-uVxDvzkGWf .card-wrapper {
        padding: 4rem;
    }
}

.cid-uVxDvzkGWf .mbr-text,
.cid-uVxDvzkGWf .mbr-section-btn {
    color: #000000;
}

.cid-uVxDvzkGWf .card-title,
.cid-uVxDvzkGWf .card-box {
    text-align: left;
    color: #000000;
}

.cid-uJarD2TIB0 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uJarD2TIB0 .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uJarD2TIB0 .mbr-text {
    color: #fafafa;
}

.cid-tmMb4o0soG {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

.cid-tmMb4o0soG .mbr-text {
    text-align: left;
}

.cid-v5w8dV4j1S {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-v5w8dV4j1S .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-v5w8dV4j1S .mbr-text {
    color: #ffffff;
}

.cid-v66iQB9YID {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-v66iQB9YID .mbr-fallback-image.disabled {
    display: none;
}

.cid-v66iQB9YID .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-v66iQB9YID .item-wrapper {
    border-radius: 4px;
    background: #fafafa;
}

@media (min-width: 992px) {
    .cid-v66iQB9YID .item-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .cid-v66iQB9YID .item-wrapper {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

.cid-v66iQB9YID .row {
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .cid-v66iQB9YID .row .row {
        flex-direction: column-reverse;
    }
    .cid-v66iQB9YID .row .row .img-wrapper {
        margin-bottom: 2rem;
    }
}

.cid-v66iQB9YID .img-wrapper img {
    width: 100%;
    object-fit: cover;
}

.cid-v66iQB9YID .card-subtitle {
    color: #000000;
}

.cid-v66iQB9YID .mbr-text {
    color: #555555;
}

.cid-v66iQB9YID .mbr-text,
.cid-v66iQB9YID .mbr-section-btn {
    color: #000000;
}

.cid-uDNvlfWgfp {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uDNvlfWgfp .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uDNvlfWgfp .mbr-text {
    color: #fafafa;
}

.cid-uN2b2JYY2v {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #141414;
}

.cid-uN2b2JYY2v .mbr-fallback-image.disabled {
    display: none;
}

.cid-uN2b2JYY2v .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .cid-uN2b2JYY2v .image-wrapper {
        margin-bottom: 1rem;
    }
}

.cid-uN2b2JYY2v .row {
    flex-direction: row-reverse;
}

.cid-uN2b2JYY2v img {
    width: 100%;
}

.cid-uJarE9BBaH {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uJarE9BBaH .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uJarE9BBaH .mbr-text {
    color: #fafafa;
}

.cid-uxMbPxPV91 {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-uxMbPxPV91 .mbr-text {
    text-align: center;
}

.cid-to5Wr6ClAm {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-to5Wr6ClAm .counter-container ul {
    margin: 0;
    list-style: none;
    padding-left: 2.5rem;
}

.cid-to5Wr6ClAm .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
    position: relative;
    padding-left: 1rem;
}

.cid-to5Wr6ClAm .counter-container ul li:before {
    position: absolute;
    left: -40px;
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: #005d94;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: 5px;
    content: "✓";
}

.cid-uVxSx6MOgy {
    padding-top: 0rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

.cid-uVxSx6MOgy .mbr-fallback-image.disabled {
    display: none;
}

.cid-uVxSx6MOgy .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .cid-uVxSx6MOgy .image-wrapper {
        margin-bottom: 1rem;
    }
}

.cid-uVxSx6MOgy .row {
    flex-direction: row-reverse;
}

.cid-uVxSx6MOgy img {
    width: 100%;
}

.cid-uJarF6XRr2 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uJarF6XRr2 .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uJarF6XRr2 .mbr-text {
    color: #ffffff;
}

.cid-uHhrCCDCis {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-uHhrCCDCis .mbr-fallback-image.disabled {
    display: none;
}

.cid-uHhrCCDCis .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uHhrCCDCis .mbr-section-subtitle DIV {
    text-align: center;
}

.cid-uHhrCCDCis .mbr-section-title {
    color: #3078cf;
}

.cid-uHhrCCDCis .mbr-section-subtitle {
    color: #0f0f0f;
}

.cid-ux68t09Nte {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-ux68t09Nte .counter-container ul {
    margin: 0;
    list-style: none;
    padding-left: 2.5rem;
}

.cid-ux68t09Nte .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
    position: relative;
    padding-left: 1rem;
}

.cid-ux68t09Nte .counter-container ul li:before {
    position: absolute;
    left: -40px;
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: #52991d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: 5px;
    content: "✓";
}

.cid-ux68t09Nte .mbr-text DIV {
    text-align: left;
}

.cid-uJarlNoORn {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uJarlNoORn .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uJarlNoORn .mbr-text {
    color: #fafafa;
}

.cid-uVxTFF4ecg {
    padding-top: 2rem;
    padding-bottom: 1rem;
    background-color: #fafafa;
}

.cid-uVxTFF4ecg .mbr-fallback-image.disabled {
    display: none;
}

.cid-uVxTFF4ecg .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uVxTFF4ecg .item:not(:nth-last-child(1)) {
    margin-bottom: 2rem;
}

.cid-uVxTFF4ecg .item-wrapper {
    background-color: #ffffff;
    border-radius: 4px;
}

.cid-uVxTFF4ecg .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.cid-uVxTFF4ecg .social-row .soc-item {
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 2px solid #6592e6;
    transition: all 0.3s;
}

.cid-uVxTFF4ecg .social-row .soc-item .mbr-iconfont {
    display: flex;
    justify-content: center;
    align-content: center;
    color: #6592e6;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.cid-uVxTFF4ecg .social-row .soc-item:hover {
    background-color: #6592e6;
}

.cid-uVxTFF4ecg .social-row .soc-item:hover .mbr-iconfont {
    color: #ffffff;
}

@media (max-width: 767px) {
    .cid-uVxTFF4ecg .card-box {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    .cid-uVxTFF4ecg .card-box {
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .cid-uVxTFF4ecg .card-box {
        padding-left: 2rem;
        padding-right: 4rem;
    }
}

.cid-uDNyIORVSe {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uDNyIORVSe .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uDNyIORVSe .mbr-text {
    color: #fafafa;
}

.cid-uN2bGorovU {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #141414;
}

.cid-uN2bGorovU .mbr-fallback-image.disabled {
    display: none;
}

.cid-uN2bGorovU .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .cid-uN2bGorovU .image-wrapper {
        margin-bottom: 1rem;
    }
}

.cid-uN2bGorovU .row {
    flex-direction: row-reverse;
}

.cid-uN2bGorovU img {
    width: 100%;
}

.cid-uWzcVR5EKS {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #005d94;
}

.cid-uWzcVR5EKS .mbr-fallback-image.disabled {
    display: none;
}

.cid-uWzcVR5EKS .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uWzcVR5EKS .mbr-section-title {
    color: #ffffff;
}

.cid-uJaGygZaTK {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #c5e6f9;
}

.cid-uJaGygZaTK .mbr-fallback-image.disabled {
    display: none;
}

.cid-uJaGygZaTK .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uJaGygZaTK .image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .cid-uJaGygZaTK .image-wrapper {
        margin-bottom: 2rem;
    }
}

.cid-uJaGygZaTK .image-wrapper img {
    width: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .cid-uJaGygZaTK .text-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .cid-uJaGygZaTK .text-wrapper {
        margin-bottom: 2rem;
    }
}

.cid-uJaGygZaTK .mbr-section-title {
    color: #d61a20;
    text-align: center;
}

.cid-uJaGygZaTK .mbr-text,
.cid-uJaGygZaTK .mbr-section-btn {
    text-align: left;
    color: #000000;
}

.cid-uJarGsvEuI {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uJarGsvEuI .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uJarGsvEuI .mbr-text {
    color: #fafafa;
}

.cid-uMtbpsfO15 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-uMtbpsfO15 .mbr-iconfont {
    font-size: 1.4rem !important;
    font-family: 'Moririse2' !important;
    color: #005d94 !important;
    transition: all 0.3s;
    transform: rotate(45deg);
    font-weight: bold;
}

.cid-uMtbpsfO15 .panel-group {
    border: none;
}

.cid-uMtbpsfO15 .card-header {
    padding: 0.5rem 0.5rem;
}

@media (max-width: 767px) {
    .cid-uMtbpsfO15 .card-header {
        padding: 1rem 0rem;
    }
}

.cid-uMtbpsfO15 .panel-body {
    padding: 0 0.5rem;
    padding-bottom: 1rem;
}

@media (max-width: 767px) {
    .cid-uMtbpsfO15 .panel-body {
        padding: 0rem;
        padding-bottom: 1rem;
    }
}

.cid-uMtbpsfO15 .img-col {
    padding: 0;
}

.cid-uMtbpsfO15 .img-item {
    height: 100%;
}

.cid-uMtbpsfO15 img {
    height: 100%;
    object-fit: cover;
}

.cid-uMtbpsfO15 .collapsed span {
    transform: rotate(0deg);
}

.cid-uMtbpsfO15 .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cid-uMtbpsfO15 p {
    margin-bottom: 0.3rem;
}

.cid-uMtbpsfO15 .panel-title-edit {
    color: #e9c0e9;
}

.cid-uMtbpsfO15 .card .card-header {
    background-color: transparent;
    margin-bottom: 0;
    border: 0;
    border-radius: 2rem;
}

.cid-uMtbpsfO15 .card {
    background: #ffffff;
    padding: 1rem 2rem;
    border-radius: 2rem;
}

@media (max-width: 767px) {
    .cid-uMtbpsfO15 .card {
        padding: 1.5rem;
    }
}

.cid-uMtbpsfO15 .panel-text {
    color: #320707;
}

.cid-uMtbpsfO15 .mbr-section-title {
    text-align: left;
    color: #000000;
}

.cid-uMtbpsfO15 .mbr-section-subtitle {
    color: #000000;
    text-align: left;
}

.cid-uMtbpsfO15 .panel-title-edit,
.cid-uMtbpsfO15 .mbr-iconfont {
    color: #000000;
}

.cid-uMtboo42A9 {
    padding-top: 0rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

.cid-uMtboo42A9 .mbr-iconfont {
    font-size: 1.4rem !important;
    font-family: 'Moririse2' !important;
    color: #005d94 !important;
    transition: all 0.3s;
    transform: rotate(45deg);
    font-weight: bold;
}

.cid-uMtboo42A9 .panel-group {
    border: none;
}

.cid-uMtboo42A9 .card-header {
    padding: 0.5rem 0.5rem;
}

@media (max-width: 767px) {
    .cid-uMtboo42A9 .card-header {
        padding: 1rem 0rem;
    }
}

.cid-uMtboo42A9 .panel-body {
    padding: 0 0.5rem;
    padding-bottom: 1rem;
}

@media (max-width: 767px) {
    .cid-uMtboo42A9 .panel-body {
        padding: 0rem;
        padding-bottom: 1rem;
    }
}

.cid-uMtboo42A9 .img-col {
    padding: 0;
}

.cid-uMtboo42A9 .img-item {
    height: 100%;
}

.cid-uMtboo42A9 img {
    height: 100%;
    object-fit: cover;
}

.cid-uMtboo42A9 .collapsed span {
    transform: rotate(0deg);
}

.cid-uMtboo42A9 .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cid-uMtboo42A9 p {
    margin-bottom: 0.3rem;
}

.cid-uMtboo42A9 .panel-title-edit {
    color: #e9c0e9;
}

.cid-uMtboo42A9 .card .card-header {
    background-color: transparent;
    margin-bottom: 0;
    border: 0;
    border-radius: 2rem;
}

.cid-uMtboo42A9 .card {
    background: #ffffff;
    padding: 1rem 2rem;
    border-radius: 2rem;
}

@media (max-width: 767px) {
    .cid-uMtboo42A9 .card {
        padding: 1.5rem;
    }
}

.cid-uMtboo42A9 .panel-text {
    color: #320707;
}

.cid-uMtboo42A9 .mbr-section-title {
    text-align: left;
    color: #000000;
}

.cid-uMtboo42A9 .mbr-section-subtitle {
    color: #000000;
    text-align: left;
}

.cid-uMtboo42A9 .panel-title-edit,
.cid-uMtboo42A9 .mbr-iconfont {
    color: #000000;
}

.cid-uVxUBMiB4X {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #005d94;
}

.cid-uVxUBMiB4X .mbr-fallback-image.disabled {
    display: none;
}

.cid-uVxUBMiB4X .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uVxUBMiB4X .mbr-section-title {
    color: #ffffff;
}

.cid-uVxUJatIgT {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-uVxUJatIgT .mbr-fallback-image.disabled {
    display: none;
}

.cid-uVxUJatIgT .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (min-width: 1500px) {
    .cid-uVxUJatIgT .container {
        max-width: 1400px;
    }
}

.cid-uVxUJatIgT .mbr-iconfont {
    display: block;
    font-size: 5rem;
    color: #005d94;
    margin-bottom: 2rem;
}

.cid-uVxUJatIgT .row {
    justify-content: center;
}

.cid-uVxGeJ2Dtd {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #c5e6f9;
}

.cid-uVxGeJ2Dtd .mbr-fallback-image.disabled {
    display: none;
}

.cid-uVxGeJ2Dtd .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uVxGeJ2Dtd .card-wrapper {
    background: #ffffff;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .cid-uVxGeJ2Dtd .card-wrapper {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cid-uVxGeJ2Dtd .card-wrapper {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .cid-uVxGeJ2Dtd .card-wrapper {
        padding: 4rem;
    }
}

.cid-uVxGeJ2Dtd .mbr-text,
.cid-uVxGeJ2Dtd .mbr-section-btn {
    color: #000000;
}

.cid-uVxGeJ2Dtd .card-title,
.cid-uVxGeJ2Dtd .card-box {
    text-align: left;
    color: #000000;
}

.cid-uJarHE9Rfg {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #005d94;
}

.cid-uJarHE9Rfg .line {
    background-color: #005d94;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.cid-uJarHE9Rfg .mbr-text {
    color: #fafafa;
}

.cid-uDOeozYbBU {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

.cid-uDOeozYbBU .mbr-fallback-image.disabled {
    display: none;
}

.cid-uDOeozYbBU .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .cid-uDOeozYbBU .image-wrapper {
        margin-bottom: 1rem;
    }
}

.cid-uDOeozYbBU .row {
    flex-direction: row-reverse;
}

.cid-uDOeozYbBU img {
    width: 100%;
}

.cid-uDOetn8mhl {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-uDOetn8mhl .mbr-fallback-image.disabled {
    display: none;
}

.cid-uDOetn8mhl .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-uDOetn8mhl .mbr-section-title {
    color: #353535;
}

.cid-uDOen63WzV {
    padding-top: 0rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

.cid-u8dueNJJ86 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #000000;
}

.cid-u8dueNJJ86 .row-links {
    width: 100%;
    justify-content: center;
}

.cid-u8dueNJJ86 .social-row {
    width: 100%;
    justify-content: center;
}

.cid-u8dueNJJ86 .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cid-u8dueNJJ86 .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.cid-u8dueNJJ86 .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}

.cid-u8dueNJJ86 .media-container-row .foot-menu li p {
    margin: 0;
}

.cid-u8dueNJJ86 .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cid-u8dueNJJ86 .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}

.cid-u8dueNJJ86 .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}

.cid-u8dueNJJ86 .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}

.cid-u8dueNJJ86 .media-container-row .social-list a:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .cid-u8dueNJJ86 .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-u8dueNJJ86 .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

.cid-u8dueNJJ86 .media-container-row .row-copirayt p {
    width: 100%;
}