body {
    font-family: Jost;
}

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

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

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

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

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

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

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

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

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

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

/* ---- 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: 3.68rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.22rem;
        font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 2.4rem;
        font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.88rem;
        font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        font-size: 1.6rem;
        font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-7 {
        font-size: 0.96rem;
        font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #6592e6 !important;
}

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

.bg-info {
    background-color: #47b5ed !important;
}

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

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

.btn-primary,
.btn-primary:active {
    background-color: #6592e6 !important;
    border-color: #6592e6 !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: #2260d2 !important;
    border-color: #2260d2 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff !important;
    background-color: #2260d2 !important;
    border-color: #2260d2 !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: #47b5ed !important;
    border-color: #47b5ed !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: #148cca !important;
    border-color: #148cca !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-info.disabled,
.btn-info:disabled {
    color: #ffffff !important;
    background-color: #148cca !important;
    border-color: #148cca !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: #ff9966 !important;
    border-color: #ff9966 !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: #ff5f0f !important;
    border-color: #ff5f0f !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #ffffff !important;
    background-color: #ff5f0f !important;
    border-color: #ff5f0f !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: transparent;
    color: #6592e6;
}

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

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

.btn-secondary-outline,
.btn-secondary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    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: transparent!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: transparent;
    color: #47b5ed;
}

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

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

.btn-success-outline,
.btn-success-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    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: transparent!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: transparent;
    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: transparent!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: transparent;
    color: #ff9966;
}

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

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

.btn-black-outline,
.btn-black-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    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: transparent!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: transparent;
    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: transparent!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: #6592e6 !important;
}

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

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

.text-info {
    color: #47b5ed !important;
}

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

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

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

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

a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
    color: #205ac5 !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: #1283bc !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: #ff5500 !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: #6592e6;
}

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

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

.alert-info {
    background-color: #47b5ed;
}

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

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

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

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

a,
a:hover {
    color: #6592e6;
}

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

.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: #ffffff;
}

.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: #ffffff;
}

/* Scroll to top button */
.scrollToTop_wraper {
    display: none;
}

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

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

.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: #6592e6 !important;
}

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

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

blockquote {
    border-color: #6592e6;
}

/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #6592e6;
    color: #ffffff;
}

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

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

.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: #6592e6;
    border-bottom-color: #6592e6;
}

.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: #6592e6 !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='%236592e6' %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-spmX1a1m3M {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

.cid-spmX1a1m3M nav.navbar {
    position: fixed;
}

.cid-spmX1a1m3M .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;
}

.cid-spmX1a1m3M .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-spmX1a1m3M .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-spmX1a1m3M .dropdown-item:hover,
.cid-spmX1a1m3M .dropdown-item:focus {
    background: #6592e6 !important;
    color: white !important;
}

.cid-spmX1a1m3M .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-spmX1a1m3M .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-spmX1a1m3M .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-spmX1a1m3M .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-spmX1a1m3M .nav-link {
    position: relative;
}

.cid-spmX1a1m3M .container {
    display: flex;
    margin: auto;
}

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

.cid-spmX1a1m3M .dropdown-menu,
.cid-spmX1a1m3M .navbar.opened {
    background: #ffffff !important;
}

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

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

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

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

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

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

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

.cid-spmX1a1m3M .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-spmX1a1m3M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}

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

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

.cid-spmX1a1m3M .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-spmX1a1m3M .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

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

@media (max-width: 991px) {
    .cid-spmX1a1m3M .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-spmX1a1m3M .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-spmX1a1m3M .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-spmX1a1m3M .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-spmX1a1m3M .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-spmX1a1m3M .navbar .navbar-toggler {
        flex-basis: auto;
    }

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

.cid-spmX1a1m3M .navbar.navbar-short {
    min-height: 60px;
}

.cid-spmX1a1m3M .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-spmX1a1m3M .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

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

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

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

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

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

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

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

.cid-spmX1a1m3M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.cid-spmX1a1m3M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-spmX1a1m3M .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

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

.cid-spmX1a1m3M .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

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

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

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

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

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

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

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

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

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

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

.cid-spmX1a1m3M .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

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

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-spmX1a1m3M .navbar {
        height: 70px;
    }

    .cid-spmX1a1m3M .navbar.opened {
        height: auto;
    }

    .cid-spmX1a1m3M .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-spnDVcoqYb {
    padding-top: 9rem;
    padding-bottom: 10rem;
    background-image: url("../../../assets/images/physiotherapy-somatic-experiencing10-2000x1335.jpg");
}

@media (max-width: 991px) {
    .cid-spnDVcoqYb .mbr-section-title,
    .cid-spnDVcoqYb .mbr-section-subtitle,
    .cid-spnDVcoqYb .mbr-section-btn,
    .cid-spnDVcoqYb .mbr-text {
        text-align: center;
    }
}

.cid-spnDVcoqYb .mbr-section-title {
    text-align: center;
}

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

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

.cid-spnEDsPmDB li {
    position: relative;
    margin-bottom: 1rem;
}

.cid-spnEDsPmDB ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #6592e6;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}

.cid-spnEDsPmDB H3 {
    text-align: center;
}

.cid-spnEDsPmDB .list {
    text-align: left;
}

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

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

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

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

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

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

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

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

.cid-spnEJ9i7vt li {
    position: relative;
    margin-bottom: 1rem;
}

.cid-spnEJ9i7vt ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #6592e6;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}

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

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

.cid-spnEL0PteM blockquote {
    border-color: #6592e6;
    border-radius: 4px;
    background-color: #fafafa;
}

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

.cid-spnELyLPfj blockquote {
    border-color: #6592e6;
    border-radius: 4px;
    background-color: #fafafa;
}

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

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

.cid-spn08pzgmK {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-spmX1a1m3M {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

.cid-spmX1a1m3M nav.navbar {
    position: fixed;
}

.cid-spmX1a1m3M .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;
}

.cid-spmX1a1m3M .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-spmX1a1m3M .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-spmX1a1m3M .dropdown-item:hover,
.cid-spmX1a1m3M .dropdown-item:focus {
    background: #6592e6 !important;
    color: white !important;
}

.cid-spmX1a1m3M .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-spmX1a1m3M .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-spmX1a1m3M .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-spmX1a1m3M .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-spmX1a1m3M .nav-link {
    position: relative;
}

.cid-spmX1a1m3M .container {
    display: flex;
    margin: auto;
}

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

.cid-spmX1a1m3M .dropdown-menu,
.cid-spmX1a1m3M .navbar.opened {
    background: #ffffff !important;
}

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

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

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

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

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

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

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

.cid-spmX1a1m3M .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-spmX1a1m3M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}

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

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

.cid-spmX1a1m3M .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-spmX1a1m3M .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

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

@media (max-width: 991px) {
    .cid-spmX1a1m3M .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-spmX1a1m3M .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-spmX1a1m3M .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-spmX1a1m3M .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-spmX1a1m3M .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-spmX1a1m3M .navbar .navbar-toggler {
        flex-basis: auto;
    }

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

.cid-spmX1a1m3M .navbar.navbar-short {
    min-height: 60px;
}

.cid-spmX1a1m3M .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-spmX1a1m3M .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

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

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

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

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

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

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

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

.cid-spmX1a1m3M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.cid-spmX1a1m3M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-spmX1a1m3M .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

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

.cid-spmX1a1m3M .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

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

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

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

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

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

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

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

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

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

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

.cid-spmX1a1m3M .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

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

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-spmX1a1m3M .navbar {
        height: 70px;
    }

    .cid-spmX1a1m3M .navbar.opened {
        height: auto;
    }

    .cid-spmX1a1m3M .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

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

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

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

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

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

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

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

.cid-spndMFsdgw li {
    position: relative;
    margin-bottom: 1rem;
}

.cid-spndMFsdgw ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #6592e6;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}

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

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

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

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

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

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

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

.cid-spn5gG3wI1 blockquote {
    border-color: #6592e6;
    border-radius: 4px;
    background-color: #fafafa;
}

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

.cid-spn5cW3RGI img,
.cid-spn5cW3RGI .item-img {
    height: 100%;
    height: 300px;
    object-fit: cover;
}

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

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

.cid-spn5cW3RGI .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

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

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

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

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

.cid-spn5cW3RGI .mbr-text,
.cid-spn5cW3RGI .mbr-section-btn {
    text-align: left;
}

.cid-spn5cW3RGI .item-title {
    text-align: left;
}

.cid-spn5cW3RGI .item-subtitle {
    text-align: left;
    color: #232323;
}

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

.cid-spnbYEHEdt blockquote {
    border-color: #6592e6;
    border-radius: 4px;
    background-color: #fafafa;
}

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

.cid-spn5eVo4vs img,
.cid-spn5eVo4vs .item-img {
    width: 100%;
    height: 100%;
    height: 400px;
    object-fit: cover;
}

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

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

.cid-spn5eVo4vs .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

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

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

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

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

.cid-spn5eVo4vs .mbr-text,
.cid-spn5eVo4vs .mbr-section-btn {
    text-align: left;
}

.cid-spn5eVo4vs .item-title {
    text-align: left;
    color: #6592e6;
}

.cid-spn5eVo4vs .item-subtitle {
    text-align: left;
    color: #232323;
}

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

.cid-spn08pzgmK {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-spnen3Qwp8 {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

.cid-spnen3Qwp8 nav.navbar {
    position: fixed;
}

.cid-spnen3Qwp8 .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;
}

.cid-spnen3Qwp8 .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-spnen3Qwp8 .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-spnen3Qwp8 .dropdown-item:hover,
.cid-spnen3Qwp8 .dropdown-item:focus {
    background: #6592e6 !important;
    color: white !important;
}

.cid-spnen3Qwp8 .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-spnen3Qwp8 .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-spnen3Qwp8 .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-spnen3Qwp8 .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-spnen3Qwp8 .nav-link {
    position: relative;
}

.cid-spnen3Qwp8 .container {
    display: flex;
    margin: auto;
}

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

.cid-spnen3Qwp8 .dropdown-menu,
.cid-spnen3Qwp8 .navbar.opened {
    background: #ffffff !important;
}

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

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

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

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

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

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

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

.cid-spnen3Qwp8 .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-spnen3Qwp8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}

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

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

.cid-spnen3Qwp8 .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-spnen3Qwp8 .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

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

@media (max-width: 991px) {
    .cid-spnen3Qwp8 .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-spnen3Qwp8 .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-spnen3Qwp8 .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-spnen3Qwp8 .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-spnen3Qwp8 .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-spnen3Qwp8 .navbar .navbar-toggler {
        flex-basis: auto;
    }

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

.cid-spnen3Qwp8 .navbar.navbar-short {
    min-height: 60px;
}

.cid-spnen3Qwp8 .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-spnen3Qwp8 .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

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

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

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

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

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

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

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

.cid-spnen3Qwp8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.cid-spnen3Qwp8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-spnen3Qwp8 .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

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

.cid-spnen3Qwp8 .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

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

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

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

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

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

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

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

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

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

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

.cid-spnen3Qwp8 .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

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

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-spnen3Qwp8 .navbar {
        height: 70px;
    }

    .cid-spnen3Qwp8 .navbar.opened {
        height: auto;
    }

    .cid-spnen3Qwp8 .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

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

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

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

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

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

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

.cid-srb3thOIuS .row {
    margin-left: 0;
    margin-right: 0;
}

.cid-srb3thOIuS .item {
    padding-left: 0;
    padding-right: 0;
}

.cid-srb3thOIuS .item-wrapper {
    position: relative;
}

.cid-srb3thOIuS .item-wrapper .icon-wrapper {
    pointer-events: none;
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 22px;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    color: #ffffff;
    transform: translateX(-50%) translateY(-50%);
    background-color: #1b1b1b;
    transition: 0.2s;
}

.cid-srb3thOIuS .item-wrapper:hover .icon-wrapper {
    opacity: 0.7;
}

.cid-srb3thOIuS .carousel-control,
.cid-srb3thOIuS .close {
    background: #1b1b1b;
}

.cid-srb3thOIuS .carousel-control-prev {
    margin-left: 2.5rem;
}

.cid-srb3thOIuS .carousel-control-prev span {
    margin-right: 5px;
}

.cid-srb3thOIuS .carousel-control-next {
    margin-right: 2.5rem;
}

.cid-srb3thOIuS .carousel-control-next span {
    margin-left: 5px;
}

.cid-srb3thOIuS .close {
    position: fixed;
    opacity: 0.5;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    font-family: 'Moririse2';
    align-items: center;
    justify-content: center;
    display: flex;
}

.cid-srb3thOIuS .close::before {
    content: '\e91a';
}

.cid-srb3thOIuS .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.cid-srb3thOIuS .carousel-control {
    display: flex;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.cid-srb3thOIuS .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-srb3thOIuS .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

@media (max-width: 767px) {
    .cid-srb3thOIuS .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.cid-srb3thOIuS .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}

.cid-srb3thOIuS .carousel-indicators li {
    max-width: 15px;
    height: 15px;
    width: 15px;
    max-height: 15px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s;
}

.cid-srb3thOIuS .carousel-indicators li.active,
.cid-srb3thOIuS .carousel-indicators li:hover {
    opacity: 0.9;
}

.cid-srb3thOIuS .carousel-indicators li::after,
.cid-srb3thOIuS .carousel-indicators li::before {
    content: none;
}

.cid-srb3thOIuS .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 768px) {
    .cid-srb3thOIuS .carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .cid-srb3thOIuS .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 767px) {
    .cid-srb3thOIuS .carousel-indicators {
        display: none;
    }
}

.cid-srb3thOIuS .carousel-inner {
    display: flex;
    align-items: center;
}

.cid-srb3thOIuS .carousel-inner > .active {
    display: block;
}

.cid-srb3thOIuS .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}

.cid-srb3thOIuS .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}

.cid-srb3thOIuS .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .cid-srb3thOIuS .carousel-control,
    .cid-srb3thOIuS .carousel-indicators,
    .cid-srb3thOIuS .modal .close {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .cid-srb3thOIuS .mbr-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }

    .cid-srb3thOIuS .mbr-slider > .container .carousel-control {
        margin-bottom: 0;
    }
}

.cid-srb3thOIuS .carousel-indicators .active,
.cid-srb3thOIuS .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}

.cid-srb3thOIuS .carousel-indicators .active {
    background: #fff;
}

.cid-srb3thOIuS .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}

.cid-srb3thOIuS .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}

.cid-srb3thOIuS .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.cid-srb3thOIuS .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}

.cid-srb3thOIuS .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}

.cid-srb3thOIuS .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}

.cid-srb3thOIuS .carousel {
    width: 100%;
}

.cid-srb3thOIuS .modal-backdrop.in {
    opacity: 0.8;
}

.cid-srb3thOIuS .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}

.cid-srb3thOIuS .modal.fade .modal-dialog,
.cid-srb3thOIuS .modal.in .modal-dialog {
    transform: none;
}

.cid-srb3thOIuS .mbr-gallery .item-wrapper {
    cursor: pointer;
}

.cid-srb3thOIuS H6 {
    text-align: center;
}

.cid-spnfaHdXlr {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffe161;
}

.cid-spnfaHdXlr H3 {
    color: #353535;
    text-align: center;
}

.cid-spnfOWu46i {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/musculoskeletal-physiotherapist-1900x1255.jpg");
}

.cid-spnfOWu46i .mbr-text,
.cid-spnfOWu46i .mbr-section-btn {
    color: #232323;
}

.cid-spnfOWu46i .card-title,
.cid-spnfOWu46i .card-box {
    color: #ffffff;
}

.cid-spnfOWu46i .mbr-text,
.cid-spnfOWu46i .link-wrap {
    color: #ffffff;
}

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

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

.cid-spng9l19nw .text-wrapper {
    padding: 1rem;
}

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

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

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

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

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

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

.cid-tg6sPzRmoZ .text-wrapper {
    padding: 1rem;
}

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

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

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

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

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

.cid-spnen8kqdK {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-spnszZITyf {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

.cid-spnszZITyf nav.navbar {
    position: fixed;
}

.cid-spnszZITyf .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;
}

.cid-spnszZITyf .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-spnszZITyf .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-spnszZITyf .dropdown-item:hover,
.cid-spnszZITyf .dropdown-item:focus {
    background: #6592e6 !important;
    color: white !important;
}

.cid-spnszZITyf .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-spnszZITyf .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-spnszZITyf .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-spnszZITyf .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-spnszZITyf .nav-link {
    position: relative;
}

.cid-spnszZITyf .container {
    display: flex;
    margin: auto;
}

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

.cid-spnszZITyf .dropdown-menu,
.cid-spnszZITyf .navbar.opened {
    background: #ffffff !important;
}

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

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

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

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

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

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

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

.cid-spnszZITyf .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-spnszZITyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}

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

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

.cid-spnszZITyf .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-spnszZITyf .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

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

@media (max-width: 991px) {
    .cid-spnszZITyf .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-spnszZITyf .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-spnszZITyf .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-spnszZITyf .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-spnszZITyf .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-spnszZITyf .navbar .navbar-toggler {
        flex-basis: auto;
    }

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

.cid-spnszZITyf .navbar.navbar-short {
    min-height: 60px;
}

.cid-spnszZITyf .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-spnszZITyf .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

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

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

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

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

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

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

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

.cid-spnszZITyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.cid-spnszZITyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-spnszZITyf .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

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

.cid-spnszZITyf .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

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

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

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

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

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

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

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

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

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

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

.cid-spnszZITyf .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

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

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-spnszZITyf .navbar {
        height: 70px;
    }

    .cid-spnszZITyf .navbar.opened {
        height: auto;
    }

    .cid-spnszZITyf .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-spntw6PwFN {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url("../../../assets/images/f100008056-2000x1290.jpg");
}

.cid-spntw6PwFN .mbr-overlay {
    background-color: #353535;
    opacity: 0.5;
}

.cid-spntw6PwFN .content-wrap {
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .cid-spntw6PwFN {
        align-items: flex-end;
    }

    .cid-spntw6PwFN .row {
        justify-content: flex-start;
    }

    .cid-spntw6PwFN .content-wrap {
        width: 51%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-spntw6PwFN .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-spntw6PwFN {
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-spntw6PwFN .mbr-row {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-spntw6PwFN .content-wrap {
        width: 100%;
    }
}

.cid-spntw6PwFN .mbr-text,
.cid-spntw6PwFN .mbr-section-btn {
    color: #ffffff;
}

.cid-spntw6PwFN .mbr-section-title {
    text-align: right;
}

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

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

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

.cid-spnsA1IPSF {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #00f5ff;
}

.cid-spnsA1IPSF H3 {
    color: #353535;
    text-align: center;
}

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

.cid-spnsA2Twu6 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-spnuufOkXG {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

.cid-spnuufOkXG nav.navbar {
    position: fixed;
}

.cid-spnuufOkXG .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;
}

.cid-spnuufOkXG .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-spnuufOkXG .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-spnuufOkXG .dropdown-item:hover,
.cid-spnuufOkXG .dropdown-item:focus {
    background: #6592e6 !important;
    color: white !important;
}

.cid-spnuufOkXG .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-spnuufOkXG .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-spnuufOkXG .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-spnuufOkXG .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-spnuufOkXG .nav-link {
    position: relative;
}

.cid-spnuufOkXG .container {
    display: flex;
    margin: auto;
}

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

.cid-spnuufOkXG .dropdown-menu,
.cid-spnuufOkXG .navbar.opened {
    background: #ffffff !important;
}

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

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

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

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

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

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

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

.cid-spnuufOkXG .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-spnuufOkXG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}

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

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

.cid-spnuufOkXG .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-spnuufOkXG .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

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

@media (max-width: 991px) {
    .cid-spnuufOkXG .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-spnuufOkXG .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-spnuufOkXG .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-spnuufOkXG .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-spnuufOkXG .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-spnuufOkXG .navbar .navbar-toggler {
        flex-basis: auto;
    }

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

.cid-spnuufOkXG .navbar.navbar-short {
    min-height: 60px;
}

.cid-spnuufOkXG .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-spnuufOkXG .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

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

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

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

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

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

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

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

.cid-spnuufOkXG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.cid-spnuufOkXG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-spnuufOkXG .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

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

.cid-spnuufOkXG .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

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

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

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

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

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

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

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

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

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

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

.cid-spnuufOkXG .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

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

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-spnuufOkXG .navbar {
        height: 70px;
    }

    .cid-spnuufOkXG .navbar.opened {
        height: auto;
    }

    .cid-spnuufOkXG .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-srb6caEAW9 {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background-color: #fafafa;
}

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

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

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

.cid-srb6caEAW9 .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-srb6caEAW9 .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-srb6caEAW9 .social-row .soc-item:hover {
    background-color: #6592e6;
}

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

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

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

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

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

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

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

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

.cid-spnuuhsZLD {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-spnzf7dR4k {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

.cid-spnzf7dR4k nav.navbar {
    position: fixed;
}

.cid-spnzf7dR4k .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;
}

.cid-spnzf7dR4k .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-spnzf7dR4k .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-spnzf7dR4k .dropdown-item:hover,
.cid-spnzf7dR4k .dropdown-item:focus {
    background: #6592e6 !important;
    color: white !important;
}

.cid-spnzf7dR4k .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-spnzf7dR4k .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-spnzf7dR4k .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-spnzf7dR4k .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-spnzf7dR4k .nav-link {
    position: relative;
}

.cid-spnzf7dR4k .container {
    display: flex;
    margin: auto;
}

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

.cid-spnzf7dR4k .dropdown-menu,
.cid-spnzf7dR4k .navbar.opened {
    background: #ffffff !important;
}

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

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

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

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

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

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

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

.cid-spnzf7dR4k .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-spnzf7dR4k .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}

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

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

.cid-spnzf7dR4k .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-spnzf7dR4k .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

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

@media (max-width: 991px) {
    .cid-spnzf7dR4k .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-spnzf7dR4k .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-spnzf7dR4k .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-spnzf7dR4k .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-spnzf7dR4k .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-spnzf7dR4k .navbar .navbar-toggler {
        flex-basis: auto;
    }

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

.cid-spnzf7dR4k .navbar.navbar-short {
    min-height: 60px;
}

.cid-spnzf7dR4k .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-spnzf7dR4k .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

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

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

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

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

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

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

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

.cid-spnzf7dR4k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.cid-spnzf7dR4k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-spnzf7dR4k .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

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

.cid-spnzf7dR4k .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

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

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

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

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

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

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

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

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

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

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

.cid-spnzf7dR4k .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

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

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-spnzf7dR4k .navbar {
        height: 70px;
    }

    .cid-spnzf7dR4k .navbar.opened {
        height: auto;
    }

    .cid-spnzf7dR4k .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-srheBefN39 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #fff0b0;
}

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

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

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

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

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

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

.cid-spnzf8Bno7 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-spnpSPk6zR {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

.cid-spnpSPk6zR nav.navbar {
    position: fixed;
}

.cid-spnpSPk6zR .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;
}

.cid-spnpSPk6zR .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-spnpSPk6zR .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-spnpSPk6zR .dropdown-item:hover,
.cid-spnpSPk6zR .dropdown-item:focus {
    background: #6592e6 !important;
    color: white !important;
}

.cid-spnpSPk6zR .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-spnpSPk6zR .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-spnpSPk6zR .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-spnpSPk6zR .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-spnpSPk6zR .nav-link {
    position: relative;
}

.cid-spnpSPk6zR .container {
    display: flex;
    margin: auto;
}

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

.cid-spnpSPk6zR .dropdown-menu,
.cid-spnpSPk6zR .navbar.opened {
    background: #ffffff !important;
}

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

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

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

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

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

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

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

.cid-spnpSPk6zR .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-spnpSPk6zR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}

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

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

.cid-spnpSPk6zR .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-spnpSPk6zR .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

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

@media (max-width: 991px) {
    .cid-spnpSPk6zR .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-spnpSPk6zR .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-spnpSPk6zR .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-spnpSPk6zR .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-spnpSPk6zR .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-spnpSPk6zR .navbar .navbar-toggler {
        flex-basis: auto;
    }

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

.cid-spnpSPk6zR .navbar.navbar-short {
    min-height: 60px;
}

.cid-spnpSPk6zR .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-spnpSPk6zR .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

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

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

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

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

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

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

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

.cid-spnpSPk6zR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.cid-spnpSPk6zR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-spnpSPk6zR .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

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

.cid-spnpSPk6zR .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

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

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

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

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

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

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

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

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

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

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

.cid-spnpSPk6zR .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

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

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-spnpSPk6zR .navbar {
        height: 70px;
    }

    .cid-spnpSPk6zR .navbar.opened {
        height: auto;
    }

    .cid-spnpSPk6zR .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

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

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

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

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

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

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

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

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

.cid-spnr1fAXf9 li {
    position: relative;
    margin-bottom: 1rem;
}

.cid-spnr1fAXf9 ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #6592e6;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}

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

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

.cid-spnpSQ8PzV {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #00f5ff;
}

.cid-spnpSQ8PzV H3 {
    color: #353535;
    text-align: center;
}

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

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

.cid-spnpSR1sFP .text-wrapper {
    padding: 1rem;
}

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

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

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

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

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

.cid-spnpSRGAWN {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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