body {
    font-family: Jost;
}
.display-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4.6rem;
    line-height: 1.1;
}
.display-1 > .mbr-iconfont {
    font-size: 5.75rem;
}
.display-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
}
.display-2 > .mbr-iconfont {
    font-size: 3.75rem;
}
.display-4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
}
.display-4 > .mbr-iconfont {
    font-size: 1.375rem;
}
.display-5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    line-height: 1.5;
}
.display-5 > .mbr-iconfont {
    font-size: 2.5rem;
}
.display-7 {
    font-family: 'Open Sans', 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: #96bc0f !important;
}
.bg-success {
    background-color: #96bc0f !important;
}
.bg-info {
    background-color: #61615f !important;
}
.bg-warning {
    background-color: #f2f6e7 !important;
}
.bg-danger {
    background-color: #61615f !important;
}
.btn-primary,
.btn-primary:active {
    background-color: #96bc0f !important;
    border-color: #96bc0f !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: #566c09 !important;
    border-color: #566c09 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff !important;
    background-color: #566c09 !important;
    border-color: #566c09 !important;
}
.btn-secondary,
.btn-secondary:active {
    background-color: #7b9d0a !important;
    border-color: #7b9d0a !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: #3b4b05 !important;
    border-color: #3b4b05 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #ffffff !important;
    background-color: #3b4b05 !important;
    border-color: #3b4b05 !important;
}
.btn-info,
.btn-info:active {
    background-color: #61615f !important;
    border-color: #61615f !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: #353534 !important;
    border-color: #353534 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
    color: #ffffff !important;
    background-color: #353534 !important;
    border-color: #353534 !important;
}
.btn-success,
.btn-success:active {
    background-color: #96bc0f !important;
    border-color: #96bc0f !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: #566c09 !important;
    border-color: #566c09 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
    color: #ffffff !important;
    background-color: #566c09 !important;
    border-color: #566c09 !important;
}
.btn-warning,
.btn-warning:active {
    background-color: #f2f6e7 !important;
    border-color: #f2f6e7 !important;
    color: #87a13d !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: #526225 !important;
    background-color: #d0dea8 !important;
    border-color: #d0dea8 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
    color: #87a13d !important;
    background-color: #d0dea8 !important;
    border-color: #d0dea8 !important;
}
.btn-danger,
.btn-danger:active {
    background-color: #61615f !important;
    border-color: #61615f !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: #353534 !important;
    border-color: #353534 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
    color: #ffffff !important;
    background-color: #353534 !important;
    border-color: #353534 !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: #96bc0f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
    color: #566c09 !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: #96bc0f !important;
    border-color: #96bc0f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #7b9d0a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
    color: #3b4b05 !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: #7b9d0a !important;
    border-color: #7b9d0a !important;
}
.btn-info-outline,
.btn-info-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #61615f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
    color: #353534 !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: #61615f !important;
    border-color: #61615f !important;
}
.btn-success-outline,
.btn-success-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #96bc0f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
    color: #566c09 !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: #96bc0f !important;
    border-color: #96bc0f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #f2f6e7;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
    color: #d0dea8 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #87a13d !important;
    background-color: #f2f6e7 !important;
    border-color: #f2f6e7 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #61615f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
    color: #353534 !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: #61615f !important;
    border-color: #61615f !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: #96bc0f !important;
}
.text-secondary {
    color: #7b9d0a !important;
}
.text-success {
    color: #96bc0f !important;
}
.text-info {
    color: #61615f !important;
}
.text-warning {
    color: #f2f6e7 !important;
}
.text-danger {
    color: #61615f !important;
}
.text-white {
    color: #fafafa !important;
}
.text-black {
    color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
    color: #4b5e07 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
    color: #303d04 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
    color: #4b5e07 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
    color: #2d2d2d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
    color: #cada9d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
    color: #2d2d2d !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: #96bc0f;
}
.nav-tabs .nav-link:not(.active) {
    color: #232323;
}
.alert-success {
    background-color: #70c770;
}
.alert-info {
    background-color: #61615f;
}
.alert-warning {
    background-color: #f2f6e7;
}
.alert-danger {
    background-color: #61615f;
}
.mbr-gallery-filter li.active .btn {
    background-color: #96bc0f;
    border-color: #96bc0f;
    color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
    box-shadow: none;
}
a,
a:hover {
    color: #96bc0f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #d0f259;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #d0f259;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #a1a19f;
}
.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: #a1a19f;
}
/* Scroll to top button*/
.form-control {
    font-family: 'Open Sans', 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: #96bc0f !important;
}
.form-control:-webkit-input-placeholder {
    font-family: 'Open Sans', 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: #96bc0f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #96bc0f;
    color: #ffffff;
}
.jq-number__spin {
    transition: 0.25s ease;
}
.jq-number__spin:hover {
    border-color: #96bc0f;
}
.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: #96bc0f;
    border-bottom-color: #96bc0f;
}
.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: #000000 !important;
    background-color: #96bc0f !important;
    box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    color: #ffffff !important;
    background: #7b9d0a !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='%2396bc0f' %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-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-t4bZ4wzh4y {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #fafafa;
}
.cid-t4bZ4wzh4y .carousel {
    height: 800px;
}
.cid-t4bZ4wzh4y .carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cid-t4bZ4wzh4y .carousel-item,
.cid-t4bZ4wzh4y .carousel-inner {
    height: 100%;
}
.cid-t4bZ4wzh4y .carousel-caption {
    bottom: 40px;
}
.cid-t4bZ4wzh4y .mobi-mbri-arrow-next {
    margin-left: 5px;
}
.cid-t4bZ4wzh4y .mobi-mbri-arrow-prev {
    margin-right: 5px;
}
.cid-t4bZ4wzh4y .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}
.cid-t4bZ4wzh4y .item-wrapper {
    width: 100%;
}
@media (max-width: 767px) {
    .cid-t4bZ4wzh4y .container .carousel-control {
        margin-bottom: 0;
    }
    .cid-t4bZ4wzh4y .content-slider-wrap {
        width: 100% !important;
    }
}
.cid-t4bZ4wzh4y .container .carousel-indicators {
    margin-bottom: 3px;
}
.cid-t4bZ4wzh4y .carousel-control {
    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-t4bZ4wzh4y .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-t4bZ4wzh4y .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-t4bZ4wzh4y .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}
.cid-t4bZ4wzh4y .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem !important;
}
.cid-t4bZ4wzh4y .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-t4bZ4wzh4y .carousel-indicators li.active,
.cid-t4bZ4wzh4y .carousel-indicators li:hover {
    opacity: 0.9;
}
.cid-t4bZ4wzh4y .carousel-indicators li::after,
.cid-t4bZ4wzh4y .carousel-indicators li::before {
    content: none;
}
.cid-t4bZ4wzh4y .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}
@media (max-width: 768px) {
    .cid-t4bZ4wzh4y .carousel-indicators {
        display: none !important;
    }
}
.cid-t4bZ4wzh4y H5 {
    color: #ffffff;
}
.cid-t4bZ4wzh4y P {
    color: #ffffff;
}
.cid-t4bZwIqJ3k {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-t4bZwIqJ3k .line {
    background-color: #7b9d0a;
    align: center;
    height: 2px;
    margin: 0 auto;
}
.cid-t4bZwIqJ3k .mbr-text {
    color: #61615f;
}
.cid-taCPTshyw6 {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-taCPTshyw6 .mbr-section-title {
    color: #61615f;
}
.cid-taCPTshyw6 .mbr-section-subtitle {
    color: #61615f;
}
.cid-taCPU28tiw {
    padding-top: 3rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-taCPU28tiw ul {
    list-style: none;
    margin: 0;
    padding-left: 2.5rem;
}
.cid-taCPU28tiw li {
    position: relative;
    margin-bottom: 1rem;
}
.cid-taCPU28tiw ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #96bc0f;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}
.cid-taCPU28tiw .list {
    color: #61615f;
}
.cid-taCPU28tiw H3 {
    color: #61615f;
}
.cid-t4deDm1vx9 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f2f6e7;
}
.cid-t4deDm1vx9 img,
.cid-t4deDm1vx9 .item-img {
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
}
.cid-t4deDm1vx9 .item:focus,
.cid-t4deDm1vx9 span:focus {
    outline: none;
}
.cid-t4deDm1vx9 .item-wrapper {
    position: relative;
}
.cid-t4deDm1vx9 .slide-content {
    position: relative;
    border-radius: 4px;
    background: #f2f6e7;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-t4deDm1vx9 .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-t4deDm1vx9 .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-t4deDm1vx9 .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-t4deDm1vx9 .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-t4deDm1vx9 .mbr-section-btn {
    margin-top: auto !important;
}
.cid-t4deDm1vx9 .mbr-section-title {
    color: #61615f;
}
.cid-t4deDm1vx9 .mbr-text,
.cid-t4deDm1vx9 .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-t4deDm1vx9 .item-title {
    text-align: center;
    color: #61615f;
}
.cid-t4deDm1vx9 .item-subtitle {
    text-align: left;
    color: #61615f;
}
.cid-t4deDm1vx9 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 370px;
    max-width: 370px;
}
@media (max-width: 768px) {
    .cid-t4deDm1vx9 .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-t4deDm1vx9 .embla__button--next,
.cid-t4deDm1vx9 .embla__button--prev {
    display: flex;
}
.cid-t4deDm1vx9 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-t4deDm1vx9 .embla__button {
        display: none;
    }
}
.cid-t4deDm1vx9 .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-t4deDm1vx9 .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-t4deDm1vx9 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-t4deDm1vx9 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-t4deDm1vx9 .embla__button {
        top: auto;
    }
}
.cid-t4deDm1vx9 .embla {
    position: relative;
    width: 100%;
}
.cid-t4deDm1vx9 .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-t4deDm1vx9 .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-t4deDm1vx9 .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-t4deDm1vx9 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
    .cid-t4deDm1vx9 .embla__container {
        margin-left: 1.3rem;
        margin-right: 1.3rem;
    }
    .cid-t4deDm1vx9 .embla__container .embla__slide:first-child {
        margin-left: 2rem !important;
    }
    .cid-t4deDm1vx9 .embla__container .embla__slide:last-child {
        margin-right: 2rem !important;
    }
}
.cid-t4ddbUPrR4 {
    padding-top: 2rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-t4ddbUPrR4 .mbr-section-title {
    color: #7b9d0a;
}
.cid-t4dbV8lVEd {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-t4dbV8lVEd .mbr-iconfont {
    display: block;
    font-size: 4rem;
    color: #96bc0f;
    margin-bottom: 2rem;
}
.cid-t4dbV8lVEd .card-wrapper {
    min-height: 220px;
    transition: all 0.3s;
    border-radius: 4px;
    padding: 1rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.cid-t4dbV8lVEd .card-title,
.cid-t4dbV8lVEd .card-box {
    color: #61615f;
}
.cid-taCSfRCZ4f {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #f2f6e7;
}
.cid-taCSfRCZ4f .mbr-section-title {
    color: #61615f;
}
.cid-taCSfRCZ4f .mbr-section-subtitle {
    color: #61615f;
}
.cid-taCQDWmNJX {
    padding-top: 2rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
@media (max-width: 991px) {
    .cid-taCQDWmNJX .image-wrapper {
        margin-bottom: 1rem;
    }
}
.cid-taCQDWmNJX .row {
    flex-direction: row-reverse;
}
.cid-taCQDWmNJX img {
    width: 100%;
}
@media (min-width: 992px) {
    .cid-taCQDWmNJX .text-wrapper {
        padding: 2rem;
    }
}
.cid-taCQDWmNJX .mbr-section-title {
    color: #61615f;
}
.cid-taCQDWmNJX .mbr-text {
    color: #61615f;
}
.cid-ti4Bmzm0Qb {
    padding-top: 1rem;
    padding-bottom: 6rem;
    background-color: #f2f6e7;
}
.cid-ti4Bmzm0Qb .mbr-media {
    position: relative;
}
.cid-ti4Bmzm0Qb .mbr-media img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4Bmzm0Qb .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.cid-ti4Bmzm0Qb .mbr-media span {
    font-size: 4rem;
    transition: all 0.2s;
}
.cid-ti4Bmzm0Qb .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
}
.cid-ti4Bmzm0Qb .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
}
.cid-ti4Bmzm0Qb .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
}
.cid-ti4Bmzm0Qb .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;
    align-items: center;
    justify-content: center;
    display: flex;
}
.cid-ti4Bmzm0Qb .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
.cid-t4cMJwalXz {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
.cid-t4cMJwalXz img {
    width: 120px;
    margin: auto;
}
.cid-t4cMJwalXz .card {
    transition: all 0.3s;
    height: fit-content;
    padding: 1rem 0;
    opacity: 0.7;
    margin-bottom: 1rem;
}
@media (min-width: 992px) {
    .cid-t4cMJwalXz .card {
        max-width: 12.5%;
    }
}
.cid-teL6dv7etC {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: #f2f6e7;
}
.cid-teL6dv7etC .team-card {
    margin-bottom: 2rem;
    transition: all 0.3s;
}
.cid-teL6dv7etC .team-card:hover {
    transform: translateY(-10px);
}
.cid-teL6dv7etC .card-wrap {
    background: #ffffff;
    border-radius: 4px;
}
@media (max-width: 991px) {
    .cid-teL6dv7etC .card-wrap {
        margin-bottom: 2rem;
    }
}
.cid-teL6dv7etC .card-wrap .image-wrap img {
    width: 100%;
}
@media (min-width: 768px) {
    .cid-teL6dv7etC .card-wrap .content-wrap {
        padding: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-teL6dv7etC .card-wrap .content-wrap {
        padding: 1rem;
    }
}
.cid-teL6dv7etC .social-row {
    text-align: center;
}
.cid-teL6dv7etC .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-teL6dv7etC .social-row .soc-item .mbr-iconfont {
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-content: center;
    color: #6592e6;
    font-size: 1.5rem;
}
.cid-teL6dv7etC .social-row .soc-item:hover {
    background-color: #6592e6;
}
.cid-teL6dv7etC .social-row .soc-item:hover .mbr-iconfont {
    color: #ffffff;
}
.cid-teL6dv7etC .mbr-section-title {
    color: #61615f;
}
.cid-teL6dv7etC .mbr-role,
.cid-teL6dv7etC .social-row {
    color: #61615f;
}
.cid-teL6dv7etC .card-text,
.cid-teL6dv7etC .mbr-section-btn,
.cid-teL6dv7etC .social-row {
    color: #61615f;
}
.cid-teL6dv7etC .mbr-section-subtitle {
    color: #61615f;
}
.cid-t4j6m8jcyF {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: url("../../../assets/images/istock-1340721567.jpeg");
}
.cid-t4j6m8jcyF .image-wrapper {
    display: flex;
    align-items: center;
}
.cid-t4j6m8jcyF .card-wrapper {
    margin-bottom: 2rem;
    display: flex;
    border-radius: 4px;
    background: #fafafa;
}
@media (max-width: 991px) {
    .cid-t4j6m8jcyF .card-wrapper {
        padding: 1rem 2rem;
    }
}
@media (min-width: 992px) {
    .cid-t4j6m8jcyF .card-wrapper {
        padding: 2rem 4rem;
    }
}
.cid-t4j6m8jcyF .mbr-iconfont {
    font-size: 2rem;
    padding-right: 1.5rem;
    color: #96bc0f;
}
.cid-t4j6m8jcyF P {
    color: #61615f;
}
.cid-t4j6m8jcyF .card-title {
    color: #61615f;
}
.cid-t4j6m8jcyF .mbr-section-title {
    color: #ffffff;
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-t4ixDv9mXQ {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-t4ixDv9mXQ .mbr-section-title {
    color: #61615f;
}
.cid-t4ixDv9mXQ .mbr-section-subtitle {
    color: #61615f;
}
.cid-t4jfC9EXI7 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-t4jfC9EXI7 img,
.cid-t4jfC9EXI7 .item-img {
    width: 100%;
}
.cid-t4jfC9EXI7 .item:focus,
.cid-t4jfC9EXI7 span:focus {
    outline: none;
}
.cid-t4jfC9EXI7 .item {
    cursor: pointer;
    margin-bottom: 2rem;
}
.cid-t4jfC9EXI7 .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-t4jfC9EXI7 .item-wrapper .item-content {
        padding: 2rem;
    }
}
@media (max-width: 991px) {
    .cid-t4jfC9EXI7 .item-wrapper .item-content {
        padding: 1rem;
    }
}
.cid-t4jfC9EXI7 .mbr-section-btn {
    margin-top: auto !important;
}
.cid-t4jfC9EXI7 .mbr-section-title {
    color: #232323;
}
.cid-t4jfC9EXI7 .mbr-text,
.cid-t4jfC9EXI7 .mbr-section-btn {
    text-align: left;
}
.cid-t4jfC9EXI7 .item-title {
    text-align: left;
}
.cid-t4jfC9EXI7 .item-subtitle {
    text-align: left;
}
.cid-t4Ffk1cfW4 {
    padding-top: 6rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
.cid-t4Ffk1cfW4 .card-wrapper {
    padding-right: 2rem;
}
@media (max-width: 992px) {
    .cid-t4Ffk1cfW4 .card {
        margin-bottom: 2rem!important;
    }
    .cid-t4Ffk1cfW4 .card-wrapper {
        padding: 0 1rem;
    }
}
@media (max-width: 767px) {
    .cid-t4Ffk1cfW4 .link-wrap {
        align-items: center;
    }
}
.cid-t4Ffk1cfW4 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-t4Ffk1cfW4 .card-title,
.cid-t4Ffk1cfW4 .card-box {
    color: #61615f;
}
.cid-ti4REcrLO0 {
    padding-top: 1rem;
    padding-bottom: 6rem;
    background-color: #f2f6e7;
}
.cid-ti4REcrLO0 .mbr-media {
    position: relative;
}
.cid-ti4REcrLO0 .mbr-media img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4REcrLO0 .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.cid-ti4REcrLO0 .mbr-media span {
    font-size: 4rem;
    transition: all 0.2s;
}
.cid-ti4REcrLO0 .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
}
.cid-ti4REcrLO0 .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
}
.cid-ti4REcrLO0 .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
}
.cid-ti4REcrLO0 .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;
    align-items: center;
    justify-content: center;
    display: flex;
}
.cid-ti4REcrLO0 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
.cid-t4iCOw3pbn {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
@media (max-width: 991px) {
    .cid-t4iCOw3pbn .image-wrapper {
        margin-bottom: 1rem;
    }
}
.cid-t4iCOw3pbn img {
    width: 100%;
}
@media (min-width: 992px) {
    .cid-t4iCOw3pbn .text-wrapper {
        padding: 2rem;
    }
}
.cid-t4iCOw3pbn .mbr-text {
    color: #61615f;
}
.cid-t4iCOw3pbn .mbr-section-title {
    color: #61615f;
}
.cid-t4iCOw3pbn .mbr-description {
    color: #61615f;
}
.cid-t4iE08hMGP {
    padding-top: 0rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
@media (max-width: 991px) {
    .cid-t4iE08hMGP .image-wrapper {
        margin-bottom: 1rem;
    }
}
.cid-t4iE08hMGP img {
    width: 100%;
}
@media (min-width: 992px) {
    .cid-t4iE08hMGP .text-wrapper {
        padding: 2rem;
    }
}
.cid-t4iE08hMGP .mbr-text {
    color: #61615f;
}
.cid-t4iE08hMGP .mbr-section-title {
    color: #61615f;
}
.cid-t4iE08hMGP .mbr-description {
    color: #61615f;
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-t4iEtscNOr {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-t4iEtscNOr .mbr-section-subtitle {
    color: #61615f;
}
.cid-t4iEtscNOr .mbr-section-title {
    color: #61615f;
}
.cid-t4jfMhMrsD {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-t4jfMhMrsD img,
.cid-t4jfMhMrsD .item-img {
    width: 100%;
}
.cid-t4jfMhMrsD .item:focus,
.cid-t4jfMhMrsD span:focus {
    outline: none;
}
.cid-t4jfMhMrsD .item {
    cursor: pointer;
    margin-bottom: 2rem;
}
.cid-t4jfMhMrsD .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-t4jfMhMrsD .item-wrapper .item-content {
        padding: 2rem;
    }
}
@media (max-width: 991px) {
    .cid-t4jfMhMrsD .item-wrapper .item-content {
        padding: 1rem;
    }
}
.cid-t4jfMhMrsD .mbr-section-btn {
    margin-top: auto !important;
}
.cid-t4jfMhMrsD .mbr-section-title {
    color: #232323;
}
.cid-t4jfMhMrsD .mbr-text,
.cid-t4jfMhMrsD .mbr-section-btn {
    text-align: left;
}
.cid-t4jfMhMrsD .item-title {
    text-align: left;
}
.cid-t4jfMhMrsD .item-subtitle {
    text-align: left;
}
.cid-t4FewID6Zp {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f6e7;
}
.cid-t4FewID6Zp .card-wrapper {
    padding-right: 2rem;
}
@media (max-width: 992px) {
    .cid-t4FewID6Zp .card {
        margin-bottom: 2rem!important;
    }
    .cid-t4FewID6Zp .card-wrapper {
        padding: 0 1rem;
    }
}
@media (max-width: 767px) {
    .cid-t4FewID6Zp .link-wrap {
        align-items: center;
    }
}
.cid-t4FewID6Zp .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-t4FewID6Zp .card-title,
.cid-t4FewID6Zp .card-box {
    color: #61615f;
}
.cid-t4FlLwqHPl {
    padding-top: 5rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-t4FlLwqHPl .mbr-section-title {
    color: #61615f;
}
.cid-t4FlLwqHPl .mbr-section-subtitle {
    color: #61615f;
}
.cid-t4FdII86o8 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
.cid-t4FdII86o8 .card-wrapper {
    padding-right: 2rem;
}
@media (max-width: 992px) {
    .cid-t4FdII86o8 .card {
        margin-bottom: 2rem!important;
    }
    .cid-t4FdII86o8 .card-wrapper {
        padding: 0 1rem;
    }
}
@media (max-width: 767px) {
    .cid-t4FdII86o8 .link-wrap {
        align-items: center;
    }
}
.cid-t4FdII86o8 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-t4FdII86o8 .card-title,
.cid-t4FdII86o8 .card-box {
    color: #61615f;
}
.cid-ti4I4rnIyn {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-ti4I4rnIyn .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4I4rnIyn .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ti4I4rnIyn .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-ti4I4rnIyn .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-ti4I4rnIyn .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-ti4I4rnIyn .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-ti4I4rnIyn .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-ti4I4rnIyn .content-wrapper .text-wrapper {
        padding-left: 2rem;
    }
}
.cid-ti4I4rnIyn .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4I4rnIyn .card-title {
    color: #61615f;
}
.cid-ti4I4rnIyn .mbr-text,
.cid-ti4I4rnIyn .mbr-section-btn {
    color: #61615f;
}
.cid-ti4IHpJa99 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-ti4IHpJa99 .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4IHpJa99 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ti4IHpJa99 .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-ti4IHpJa99 .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-ti4IHpJa99 .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-ti4IHpJa99 .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-ti4IHpJa99 .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-ti4IHpJa99 .content-wrapper .text-wrapper {
        padding-left: 2rem;
    }
}
.cid-ti4IHpJa99 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4IHpJa99 .card-title {
    color: #61615f;
}
.cid-ti4IHpJa99 .mbr-text,
.cid-ti4IHpJa99 .mbr-section-btn {
    color: #61615f;
}
.cid-ti4SGIWbym {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
.cid-ti4SGIWbym .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4SGIWbym .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 991px) {
    .cid-ti4SGIWbym .image-wrapper {
        margin-bottom: 1rem;
    }
}
.cid-ti4SGIWbym .row {
    flex-direction: row-reverse;
}
.cid-ti4SGIWbym img {
    width: 100%;
}
@media (min-width: 992px) {
    .cid-ti4SGIWbym .text-wrapper {
        padding: 2rem;
    }
}
.cid-ti4SGIWbym .mbr-section-title {
    color: #61615f;
}
.cid-ti4SGIWbym .mbr-text {
    color: #61615f;
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-t4iFJjOmUm {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-t4iFJjOmUm .mbr-section-title {
    color: #61615f;
}
.cid-t4iFJjOmUm .mbr-section-subtitle {
    color: #61615f;
}
.cid-t4jfX6r858 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-t4jfX6r858 img,
.cid-t4jfX6r858 .item-img {
    width: 100%;
}
.cid-t4jfX6r858 .item:focus,
.cid-t4jfX6r858 span:focus {
    outline: none;
}
.cid-t4jfX6r858 .item {
    cursor: pointer;
    margin-bottom: 2rem;
}
.cid-t4jfX6r858 .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-t4jfX6r858 .item-wrapper .item-content {
        padding: 2rem;
    }
}
@media (max-width: 991px) {
    .cid-t4jfX6r858 .item-wrapper .item-content {
        padding: 1rem;
    }
}
.cid-t4jfX6r858 .mbr-section-btn {
    margin-top: auto !important;
}
.cid-t4jfX6r858 .mbr-section-title {
    color: #232323;
}
.cid-t4jfX6r858 .mbr-text,
.cid-t4jfX6r858 .mbr-section-btn {
    text-align: left;
}
.cid-t4jfX6r858 .item-title {
    text-align: left;
}
.cid-t4jfX6r858 .item-subtitle {
    text-align: left;
}
.cid-t4Fgxww7Da {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f6e7;
}
.cid-t4Fgxww7Da .card-wrapper {
    padding-right: 2rem;
}
@media (max-width: 992px) {
    .cid-t4Fgxww7Da .card {
        margin-bottom: 2rem!important;
    }
    .cid-t4Fgxww7Da .card-wrapper {
        padding: 0 1rem;
    }
}
@media (max-width: 767px) {
    .cid-t4Fgxww7Da .link-wrap {
        align-items: center;
    }
}
.cid-t4Fgxww7Da .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-t4Fgxww7Da .card-title,
.cid-t4Fgxww7Da .card-box {
    color: #61615f;
}
.cid-t4FhD9PZgC {
    padding-top: 6rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-t4FhD9PZgC .item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.cid-t4FhD9PZgC .icon-box {
    background: #96bc0f;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cid-t4FhD9PZgC .mbr-iconfont {
    font-size: 2rem;
    color: #ffffff;
}
@media (max-width: 991px) {
    .cid-t4FhD9PZgC .card {
        margin-bottom: 2rem;
    }
    .cid-t4FhD9PZgC .card-wrapper {
        margin-bottom: 2rem;
    }
}
.cid-t4FhD9PZgC .card-title,
.cid-t4FhD9PZgC .card-box {
    color: #61615f;
}
.cid-t4FhD9PZgC .icon-title {
    color: #61615f;
}
.cid-t4FhD9PZgC .icon-text {
    color: #61615f;
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-teMmDKMctP {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-image: url("../../../assets/images/mbr-6.jpg");
}
.cid-teMmDKMctP .mbr-text,
.cid-teMmDKMctP .mbr-section-btn {
    color: #232323;
}
.cid-teMmDKMctP .card-title,
.cid-teMmDKMctP .card-box {
    color: #ffffff;
}
.cid-teMmDKMctP .mbr-text,
.cid-teMmDKMctP .link-wrap {
    color: #ffffff;
}
.cid-teMmDKMctP .card-box .mbr-text,
.cid-teMmDKMctP .mbr-section-btn {
    color: #ffffff;
}
.cid-t4j8AUzT1F {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
@media (min-width: 1500px) {
    .cid-t4j8AUzT1F .container {
        max-width: 1400px;
    }
}
.cid-t4j8AUzT1F .mbr-iconfont {
    display: block;
    font-size: 5rem;
    color: #96bc0f;
    margin-bottom: 2rem;
}
.cid-t4j8AUzT1F .card-wrapper {
    margin-top: 3rem;
}
.cid-t4j8AUzT1F .row {
    justify-content: center;
}
.cid-t4j8AUzT1F .mbr-section-title {
    color: #61615f;
}
.cid-t4j8AUzT1F .card-title,
.cid-t4j8AUzT1F .iconfont-wrapper {
    color: #61615f;
}
.cid-t4j8AUzT1F .mbr-section-subtitle {
    color: #61615f;
}
.cid-t4iZSJUl4K {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/produktionslinie-nano-paste-neu-blanko.jpg");
}
.cid-t4iZSJUl4K .mbr-text,
.cid-t4iZSJUl4K .mbr-section-btn {
    color: #232323;
}
.cid-t4iZSJUl4K .card-title,
.cid-t4iZSJUl4K .card-box {
    color: #ffffff;
}
.cid-t4iZSJUl4K .mbr-text,
.cid-t4iZSJUl4K .link-wrap {
    color: #ffffff;
}
.cid-t4j9tJl1Tk {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
@media (max-width: 991px) {
    .cid-t4j9tJl1Tk .image-wrapper {
        margin-bottom: 1rem;
    }
}
.cid-t4j9tJl1Tk .row {
    flex-direction: row-reverse;
}
.cid-t4j9tJl1Tk img {
    width: 100%;
}
@media (min-width: 992px) {
    .cid-t4j9tJl1Tk .text-wrapper {
        padding: 2rem;
    }
}
.cid-t4j9tJl1Tk .mbr-section-title {
    color: #61615f;
}
.cid-t4j9tJl1Tk .mbr-text {
    color: #61615f;
}
.cid-t4j9tJl1Tk .mbr-description {
    color: #61615f;
}
.cid-ti4Jvc72Cv {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f2f6e7;
}
.cid-ti4Jvc72Cv .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4Jvc72Cv .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ti4Jvc72Cv .video-wrapper iframe {
    width: 100%;
}
.cid-ti4Jvc72Cv .mbr-section-title,
.cid-ti4Jvc72Cv .mbr-section-subtitle,
.cid-ti4Jvc72Cv .mbr-text {
    text-align: center;
}
.cid-ti4Jvc72Cv .mbr-section-title {
    color: #61615f;
}
.cid-ti4Jvc72Cv .mbr-section-subtitle {
    color: #61615f;
}
.cid-t4jbbAcqIR {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
@media (min-width: 1500px) {
    .cid-t4jbbAcqIR .container {
        max-width: 1400px;
    }
}
.cid-t4jbbAcqIR .mbr-iconfont {
    display: block;
    font-size: 5rem;
    color: #96bc0f;
    margin-bottom: 2rem;
}
.cid-t4jbbAcqIR .card-wrapper {
    margin-top: 3rem;
}
.cid-t4jbbAcqIR .row {
    justify-content: center;
}
.cid-t4jbbAcqIR .mbr-section-title {
    color: #61615f;
}
.cid-t4jbbAcqIR .card-title,
.cid-t4jbbAcqIR .iconfont-wrapper {
    color: #61615f;
}
.cid-t4jbbAcqIR .card-text {
    color: #61615f;
}
.cid-t4L9ssJ4mn {
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-image: url("../../../assets/images/istock-1340721567.jpeg");
}
.cid-t4L9ssJ4mn .image-wrapper {
    display: flex;
    align-items: center;
}
.cid-t4L9ssJ4mn .card-wrapper {
    margin-bottom: 2rem;
    display: flex;
    border-radius: 4px;
    background: #fafafa;
}
@media (max-width: 991px) {
    .cid-t4L9ssJ4mn .card-wrapper {
        padding: 1rem 2rem;
    }
}
@media (min-width: 992px) {
    .cid-t4L9ssJ4mn .card-wrapper {
        padding: 2rem 4rem;
    }
}
.cid-t4L9ssJ4mn .mbr-iconfont {
    font-size: 2rem;
    padding-right: 1.5rem;
    color: #96bc0f;
}
.cid-t4L9ssJ4mn P {
    color: #61615f;
}
.cid-t4L9ssJ4mn .card-title {
    color: #61615f;
}
.cid-t4L9ssJ4mn .mbr-section-title {
    color: #ffffff;
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-t4joN8DJir {
    padding-top: 5rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}
.cid-t4joN8DJir .mbr-section-title {
    color: #61615f;
}
.cid-t4joN8DJir .mbr-section-subtitle {
    color: #61615f;
}
.cid-ti3tqh0tDv {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
.cid-ti3tqh0tDv img {
    width: 120px;
    margin: auto;
}
.cid-ti3tqh0tDv .card {
    transition: all 0.3s;
    height: fit-content;
    padding: 1rem 0;
    opacity: 0.7;
    margin-bottom: 1rem;
}
@media (min-width: 992px) {
    .cid-ti3tqh0tDv .card {
        max-width: 12.5%;
    }
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-ti4MfJaMd0 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-ti4MfJaMd0 .mbr-section-subtitle {
    color: #61615f;
}
.cid-ti4MfJaMd0 .mbr-text {
    color: #61615f;
}
.cid-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-t4ioMeiHcx {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-t4ioMeiHcx .mbr-section-title {
    color: #61615f;
}
.cid-t4ioMeiHcx .mbr-section-subtitle {
    color: #61615f;
}
.cid-t4ioMeiHcx .mbr-text {
    color: #61615f;
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-t4iGdDkcIc {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-t4iGdDkcIc .mbr-section-title {
    color: #61615f;
}
.cid-t4iGdDkcIc .mbr-section-subtitle {
    color: #61615f;
}
.cid-t4jeM9cMGx {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-t4jeM9cMGx img,
.cid-t4jeM9cMGx .item-img {
    width: 100%;
}
.cid-t4jeM9cMGx .item:focus,
.cid-t4jeM9cMGx span:focus {
    outline: none;
}
.cid-t4jeM9cMGx .item {
    cursor: pointer;
    margin-bottom: 2rem;
}
.cid-t4jeM9cMGx .item-wrapper {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-t4jeM9cMGx .item-wrapper .item-content {
        padding: 2rem;
    }
}
@media (max-width: 991px) {
    .cid-t4jeM9cMGx .item-wrapper .item-content {
        padding: 1rem;
    }
}
.cid-t4jeM9cMGx .mbr-section-btn {
    margin-top: auto !important;
}
.cid-t4jeM9cMGx .mbr-section-title {
    color: #232323;
}
.cid-t4jeM9cMGx .mbr-text,
.cid-t4jeM9cMGx .mbr-section-btn {
    text-align: left;
}
.cid-t4jeM9cMGx .item-title {
    text-align: left;
}
.cid-t4jeM9cMGx .item-subtitle {
    text-align: left;
}
.cid-teMn42lkFi {
    padding-top: 9rem;
    padding-bottom: 9rem;
    background-image: url("../../../assets/images/sofa-paar-foto-paris.jpeg");
}
.cid-teMn42lkFi .mbr-text,
.cid-teMn42lkFi .mbr-section-btn {
    color: #232323;
}
.cid-teMn42lkFi .card-title,
.cid-teMn42lkFi .card-box {
    color: #ffffff;
}
.cid-teMn42lkFi .mbr-text,
.cid-teMn42lkFi .link-wrap {
    color: #ffffff;
}
.cid-teMn42lkFi .card-box .mbr-text,
.cid-teMn42lkFi .mbr-section-btn {
    color: #ffffff;
}
.cid-teMxXfCps9 {
    padding-top: 0rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}
.cid-teMxXfCps9 .item {
    padding-bottom: 2rem;
}
.cid-teMxXfCps9 .item-wrapper {
    height: 100%;
    position: relative;
}
.cid-teMxXfCps9 .item-wrapper img {
    height: 100%;
    object-fit: cover;
}
.cid-teMxXfCps9 .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-teMxXfCps9 .item-wrapper:hover .icon-wrapper {
    opacity: 0.7;
}
.cid-teMxXfCps9 .carousel-control,
.cid-teMxXfCps9 .close {
    background: #1b1b1b;
}
.cid-teMxXfCps9 .carousel-control-prev {
    margin-left: 2.5rem;
}
.cid-teMxXfCps9 .carousel-control-prev span {
    margin-right: 5px;
}
.cid-teMxXfCps9 .carousel-control-next {
    margin-right: 2.5rem;
}
.cid-teMxXfCps9 .carousel-control-next span {
    margin-left: 5px;
}
.cid-teMxXfCps9 .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-teMxXfCps9 .close::before {
    content: '\e91a';
}
.cid-teMxXfCps9 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
.cid-teMxXfCps9 .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-teMxXfCps9 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-teMxXfCps9 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-teMxXfCps9 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}
.cid-teMxXfCps9 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}
.cid-teMxXfCps9 .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-teMxXfCps9 .carousel-indicators li.active,
.cid-teMxXfCps9 .carousel-indicators li:hover {
    opacity: 0.9;
}
.cid-teMxXfCps9 .carousel-indicators li::after,
.cid-teMxXfCps9 .carousel-indicators li::before {
    content: none;
}
.cid-teMxXfCps9 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}
@media (max-width: 768px) {
    .cid-teMxXfCps9 .carousel-indicators {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .cid-teMxXfCps9 .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}
@media (max-width: 767px) {
    .cid-teMxXfCps9 .carousel-indicators {
        display: none;
    }
}
.cid-teMxXfCps9 .carousel-inner {
    display: flex;
    align-items: center;
}
.cid-teMxXfCps9 .carousel-inner > .active {
    display: block;
}
.cid-teMxXfCps9 .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}
.cid-teMxXfCps9 .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}
.cid-teMxXfCps9 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}
@media (max-width: 768px) {
    .cid-teMxXfCps9 .carousel-control,
    .cid-teMxXfCps9 .carousel-indicators,
    .cid-teMxXfCps9 .modal .close {
        position: fixed;
    }
}
@media (max-width: 767px) {
    .cid-teMxXfCps9 .mbr-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .cid-teMxXfCps9 .mbr-slider > .container .carousel-control {
        margin-bottom: 0;
    }
}
.cid-teMxXfCps9 .carousel-indicators .active,
.cid-teMxXfCps9 .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}
.cid-teMxXfCps9 .carousel-indicators .active {
    background: #fff;
}
.cid-teMxXfCps9 .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}
.cid-teMxXfCps9 .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}
.cid-teMxXfCps9 .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}
.cid-teMxXfCps9 .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}
.cid-teMxXfCps9 .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}
.cid-teMxXfCps9 .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}
.cid-teMxXfCps9 .carousel {
    width: 100%;
}
.cid-teMxXfCps9 .modal-backdrop.in {
    opacity: 0.8;
}
.cid-teMxXfCps9 .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}
.cid-teMxXfCps9 .modal.fade .modal-dialog,
.cid-teMxXfCps9 .modal.in .modal-dialog {
    transform: none;
}
.cid-teMxXfCps9 .mbr-gallery .item-wrapper {
    cursor: pointer;
}
.cid-teMxXfCps9 H6 {
    text-align: center;
}
.cid-t4FjgY8kbG {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f6e7;
}
.cid-t4FjgY8kbG ul {
    list-style: none;
    margin: 0;
    padding-left: 2.5rem;
}
.cid-t4FjgY8kbG li {
    position: relative;
    margin-bottom: 1rem;
}
.cid-t4FjgY8kbG ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #7b9d0a;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}
.cid-t4FjgY8kbG H3 {
    color: #61615f;
}
.cid-t4FjgY8kbG .list {
    color: #61615f;
}
.cid-t4Fjcp2WXl {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
@media (max-width: 991px) {
    .cid-t4Fjcp2WXl .image-wrapper {
        margin-bottom: 1rem;
    }
}
.cid-t4Fjcp2WXl .row {
    flex-direction: row-reverse;
}
.cid-t4Fjcp2WXl img {
    width: 100%;
}
.cid-t4Fjcp2WXl .mbr-text {
    color: #61615f;
}
.cid-t4Flc98GqG {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
.cid-t4Flc98GqG blockquote {
    border-color: #96bc0f;
    border-radius: 4px;
    background-color: #fafafa;
}
.cid-t4Flc98GqG .mbr-text {
    color: #61615f;
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-t4bYT38j7N {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}
.cid-t4bYT38j7N nav.navbar {
    position: fixed;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t4bYT38j7N .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}
.cid-t4bYT38j7N .dropdown-item:hover,
.cid-t4bYT38j7N .dropdown-item:focus {
    background: #96bc0f !important;
    color: white !important;
}
.cid-t4bYT38j7N .dropdown-item:hover span {
    color: white;
}
.cid-t4bYT38j7N .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.cid-t4bYT38j7N .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.cid-t4bYT38j7N .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}
.cid-t4bYT38j7N .nav-link {
    position: relative;
}
.cid-t4bYT38j7N .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .container {
        flex-wrap: nowrap;
    }
}
.cid-t4bYT38j7N .iconfont-wrapper {
    color: #7b9d0a !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown-menu,
.cid-t4bYT38j7N .navbar.opened {
    background: #ffffff !important;
}
.cid-t4bYT38j7N .nav-item:focus,
.cid-t4bYT38j7N .nav-link:focus {
    outline: none;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-t4bYT38j7N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-t4bYT38j7N .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-t4bYT38j7N .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.opened {
    transition: all 0.3s;
}
.cid-t4bYT38j7N .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}
.cid-t4bYT38j7N .navbar .navbar-logo img {
    width: auto;
}
.cid-t4bYT38j7N .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar.collapsed {
    justify-content: center;
}
.cid-t4bYT38j7N .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-t4bYT38j7N .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
@media (min-width: 992px) {
    .cid-t4bYT38j7N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.6rem);
    }
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-t4bYT38j7N .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}
.cid-t4bYT38j7N .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
    .cid-t4bYT38j7N .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-t4bYT38j7N .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-t4bYT38j7N .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-t4bYT38j7N .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-t4bYT38j7N .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-t4bYT38j7N .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-t4bYT38j7N .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-t4bYT38j7N .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-t4bYT38j7N .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
.cid-t4bYT38j7N .navbar.navbar-short {
    min-height: 60px;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-t4bYT38j7N .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-t4bYT38j7N .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}
.cid-t4bYT38j7N .navbar-brand .navbar-caption {
    line-height: inherit !important;
}
.cid-t4bYT38j7N .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-t4bYT38j7N .dropdown-item.active,
.cid-t4bYT38j7N .dropdown-item:active {
    background-color: transparent;
}
.cid-t4bYT38j7N .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-t4bYT38j7N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}
.cid-t4bYT38j7N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
.cid-t4bYT38j7N .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-t4bYT38j7N ul.navbar-nav {
    flex-wrap: wrap;
}
.cid-t4bYT38j7N .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-t4bYT38j7N button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #7b9d0a;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-t4bYT38j7N button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-t4bYT38j7N nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-t4bYT38j7N .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}
.cid-t4bYT38j7N a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cid-t4bYT38j7N .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-t4bYT38j7N .navbar {
        height: 70px;
    }
    .cid-t4bYT38j7N .navbar.opened {
        height: auto;
    }
    .cid-t4bYT38j7N .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-teMl4Al0Uv {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-image: url("../../../assets/images/mbr-11.jpg");
}
.cid-teMl4Al0Uv .mbr-text,
.cid-teMl4Al0Uv .mbr-section-btn {
    color: #232323;
}
.cid-teMl4Al0Uv .card-title,
.cid-teMl4Al0Uv .card-box {
    color: #ffffff;
}
.cid-teMl4Al0Uv .mbr-text,
.cid-teMl4Al0Uv .link-wrap {
    color: #ffffff;
}
.cid-teMl4Al0Uv .card-box .mbr-text,
.cid-teMl4Al0Uv .mbr-section-btn {
    color: #ffffff;
}
.cid-teMkQhM2SZ {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-teMkQhM2SZ .mbr-text {
    color: #61615f;
}
.cid-teMkQhM2SZ .mbr-section-subtitle {
    color: #61615f;
}
.cid-teMkSASyot {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-teMkSASyot .item {
    padding-bottom: 2rem;
}
.cid-teMkSASyot .item-wrapper {
    position: relative;
}
.cid-teMkSASyot .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-teMkSASyot .item-wrapper:hover .icon-wrapper {
    opacity: 0.7;
}
.cid-teMkSASyot .carousel-control,
.cid-teMkSASyot .close {
    background: #1b1b1b;
}
.cid-teMkSASyot .carousel-control-prev {
    margin-left: 2.5rem;
}
.cid-teMkSASyot .carousel-control-prev span {
    margin-right: 5px;
}
.cid-teMkSASyot .carousel-control-next {
    margin-right: 2.5rem;
}
.cid-teMkSASyot .carousel-control-next span {
    margin-left: 5px;
}
.cid-teMkSASyot .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-teMkSASyot .close::before {
    content: '\e91a';
}
.cid-teMkSASyot .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
.cid-teMkSASyot .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-teMkSASyot .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-teMkSASyot .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-teMkSASyot .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}
.cid-teMkSASyot .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}
.cid-teMkSASyot .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-teMkSASyot .carousel-indicators li.active,
.cid-teMkSASyot .carousel-indicators li:hover {
    opacity: 0.9;
}
.cid-teMkSASyot .carousel-indicators li::after,
.cid-teMkSASyot .carousel-indicators li::before {
    content: none;
}
.cid-teMkSASyot .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}
@media (max-width: 768px) {
    .cid-teMkSASyot .carousel-indicators {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .cid-teMkSASyot .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}
@media (max-width: 767px) {
    .cid-teMkSASyot .carousel-indicators {
        display: none;
    }
}
.cid-teMkSASyot .carousel-inner {
    display: flex;
    align-items: center;
}
.cid-teMkSASyot .carousel-inner > .active {
    display: block;
}
.cid-teMkSASyot .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}
.cid-teMkSASyot .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}
.cid-teMkSASyot .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}
@media (max-width: 768px) {
    .cid-teMkSASyot .carousel-control,
    .cid-teMkSASyot .carousel-indicators,
    .cid-teMkSASyot .modal .close {
        position: fixed;
    }
}
@media (max-width: 767px) {
    .cid-teMkSASyot .mbr-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .cid-teMkSASyot .mbr-slider > .container .carousel-control {
        margin-bottom: 0;
    }
}
.cid-teMkSASyot .carousel-indicators .active,
.cid-teMkSASyot .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}
.cid-teMkSASyot .carousel-indicators .active {
    background: #fff;
}
.cid-teMkSASyot .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}
.cid-teMkSASyot .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}
.cid-teMkSASyot .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}
.cid-teMkSASyot .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}
.cid-teMkSASyot .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}
.cid-teMkSASyot .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}
.cid-teMkSASyot .carousel {
    width: 100%;
}
.cid-teMkSASyot .modal-backdrop.in {
    opacity: 0.8;
}
.cid-teMkSASyot .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}
.cid-teMkSASyot .modal.fade .modal-dialog,
.cid-teMkSASyot .modal.in .modal-dialog {
    transform: none;
}
.cid-teMkSASyot .mbr-gallery .item-wrapper {
    cursor: pointer;
}
.cid-teMkSASyot H6 {
    text-align: center;
}
.cid-teMkTfgLPg {
    padding-top: 0rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-teMkTfgLPg .item {
    padding-bottom: 2rem;
}
.cid-teMkTfgLPg .item-wrapper {
    position: relative;
}
.cid-teMkTfgLPg .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-teMkTfgLPg .item-wrapper:hover .icon-wrapper {
    opacity: 0.7;
}
.cid-teMkTfgLPg .carousel-control,
.cid-teMkTfgLPg .close {
    background: #1b1b1b;
}
.cid-teMkTfgLPg .carousel-control-prev {
    margin-left: 2.5rem;
}
.cid-teMkTfgLPg .carousel-control-prev span {
    margin-right: 5px;
}
.cid-teMkTfgLPg .carousel-control-next {
    margin-right: 2.5rem;
}
.cid-teMkTfgLPg .carousel-control-next span {
    margin-left: 5px;
}
.cid-teMkTfgLPg .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-teMkTfgLPg .close::before {
    content: '\e91a';
}
.cid-teMkTfgLPg .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
.cid-teMkTfgLPg .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-teMkTfgLPg .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-teMkTfgLPg .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-teMkTfgLPg .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}
.cid-teMkTfgLPg .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}
.cid-teMkTfgLPg .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-teMkTfgLPg .carousel-indicators li.active,
.cid-teMkTfgLPg .carousel-indicators li:hover {
    opacity: 0.9;
}
.cid-teMkTfgLPg .carousel-indicators li::after,
.cid-teMkTfgLPg .carousel-indicators li::before {
    content: none;
}
.cid-teMkTfgLPg .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}
@media (max-width: 768px) {
    .cid-teMkTfgLPg .carousel-indicators {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .cid-teMkTfgLPg .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}
@media (max-width: 767px) {
    .cid-teMkTfgLPg .carousel-indicators {
        display: none;
    }
}
.cid-teMkTfgLPg .carousel-inner {
    display: flex;
    align-items: center;
}
.cid-teMkTfgLPg .carousel-inner > .active {
    display: block;
}
.cid-teMkTfgLPg .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}
.cid-teMkTfgLPg .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}
.cid-teMkTfgLPg .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}
@media (max-width: 768px) {
    .cid-teMkTfgLPg .carousel-control,
    .cid-teMkTfgLPg .carousel-indicators,
    .cid-teMkTfgLPg .modal .close {
        position: fixed;
    }
}
@media (max-width: 767px) {
    .cid-teMkTfgLPg .mbr-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .cid-teMkTfgLPg .mbr-slider > .container .carousel-control {
        margin-bottom: 0;
    }
}
.cid-teMkTfgLPg .carousel-indicators .active,
.cid-teMkTfgLPg .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}
.cid-teMkTfgLPg .carousel-indicators .active {
    background: #fff;
}
.cid-teMkTfgLPg .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}
.cid-teMkTfgLPg .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}
.cid-teMkTfgLPg .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}
.cid-teMkTfgLPg .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}
.cid-teMkTfgLPg .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}
.cid-teMkTfgLPg .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}
.cid-teMkTfgLPg .carousel {
    width: 100%;
}
.cid-teMkTfgLPg .modal-backdrop.in {
    opacity: 0.8;
}
.cid-teMkTfgLPg .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}
.cid-teMkTfgLPg .modal.fade .modal-dialog,
.cid-teMkTfgLPg .modal.in .modal-dialog {
    transform: none;
}
.cid-teMkTfgLPg .mbr-gallery .item-wrapper {
    cursor: pointer;
}
.cid-teMkTfgLPg H6 {
    text-align: center;
}
.cid-tgK7DegoNX {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-tgK7DegoNX .mbr-fallback-image.disabled {
    display: none;
}
.cid-tgK7DegoNX .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tgK7DegoNX .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-tgK7DegoNX .content-wrapper .row {
        flex-direction: column-reverse;
    }
    .cid-tgK7DegoNX .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-tgK7DegoNX .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-tgK7DegoNX .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-tgK7DegoNX .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-tgK7DegoNX .content-wrapper .text-wrapper {
        padding-right: 2rem;
    }
}
.cid-tgK7DegoNX .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-tgK7DegoNX .card-title {
    color: #61615f;
}
.cid-tgK7DegoNX .mbr-text,
.cid-tgK7DegoNX .mbr-section-btn {
    color: #61615f;
}
.cid-tgK8NdGBhm {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-tgK8NdGBhm .mbr-fallback-image.disabled {
    display: none;
}
.cid-tgK8NdGBhm .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tgK8NdGBhm .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-tgK8NdGBhm .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-tgK8NdGBhm .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-tgK8NdGBhm .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-tgK8NdGBhm .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-tgK8NdGBhm .content-wrapper .text-wrapper {
        padding-left: 2rem;
    }
}
.cid-tgK8NdGBhm .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-tgK8NdGBhm .card-title {
    color: #61615f;
}
.cid-tgK8NdGBhm .mbr-text,
.cid-tgK8NdGBhm .mbr-section-btn {
    color: #61615f;
}
.cid-ti4jGh5PcP {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-ti4jGh5PcP .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4jGh5PcP .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ti4jGh5PcP .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-ti4jGh5PcP .content-wrapper .row {
        flex-direction: column-reverse;
    }
    .cid-ti4jGh5PcP .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-ti4jGh5PcP .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-ti4jGh5PcP .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-ti4jGh5PcP .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-ti4jGh5PcP .content-wrapper .text-wrapper {
        padding-right: 2rem;
    }
}
.cid-ti4jGh5PcP .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4jGh5PcP .card-title {
    color: #61615f;
}
.cid-ti4jGh5PcP .mbr-text,
.cid-ti4jGh5PcP .mbr-section-btn {
    color: #61615f;
}
.cid-ti4kmVsZGZ {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-ti4kmVsZGZ .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4kmVsZGZ .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ti4kmVsZGZ .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-ti4kmVsZGZ .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-ti4kmVsZGZ .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-ti4kmVsZGZ .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-ti4kmVsZGZ .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-ti4kmVsZGZ .content-wrapper .text-wrapper {
        padding-left: 2rem;
    }
}
.cid-ti4kmVsZGZ .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4kmVsZGZ .card-title {
    color: #61615f;
}
.cid-ti4kmVsZGZ .mbr-text,
.cid-ti4kmVsZGZ .mbr-section-btn {
    color: #61615f;
}
.cid-ti4kRxNbUX {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-ti4kRxNbUX .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4kRxNbUX .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ti4kRxNbUX .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-ti4kRxNbUX .content-wrapper .row {
        flex-direction: column-reverse;
    }
    .cid-ti4kRxNbUX .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-ti4kRxNbUX .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-ti4kRxNbUX .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-ti4kRxNbUX .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-ti4kRxNbUX .content-wrapper .text-wrapper {
        padding-right: 2rem;
    }
}
.cid-ti4kRxNbUX .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4kRxNbUX .card-title {
    color: #61615f;
}
.cid-ti4kRxNbUX .mbr-text,
.cid-ti4kRxNbUX .mbr-section-btn {
    color: #61615f;
}
.cid-ti4l6qadGg {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-ti4l6qadGg .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4l6qadGg .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ti4l6qadGg .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-ti4l6qadGg .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-ti4l6qadGg .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-ti4l6qadGg .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-ti4l6qadGg .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-ti4l6qadGg .content-wrapper .text-wrapper {
        padding-left: 2rem;
    }
}
.cid-ti4l6qadGg .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4l6qadGg .card-title {
    color: #61615f;
}
.cid-ti4l6qadGg .mbr-text,
.cid-ti4l6qadGg .mbr-section-btn {
    color: #61615f;
}
.cid-ti4mBaNnm3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-ti4mBaNnm3 .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4mBaNnm3 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ti4mBaNnm3 .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-ti4mBaNnm3 .content-wrapper .row {
        flex-direction: column-reverse;
    }
    .cid-ti4mBaNnm3 .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-ti4mBaNnm3 .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-ti4mBaNnm3 .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-ti4mBaNnm3 .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-ti4mBaNnm3 .content-wrapper .text-wrapper {
        padding-right: 2rem;
    }
}
.cid-ti4mBaNnm3 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4mBaNnm3 .card-title {
    color: #61615f;
}
.cid-ti4mBaNnm3 .mbr-text,
.cid-ti4mBaNnm3 .mbr-section-btn {
    color: #61615f;
}
.cid-ti4mPy3ISX {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-ti4mPy3ISX .mbr-fallback-image.disabled {
    display: none;
}
.cid-ti4mPy3ISX .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ti4mPy3ISX .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-ti4mPy3ISX .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-ti4mPy3ISX .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-ti4mPy3ISX .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-ti4mPy3ISX .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-ti4mPy3ISX .content-wrapper .text-wrapper {
        padding-left: 2rem;
    }
}
.cid-ti4mPy3ISX .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-ti4mPy3ISX .card-title {
    color: #61615f;
}
.cid-ti4mPy3ISX .mbr-text,
.cid-ti4mPy3ISX .mbr-section-btn {
    color: #61615f;
}
.cid-t4bZXAbwvR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-t4bZXAbwvR .row-links {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .social-row {
    width: 100%;
    justify-content: center;
}
.cid-t4bZXAbwvR .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-t4bZXAbwvR .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-t4bZXAbwvR .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-t4bZXAbwvR .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-t4bZXAbwvR .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-t4bZXAbwvR .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-t4bZXAbwvR .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-t4bZXAbwvR .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-t4bZXAbwvR .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-tjt3iIxf0N {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-tjt3iIxf0N .mbr-section-subtitle {
    color: #61615f;
}
.cid-tjt3iIxf0N .mbr-text {
    color: #61615f;
}
.cid-toKFiGEhwE {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-image: url("../../../assets/images/pexels-towfiqu-barbhuiya-9099823.jpeg");
}
.cid-toKFiGEhwE .mbr-text,
.cid-toKFiGEhwE .mbr-section-btn {
    color: #232323;
}
.cid-toKFiGEhwE .card-title,
.cid-toKFiGEhwE .card-box {
    color: #ffffff;
}
.cid-toKFiGEhwE .mbr-text,
.cid-toKFiGEhwE .link-wrap {
    color: #ffffff;
}
.cid-toKFiGEhwE .card-box .mbr-text,
.cid-toKFiGEhwE .mbr-section-btn {
    color: #ffffff;
}
.cid-toKFiHn8BU {
    padding-top: 3rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-toKFiHn8BU .mbr-fallback-image.disabled {
    display: none;
}
.cid-toKFiHn8BU .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-toKFiHn8BU .mbr-section-title {
    color: #61615f;
}
.cid-toKFiHn8BU .mbr-section-subtitle {
    color: #61615f;
}
.cid-toKFiHXlQH {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background-color: #f2f6e7;
}
.cid-toKFiHXlQH .item:focus,
.cid-toKFiHXlQH span:focus {
    outline: none;
}
.cid-toKFiHXlQH .item-wrapper {
    position: relative;
}
.cid-toKFiHXlQH .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-toKFiHXlQH .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-toKFiHXlQH .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-toKFiHXlQH .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-toKFiHXlQH .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-toKFiHXlQH .mbr-section-btn {
    margin-top: auto !important;
}
.cid-toKFiHXlQH .mbr-section-title {
    color: #232323;
}
.cid-toKFiHXlQH .mbr-text,
.cid-toKFiHXlQH .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-toKFiHXlQH .item-title {
    text-align: center;
}
.cid-toKFiHXlQH .item-subtitle {
    text-align: center;
    color: #61615f;
}
.cid-toKFiHXlQH .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}
@media (max-width: 768px) {
    .cid-toKFiHXlQH .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-toKFiHXlQH .embla__button--next,
.cid-toKFiHXlQH .embla__button--prev {
    display: flex;
}
.cid-toKFiHXlQH .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-toKFiHXlQH .embla__button {
        display: none;
    }
}
.cid-toKFiHXlQH .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-toKFiHXlQH .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-toKFiHXlQH .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-toKFiHXlQH .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-toKFiHXlQH .embla__button {
        top: auto;
    }
}
.cid-toKFiHXlQH .embla {
    position: relative;
    width: 100%;
}
.cid-toKFiHXlQH .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-toKFiHXlQH .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-toKFiHXlQH .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-toKFiHXlQH .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-toLa4AdkSp {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: url("../../../assets/images/istock-1340721567.jpeg");
}
.cid-toLa4AdkSp .image-wrapper {
    display: flex;
    align-items: center;
}
.cid-toLa4AdkSp .card-wrapper {
    margin-bottom: 2rem;
    display: flex;
    border-radius: 4px;
    background: #fafafa;
}
@media (max-width: 991px) {
    .cid-toLa4AdkSp .card-wrapper {
        padding: 1rem 2rem;
    }
}
@media (min-width: 992px) {
    .cid-toLa4AdkSp .card-wrapper {
        padding: 2rem 4rem;
    }
}
.cid-toLa4AdkSp .mbr-iconfont {
    font-size: 2rem;
    padding-right: 1.5rem;
    color: #96bc0f;
}
.cid-toLa4AdkSp P {
    color: #61615f;
}
.cid-toLa4AdkSp .card-title {
    color: #61615f;
}
.cid-toLa4AdkSp .mbr-section-title {
    color: #ffffff;
}
.cid-toKFiPexGK {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #61615f;
}
.cid-toKFiPexGK .row-links {
    width: 100%;
    justify-content: center;
}
.cid-toKFiPexGK .social-row {
    width: 100%;
    justify-content: center;
}
.cid-toKFiPexGK .media-container-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cid-toKFiPexGK .media-container-row .foot-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}
.cid-toKFiPexGK .media-container-row .foot-menu li {
    padding: 0 1rem 1rem 1rem;
}
.cid-toKFiPexGK .media-container-row .foot-menu li p {
    margin: 0;
}
.cid-toKFiPexGK .media-container-row .social-list {
    width: auto;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cid-toKFiPexGK .media-container-row .social-list .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}
.cid-toKFiPexGK .media-container-row .social-list .soc-item {
    margin: 0 .5rem;
}
.cid-toKFiPexGK .media-container-row .social-list a {
    margin: 0;
    opacity: .5;
    transition: .2s linear;
}
.cid-toKFiPexGK .media-container-row .social-list a:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .cid-toKFiPexGK .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.cid-toKFiPexGK .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}
.cid-toKFiPexGK .media-container-row .row-copirayt p {
    width: 100%;
}
.cid-toAy9fQhnl {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-image: url("../../../assets/images/pexels-andrea-piacquadio-3771097.jpeg");
}
.cid-toAy9fQhnl .mbr-text,
.cid-toAy9fQhnl .mbr-section-btn {
    color: #232323;
}
.cid-toAy9fQhnl .card-title,
.cid-toAy9fQhnl .card-box {
    color: #ffffff;
}
.cid-toAy9fQhnl .mbr-text,
.cid-toAy9fQhnl .link-wrap {
    color: #ffffff;
}
.cid-toAy9fQhnl .card-box .mbr-text,
.cid-toAy9fQhnl .mbr-section-btn {
    color: #ffffff;
}

.cid-toFy5CjRSR {
    padding-top: 3rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-toFy5CjRSR .mbr-fallback-image.disabled {
    display: none;
}
.cid-toFy5CjRSR .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-toFy5CjRSR .mbr-section-title {
    color: #61615f;
}
.cid-toFy5CjRSR .mbr-section-subtitle {
    color: #61615f;
}
.cid-toG9j6WzkF {
    padding-top: 2rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
.cid-toG9j6WzkF .item:focus,
.cid-toG9j6WzkF span:focus {
    outline: none;
}
.cid-toG9j6WzkF .item-wrapper {
    position: relative;
}
.cid-toG9j6WzkF .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-toG9j6WzkF .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-toG9j6WzkF .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-toG9j6WzkF .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-toG9j6WzkF .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-toG9j6WzkF .mbr-section-btn {
    margin-top: auto !important;
}
.cid-toG9j6WzkF .mbr-section-title {
    color: #232323;
}
.cid-toG9j6WzkF .mbr-text,
.cid-toG9j6WzkF .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-toG9j6WzkF .item-title {
    text-align: center;
}
.cid-toG9j6WzkF .item-subtitle {
    text-align: center;
    color: #61615f;
}
.cid-toG9j6WzkF .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}
@media (max-width: 768px) {
    .cid-toG9j6WzkF .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-toG9j6WzkF .embla__button--next,
.cid-toG9j6WzkF .embla__button--prev {
    display: flex;
}
.cid-toG9j6WzkF .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-toG9j6WzkF .embla__button {
        display: none;
    }
}
.cid-toG9j6WzkF .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-toG9j6WzkF .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-toG9j6WzkF .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-toG9j6WzkF .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-toG9j6WzkF .embla__button {
        top: auto;
    }
}
.cid-toG9j6WzkF .embla {
    position: relative;
    width: 100%;
}
.cid-toG9j6WzkF .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-toG9j6WzkF .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-toG9j6WzkF .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-toG9j6WzkF .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-toGb4yY7nF {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
.cid-toGb4yY7nF .item:focus,
.cid-toGb4yY7nF span:focus {
    outline: none;
}
.cid-toGb4yY7nF .item-wrapper {
    position: relative;
}
.cid-toGb4yY7nF .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-toGb4yY7nF .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-toGb4yY7nF .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-toGb4yY7nF .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-toGb4yY7nF .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-toGb4yY7nF .mbr-section-btn {
    margin-top: auto !important;
}
.cid-toGb4yY7nF .mbr-section-title {
    color: #232323;
}
.cid-toGb4yY7nF .mbr-text,
.cid-toGb4yY7nF .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-toGb4yY7nF .item-title {
    text-align: center;
}
.cid-toGb4yY7nF .item-subtitle {
    text-align: center;
    color: #61615f;
}
.cid-toGb4yY7nF .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}
@media (max-width: 768px) {
    .cid-toGb4yY7nF .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-toGb4yY7nF .embla__button--next,
.cid-toGb4yY7nF .embla__button--prev {
    display: flex;
}
.cid-toGb4yY7nF .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-toGb4yY7nF .embla__button {
        display: none;
    }
}
.cid-toGb4yY7nF .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-toGb4yY7nF .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-toGb4yY7nF .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-toGb4yY7nF .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-toGb4yY7nF .embla__button {
        top: auto;
    }
}
.cid-toGb4yY7nF .embla {
    position: relative;
    width: 100%;
}
.cid-toGb4yY7nF .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-toGb4yY7nF .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-toGb4yY7nF .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-toGb4yY7nF .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-toGc4NZxRL {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
.cid-toGc4NZxRL .item:focus,
.cid-toGc4NZxRL span:focus {
    outline: none;
}
.cid-toGc4NZxRL .item-wrapper {
    position: relative;
}
.cid-toGc4NZxRL .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-toGc4NZxRL .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-toGc4NZxRL .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-toGc4NZxRL .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-toGc4NZxRL .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-toGc4NZxRL .mbr-section-btn {
    margin-top: auto !important;
}
.cid-toGc4NZxRL .mbr-section-title {
    color: #232323;
}
.cid-toGc4NZxRL .mbr-text,
.cid-toGc4NZxRL .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-toGc4NZxRL .item-title {
    text-align: center;
}
.cid-toGc4NZxRL .item-subtitle {
    text-align: center;
    color: #61615f;
}
.cid-toGc4NZxRL .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}
@media (max-width: 768px) {
    .cid-toGc4NZxRL .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-toGc4NZxRL .embla__button--next,
.cid-toGc4NZxRL .embla__button--prev {
    display: flex;
}
.cid-toGc4NZxRL .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-toGc4NZxRL .embla__button {
        display: none;
    }
}
.cid-toGc4NZxRL .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-toGc4NZxRL .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-toGc4NZxRL .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-toGc4NZxRL .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-toGc4NZxRL .embla__button {
        top: auto;
    }
}
.cid-toGc4NZxRL .embla {
    position: relative;
    width: 100%;
}
.cid-toGc4NZxRL .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-toGc4NZxRL .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-toGc4NZxRL .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-toGc4NZxRL .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-toGkyknKiL {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
.cid-toGkyknKiL .item:focus,
.cid-toGkyknKiL span:focus {
    outline: none;
}
.cid-toGkyknKiL .item-wrapper {
    position: relative;
}
.cid-toGkyknKiL .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-toGkyknKiL .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-toGkyknKiL .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-toGkyknKiL .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-toGkyknKiL .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-toGkyknKiL .mbr-section-btn {
    margin-top: auto !important;
}
.cid-toGkyknKiL .mbr-section-title {
    color: #232323;
}
.cid-toGkyknKiL .mbr-text,
.cid-toGkyknKiL .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-toGkyknKiL .item-title {
    text-align: center;
}
.cid-toGkyknKiL .item-subtitle {
    text-align: center;
    color: #61615f;
}
.cid-toGkyknKiL .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}
@media (max-width: 768px) {
    .cid-toGkyknKiL .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-toGkyknKiL .embla__button--next,
.cid-toGkyknKiL .embla__button--prev {
    display: flex;
}
.cid-toGkyknKiL .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-toGkyknKiL .embla__button {
        display: none;
    }
}
.cid-toGkyknKiL .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-toGkyknKiL .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-toGkyknKiL .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-toGkyknKiL .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-toGkyknKiL .embla__button {
        top: auto;
    }
}
.cid-toGkyknKiL .embla {
    position: relative;
    width: 100%;
}
.cid-toGkyknKiL .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-toGkyknKiL .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-toGkyknKiL .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-toGkyknKiL .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-toGmhEiZq9 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
.cid-toGmhEiZq9 .item:focus,
.cid-toGmhEiZq9 span:focus {
    outline: none;
}
.cid-toGmhEiZq9 .item-wrapper {
    position: relative;
}
.cid-toGmhEiZq9 .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-toGmhEiZq9 .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-toGmhEiZq9 .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-toGmhEiZq9 .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-toGmhEiZq9 .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-toGmhEiZq9 .mbr-section-btn {
    margin-top: auto !important;
}
.cid-toGmhEiZq9 .mbr-section-title {
    color: #232323;
}
.cid-toGmhEiZq9 .mbr-text,
.cid-toGmhEiZq9 .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-toGmhEiZq9 .item-title {
    text-align: center;
}
.cid-toGmhEiZq9 .item-subtitle {
    text-align: center;
    color: #61615f;
}
.cid-toGmhEiZq9 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}
@media (max-width: 768px) {
    .cid-toGmhEiZq9 .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-toGmhEiZq9 .embla__button--next,
.cid-toGmhEiZq9 .embla__button--prev {
    display: flex;
}
.cid-toGmhEiZq9 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-toGmhEiZq9 .embla__button {
        display: none;
    }
}
.cid-toGmhEiZq9 .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-toGmhEiZq9 .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-toGmhEiZq9 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-toGmhEiZq9 .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-toGmhEiZq9 .embla__button {
        top: auto;
    }
}
.cid-toGmhEiZq9 .embla {
    position: relative;
    width: 100%;
}
.cid-toGmhEiZq9 .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-toGmhEiZq9 .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-toGmhEiZq9 .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-toGmhEiZq9 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-toGp0SikBc {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
.cid-toGp0SikBc .item:focus,
.cid-toGp0SikBc span:focus {
    outline: none;
}
.cid-toGp0SikBc .item-wrapper {
    position: relative;
}
.cid-toGp0SikBc .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-toGp0SikBc .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-toGp0SikBc .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-toGp0SikBc .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-toGp0SikBc .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-toGp0SikBc .mbr-section-btn {
    margin-top: auto !important;
}
.cid-toGp0SikBc .mbr-section-title {
    color: #232323;
}
.cid-toGp0SikBc .mbr-text,
.cid-toGp0SikBc .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-toGp0SikBc .item-title {
    text-align: center;
}
.cid-toGp0SikBc .item-subtitle {
    text-align: center;
    color: #61615f;
}
.cid-toGp0SikBc .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}
@media (max-width: 768px) {
    .cid-toGp0SikBc .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-toGp0SikBc .embla__button--next,
.cid-toGp0SikBc .embla__button--prev {
    display: flex;
}
.cid-toGp0SikBc .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-toGp0SikBc .embla__button {
        display: none;
    }
}
.cid-toGp0SikBc .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-toGp0SikBc .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-toGp0SikBc .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-toGp0SikBc .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-toGp0SikBc .embla__button {
        top: auto;
    }
}
.cid-toGp0SikBc .embla {
    position: relative;
    width: 100%;
}
.cid-toGp0SikBc .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-toGp0SikBc .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-toGp0SikBc .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-toGp0SikBc .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-toGsw80yfj {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
.cid-toGsw80yfj .item:focus,
.cid-toGsw80yfj span:focus {
    outline: none;
}
.cid-toGsw80yfj .item-wrapper {
    position: relative;
}
.cid-toGsw80yfj .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-toGsw80yfj .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-toGsw80yfj .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-toGsw80yfj .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-toGsw80yfj .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-toGsw80yfj .mbr-section-btn {
    margin-top: auto !important;
}
.cid-toGsw80yfj .mbr-section-title {
    color: #232323;
}
.cid-toGsw80yfj .mbr-text,
.cid-toGsw80yfj .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-toGsw80yfj .item-title {
    text-align: center;
}
.cid-toGsw80yfj .item-subtitle {
    text-align: center;
    color: #61615f;
}
.cid-toGsw80yfj .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}
@media (max-width: 768px) {
    .cid-toGsw80yfj .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-toGsw80yfj .embla__button--next,
.cid-toGsw80yfj .embla__button--prev {
    display: flex;
}
.cid-toGsw80yfj .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-toGsw80yfj .embla__button {
        display: none;
    }
}
.cid-toGsw80yfj .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-toGsw80yfj .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-toGsw80yfj .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-toGsw80yfj .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-toGsw80yfj .embla__button {
        top: auto;
    }
}
.cid-toGsw80yfj .embla {
    position: relative;
    width: 100%;
}
.cid-toGsw80yfj .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-toGsw80yfj .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-toGsw80yfj .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-toGsw80yfj .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-toGtZRFVMW {
    padding-top: 1rem;
    padding-bottom: 5rem;
    background-color: #f2f6e7;
}
.cid-toGtZRFVMW .item:focus,
.cid-toGtZRFVMW span:focus {
    outline: none;
}
.cid-toGtZRFVMW .item-wrapper {
    position: relative;
}
.cid-toGtZRFVMW .slide-content {
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-flow: column nowrap;
}
@media (min-width: 992px) {
    .cid-toGtZRFVMW .slide-content .item-content {
        padding: 2rem 2rem 0;
    }
    .cid-toGtZRFVMW .slide-content .item-footer {
        padding: 0 2rem 2rem;
    }
}
@media (max-width: 991px) {
    .cid-toGtZRFVMW .slide-content .item-content {
        padding: 1rem 1rem 0;
    }
    .cid-toGtZRFVMW .slide-content .item-footer {
        padding: 0 1rem 1rem;
    }
}
.cid-toGtZRFVMW .mbr-section-btn {
    margin-top: auto !important;
}
.cid-toGtZRFVMW .mbr-section-title {
    color: #232323;
}
.cid-toGtZRFVMW .mbr-text,
.cid-toGtZRFVMW .mbr-section-btn {
    text-align: center;
    color: #61615f;
}
.cid-toGtZRFVMW .item-title {
    text-align: center;
}
.cid-toGtZRFVMW .item-subtitle {
    text-align: center;
    color: #61615f;
}
.cid-toGtZRFVMW .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 410px;
    max-width: 410px;
}
@media (max-width: 768px) {
    .cid-toGtZRFVMW .embla__slide {
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-toGtZRFVMW .embla__button--next,
.cid-toGtZRFVMW .embla__button--prev {
    display: flex;
}
.cid-toGtZRFVMW .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
@media (max-width: 768px) {
    .cid-toGtZRFVMW .embla__button {
        display: none;
    }
}
.cid-toGtZRFVMW .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-toGtZRFVMW .embla__button:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.5);
}
.cid-toGtZRFVMW .embla__button.embla__button--prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-toGtZRFVMW .embla__button.embla__button--next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-toGtZRFVMW .embla__button {
        top: auto;
    }
}
.cid-toGtZRFVMW .embla {
    position: relative;
    width: 100%;
}
.cid-toGtZRFVMW .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-toGtZRFVMW .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-toGtZRFVMW .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-toGtZRFVMW .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-ttd2PGxu2c {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-image: url("../../../assets/images/mbr-11.jpg");
}
.cid-ttd2PGxu2c .mbr-text,
.cid-ttd2PGxu2c .mbr-section-btn {
    color: #232323;
}
.cid-ttd2PGxu2c .card-title,
.cid-ttd2PGxu2c .card-box {
    color: #ffffff;
}
.cid-ttd2PGxu2c .mbr-text,
.cid-ttd2PGxu2c .link-wrap {
    color: #ffffff;
}
.cid-ttd2PGxu2c .card-box .mbr-text,
.cid-ttd2PGxu2c .mbr-section-btn {
    color: #ffffff;
}
.cid-ttd8pMB686 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
.cid-ttd8pMB686 .mbr-fallback-image.disabled {
    display: none;
}
.cid-ttd8pMB686 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ttd8pMB686 .item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    flex-direction: column;
}
.cid-ttd8pMB686 .icon-box {
    margin-bottom: 1rem;
    text-align: center;
    display: inline-block;
}
.cid-ttd8pMB686 .text-box {
    text-align: center;
}
.cid-ttd8pMB686 span {
    font-size: 3rem;
    color: #96bc0f;
    font-weight: bold;
    display: block;
}
@media (max-width: 991px) {
    .cid-ttd8pMB686 .card {
        margin-bottom: 2rem;
    }
    .cid-ttd8pMB686 .card-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 768px) {
    .cid-ttd8pMB686 span {
        font-size: 9vw;
    }
}
.cid-ttd8pMB686 .icon-title,
.cid-ttd8pMB686 .mbr-section-btn,
.cid-ttd8pMB686 .item .icon-box .step-number {
    color: #61615f;
}
.cid-ttd8pMB686 .icon-text,
.cid-ttd8pMB686 .mbr-section-btn {
    color: #61615f;
}
.cid-ttd8pMB686 .item .icon-box .step-number {
    color: #96bc0f;
}


.cid-ttdbjOlp3m {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
.cid-ttdbjOlp3m .mbr-fallback-image.disabled {
    display: none;
}
.cid-ttdbjOlp3m .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-ttdbjOlp3m .mbr-iconfont {
    font-size: 1.4rem !important;
    font-family: 'Moririse2' !important;
    color: #96bc0f;
    margin-left: 1rem;
}
.cid-ttdbjOlp3m .panel-group {
    border: none;
}
.cid-ttdbjOlp3m .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cid-ttdbjOlp3m .panel-body,
.cid-ttdbjOlp3m .card-header {
    padding: 1rem 0;
}
.cid-ttdbjOlp3m .panel-title-edit {
    color: #7b9d0a;
}
.cid-ttdbjOlp3m .card .card-header {
    background-color: transparent;
    margin-bottom: 0;
}
.cid-ttdbjOlp3m H3 {
    color: #61615f;
}
.cid-ttdbjOlp3m .panel-text {
    color: #61615f;
}
.cid-txgE7Q8ZL2 {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-txgE7Q8ZL2 .mbr-section-title {
    color: #61615f;
}
.cid-txgE7Q8ZL2 .mbr-section-subtitle {
    color: #61615f;
}
.cid-txgFa8a9N6 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-txgFa8a9N6 .mbr-fallback-image.disabled {
    display: none;
}
.cid-txgFa8a9N6 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-txgFa8a9N6 .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-txgFa8a9N6 .content-wrapper .row {
        flex-direction: column-reverse;
    }
    .cid-txgFa8a9N6 .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-txgFa8a9N6 .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-txgFa8a9N6 .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-txgFa8a9N6 .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-txgFa8a9N6 .content-wrapper .text-wrapper {
        padding-right: 2rem;
    }
}
.cid-txgFa8a9N6 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-txgFa8a9N6 .card-title {
    color: #61615f;
}
.cid-txgFa8a9N6 .mbr-text,
.cid-txgFa8a9N6 .mbr-section-btn {
    color: #61615f;
    text-align: left;
}
.cid-txmwrrzmFa {
    padding-top: 0rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}
.cid-txmwrrzmFa blockquote {
    border-color: #7b9d0a;
    border-radius: 4px;
    background-color: #fafafa;
}
.cid-txmwrrzmFa .mbr-section-title {
    color: #61615f;
}
.cid-txmwrrzmFa .mbr-text {
    color: #61615f;
}
.cid-txgE7TpOzO {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f6e7;
}
.cid-txgE7TpOzO ul {
    list-style: none;
    margin: 0;
    padding-left: 2.5rem;
}
.cid-txgE7TpOzO li {
    position: relative;
    margin-bottom: 1rem;
}
.cid-txgE7TpOzO ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #7b9d0a;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}
.cid-txgE7TpOzO H3 {
    color: #61615f;
}
.cid-txgE7TpOzO .list {
    color: #61615f;
}
.cid-txgE7U57Gk {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
@media (max-width: 991px) {
    .cid-txgE7U57Gk .image-wrapper {
        margin-bottom: 1rem;
    }
}
.cid-txgE7U57Gk .row {
    flex-direction: row-reverse;
}
.cid-txgE7U57Gk img {
    width: 100%;
}
.cid-txgE7U57Gk .mbr-text {
    color: #61615f;
}
.cid-txgE7UGxrD {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
.cid-txgE7UGxrD blockquote {
    border-color: #96bc0f;
    border-radius: 4px;
    background-color: #fafafa;
}
.cid-txgE7UGxrD .mbr-text {
    color: #61615f;
}
.cid-tBpkWYKrpc {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-image: url("../../../assets/images/mbr-18.jpeg");
}
.cid-tBpkWYKrpc .mbr-text,
.cid-tBpkWYKrpc .mbr-section-btn {
    color: #232323;
}
.cid-tBpkWYKrpc .card-title,
.cid-tBpkWYKrpc .card-box {
    color: #ffffff;
}
.cid-tBpkWYKrpc .mbr-text,
.cid-tBpkWYKrpc .link-wrap {
    color: #ffffff;
}
.cid-tBpkWYKrpc .card-box .mbr-text,
.cid-tBpkWYKrpc .mbr-section-btn {
    color: #ffffff;
}
.cid-tBpiz9AjXl {
    padding-top: 4rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-tBpiz9AjXl .mbr-fallback-image.disabled {
    display: none;
}
.cid-tBpiz9AjXl .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tBpiz9AjXl .mbr-section-title {
    color: #61615f;
}
.cid-tBpiz9AjXl .mbr-section-subtitle {
    color: #61615f;
}
.cid-txgFa8a9N6 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-txgFa8a9N6 .mbr-fallback-image.disabled {
    display: none;
}
.cid-txgFa8a9N6 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-txgFa8a9N6 .content-wrapper {
    background: #ffffff;
}
@media (max-width: 991px) {
    .cid-txgFa8a9N6 .content-wrapper .row {
        flex-direction: column-reverse;
    }
    .cid-txgFa8a9N6 .content-wrapper .image-wrapper {
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .cid-txgFa8a9N6 .content-wrapper {
        padding: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cid-txgFa8a9N6 .content-wrapper {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .cid-txgFa8a9N6 .content-wrapper {
        padding: 5rem 3rem;
    }
    .cid-txgFa8a9N6 .content-wrapper .text-wrapper {
        padding-right: 2rem;
    }
}
.cid-txgFa8a9N6 .image-wrapper img {
    width: 100%;
    object-fit: cover;
}
.cid-txgFa8a9N6 .card-title {
    color: #61615f;
}
.cid-txgFa8a9N6 .mbr-text,
.cid-txgFa8a9N6 .mbr-section-btn {
    color: #61615f;
    text-align: left;
}
.cid-tBpmGflM70 {
    padding-top: 2rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-tBpmGflM70 .row {
    flex-direction: row-reverse;
}
.cid-tBpmGflM70 .video-wrapper iframe {
    width: 100%;
}
.cid-tBpmGflM70 .mbr-section-title,
.cid-tBpmGflM70 .mbr-description {
    text-align: center;
}
@media (min-width: 992px) {
    .cid-tBpmGflM70 .text-wrapper {
        padding: 2rem;
    }
}
.cid-tBpmGflM70 .mbr-section-title {
    color: #61615f;
}
.cid-tBpmGflM70 .mbr-section-subtitle {
    color: #61615f;
}
.cid-tBpmGflM70 .mbr-text {
    color: #61615f;
}
.cid-tBpokpE4Wt {
    padding-top: 1rem;
    padding-bottom: 3rem;
    background-color: #f2f6e7;
}
.cid-tBpokpE4Wt .mbr-fallback-image.disabled {
    display: none;
}
.cid-tBpokpE4Wt .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tBpokpE4Wt .video-wrapper iframe {
    width: 100%;
}
.cid-tBpokpE4Wt .mbr-section-title,
.cid-tBpokpE4Wt .mbr-description {
    text-align: center;
}
@media (min-width: 992px) {
    .cid-tBpokpE4Wt .text-wrapper {
        padding: 2rem;
    }
}
.cid-tBpokpE4Wt .mbr-section-subtitle {
    color: #61615f;
}
.cid-tBpokpE4Wt .mbr-text {
    color: #61615f;
}
.cid-tClQrjY7mH {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-image: url("../../../assets/images/mbr-17.jpg");
}
.cid-tClQrjY7mH .mbr-text,
.cid-tClQrjY7mH .mbr-section-btn {
    color: #232323;
}
.cid-tClQrjY7mH .card-title,
.cid-tClQrjY7mH .card-box {
    color: #ffffff;
}
.cid-tClQrjY7mH .mbr-text,
.cid-tClQrjY7mH .link-wrap {
    color: #ffffff;
}
.cid-tClQrjY7mH .card-box .mbr-text,
.cid-tClQrjY7mH .mbr-section-btn {
    color: #ffffff;
}
.cid-tClQjSr1cv {
    padding-top: 4rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-tClQjSr1cv .mbr-fallback-image.disabled {
    display: none;
}
.cid-tClQjSr1cv .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tClQjSr1cv .mbr-section-title {
    color: #61615f;
}
.cid-tClQjSr1cv .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjT6FVo {
    padding-top: 2rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-tClQjT6FVo .mbr-fallback-image.disabled {
    display: none;
}
.cid-tClQjT6FVo .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tClQjT6FVo ul {
    list-style: none;
    margin: 0;
    padding-left: 2.5rem;
}
.cid-tClQjT6FVo li {
    position: relative;
    margin-bottom: 1rem;
}
.cid-tClQjT6FVo ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #96bc0f;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
}
.cid-tClQjT6FVo .list {
    color: #61615f;
}

.cid-tClQjUnAQC {
    padding-top: 1rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
.cid-tClQjVJ5my {
    padding-top: 4rem;
    padding-bottom: 0rem;
    background-color: #f2f6e7;
}
.cid-tClQjVJ5my .mbr-fallback-image.disabled {
    display: none;
}
.cid-tClQjVJ5my .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tClQjVJ5my .mbr-section-title {
    color: #61615f;
}
.cid-tClQjVJ5my .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjWoAzs {
    padding-top: 1rem;
    padding-bottom: 4rem;
    background-color: #f2f6e7;
}
.cid-tClQjWoAzs .mbr-media {
    position: relative;
}
.cid-tClQjWoAzs .mbr-media img {
    width: 100%;
    object-fit: cover;
}
.cid-tClQjWoAzs .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.cid-tClQjWoAzs .mbr-media span {
    font-size: 4rem;
    transition: all 0.2s;
}
.cid-tClQjWoAzs .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
}
.cid-tClQjWoAzs .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
}
.cid-tClQjWoAzs .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
}
.cid-tClQjWoAzs .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;
    align-items: center;
    justify-content: center;
    display: flex;
}
.cid-tClQjWoAzs .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
.cid-tClQjXFOwm {
    padding-top: 1rem;
    padding-bottom: 2rem;
    background-color: #f2f6e7;
}
.cid-tClQjXFOwm .row {
    flex-direction: row-reverse;
}
.cid-tClQjXFOwm .video-wrapper iframe {
    width: 100%;
}
.cid-tClQjXFOwm .mbr-section-title,
.cid-tClQjXFOwm .mbr-description {
    text-align: center;
}
@media (min-width: 992px) {
    .cid-tClQjXFOwm .text-wrapper {
        padding: 2rem;
    }
}
.cid-tClQjXFOwm .mbr-section-title {
    color: #61615f;
}
.cid-tClQjXFOwm .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjXFOwm .mbr-text {
    color: #61615f;
}
.cid-tClQjYqDjB {
    padding-top: 1rem;
    padding-bottom: 3rem;
    background-color: #f2f6e7;
}
.cid-tClQjYqDjB .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjYqDjB .mbr-text {
    color: #61615f;
}
.cid-tClQjZ28vo {
    padding-top: 1rem;
    padding-bottom: 3rem;
    background-color: #f2f6e7;
}
.cid-tClQjZ28vo .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjZ28vo .mbr-text {
    color: #61615f;
}
.cid-tClQjZFpRK {
    padding-top: 1rem;
    padding-bottom: 3rem;
    background-color: #f2f6e7;
}
.cid-tClQjZFpRK .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjZFpRK .mbr-text {
    color: #61615f;
}
.cid-tClQrjY7mH {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-image: url("../../../assets/images/e-auto-friedhof-in-frankreich.jpg");
}
.cid-tClQrjY7mH .mbr-text,
.cid-tClQrjY7mH .mbr-section-btn {
    color: #232323;
}
.cid-tClQrjY7mH .card-title,
.cid-tClQrjY7mH .card-box {
    color: #ffffff;
}
.cid-tClQrjY7mH .mbr-text,
.cid-tClQrjY7mH .link-wrap {
    color: #ffffff;
}
.cid-tClQrjY7mH .card-box .mbr-text,
.cid-tClQrjY7mH .mbr-section-btn {
    color: #ffffff;
}
.cid-tClQjSr1cv {
    padding-top: 4rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-tClQjSr1cv .mbr-fallback-image.disabled {
    display: none;
}
.cid-tClQjSr1cv .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tClQjSr1cv .mbr-section-title {
    color: #61615f;
}
.cid-tClQjSr1cv .mbr-section-subtitle {
    color: #61615f;
}
.cid-tCIda3119z {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-tCIda3119z .row {
    /*flex-direction: row-reverse;*/
}
.cid-tCIda3119z .video-wrapper iframe {
    width: 100%;
}
.cid-tCIda3119z .mbr-section-title,
.cid-tCIda3119z .mbr-description {
    text-align: center;
}
@media (min-width: 992px) {
    .cid-tCIda3119z .text-wrapper {
        padding: 2rem;
    }
}
.cid-tCIda3119z .mbr-section-title {
    color: #61615f;
}
.cid-tCIda3119z .mbr-section-subtitle {
    color: #61615f;
}
.cid-tCIda3119z .mbr-text {
    color: #61615f;
}
.cid-tCIf3TN8n6 {
    padding-top: 0rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}
.cid-tCIf3TN8n6 .mbr-fallback-image.disabled {
    display: none;
}
.cid-tCIf3TN8n6 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tCIf3TN8n6 .item {
    padding-bottom: 2rem;
}
.cid-tCIf3TN8n6 .item-wrapper {
    height: 100%;
    position: relative;
}
.cid-tCIf3TN8n6 .item-wrapper img {
    height: 100%;
    object-fit: cover;
}
.cid-tCIf3TN8n6 .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-tCIf3TN8n6 .item-wrapper:hover .icon-wrapper {
    opacity: 0.7;
}
.cid-tCIf3TN8n6 .carousel-control,
.cid-tCIf3TN8n6 .close {
    background: #1b1b1b;
}
.cid-tCIf3TN8n6 .carousel-control-prev {
    margin-left: 2.5rem;
}
.cid-tCIf3TN8n6 .carousel-control-prev span {
    margin-right: 5px;
}
.cid-tCIf3TN8n6 .carousel-control-next {
    margin-right: 2.5rem;
}
.cid-tCIf3TN8n6 .carousel-control-next span {
    margin-left: 5px;
}
.cid-tCIf3TN8n6 .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-tCIf3TN8n6 .close::before {
    content: '\e91a';
}
.cid-tCIf3TN8n6 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
.cid-tCIf3TN8n6 .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-tCIf3TN8n6 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-tCIf3TN8n6 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-tCIf3TN8n6 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}
.cid-tCIf3TN8n6 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}
.cid-tCIf3TN8n6 .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-tCIf3TN8n6 .carousel-indicators li.active,
.cid-tCIf3TN8n6 .carousel-indicators li:hover {
    opacity: 0.9;
}
.cid-tCIf3TN8n6 .carousel-indicators li::after,
.cid-tCIf3TN8n6 .carousel-indicators li::before {
    content: none;
}
.cid-tCIf3TN8n6 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}
@media (max-width: 768px) {
    .cid-tCIf3TN8n6 .carousel-indicators {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .cid-tCIf3TN8n6 .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}
@media (max-width: 767px) {
    .cid-tCIf3TN8n6 .carousel-indicators {
        display: none;
    }
}
.cid-tCIf3TN8n6 .carousel-inner {
    display: flex;
    align-items: center;
}
.cid-tCIf3TN8n6 .carousel-inner > .active {
    display: block;
}
.cid-tCIf3TN8n6 .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}
.cid-tCIf3TN8n6 .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}
.cid-tCIf3TN8n6 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}
@media (max-width: 768px) {
    .cid-tCIf3TN8n6 .carousel-control,
    .cid-tCIf3TN8n6 .carousel-indicators,
    .cid-tCIf3TN8n6 .modal .close {
        position: fixed;
    }
}
@media (max-width: 767px) {
    .cid-tCIf3TN8n6 .mbr-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .cid-tCIf3TN8n6 .mbr-slider > .container .carousel-control {
        margin-bottom: 0;
    }
}
.cid-tCIf3TN8n6 .carousel-indicators .active,
.cid-tCIf3TN8n6 .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}
.cid-tCIf3TN8n6 .carousel-indicators .active {
    background: #fff;
}
.cid-tCIf3TN8n6 .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}
.cid-tCIf3TN8n6 .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}
.cid-tCIf3TN8n6 .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}
.cid-tCIf3TN8n6 .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}
.cid-tCIf3TN8n6 .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}
.cid-tCIf3TN8n6 .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}
.cid-tCIf3TN8n6 .carousel {
    width: 100%;
}
.cid-tCIf3TN8n6 .modal-backdrop.in {
    opacity: 0.8;
}
.cid-tCIf3TN8n6 .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}
.cid-tCIf3TN8n6 .modal.fade .modal-dialog,
.cid-tCIf3TN8n6 .modal.in .modal-dialog {
    transform: none;
}
.cid-tCIf3TN8n6 .mbr-gallery .item-wrapper {
    cursor: pointer;
}
.cid-tCIf3TN8n6 H6 {
    text-align: center;
}
.cid-tClQjTI6KN {
    padding-top: 1rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
.cid-tClQjTI6KN .row {
    /*flex-direction: row-reverse;*/
}
.cid-tClQjTI6KN .video-wrapper iframe {
    width: 100%;
}
.cid-tClQjTI6KN .mbr-section-title,
.cid-tClQjTI6KN .mbr-description {
    text-align: center;
}
@media (min-width: 992px) {
    .cid-tClQjTI6KN .text-wrapper {
        padding: 2rem;
    }
}
.cid-tClQjTI6KN .mbr-section-title {
    color: #61615f;
}
.cid-tClQjTI6KN .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjTI6KN .mbr-text {
    color: #61615f;
}
.cid-tClQjUnAQC {
    padding-top: 1rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
.cid-tClQjUnAQC .row {
    /*flex-direction: row-reverse;*/
}
.cid-tClQjUnAQC .video-wrapper iframe {
    width: 100%;
}
.cid-tClQjUnAQC .mbr-section-title,
.cid-tClQjUnAQC .mbr-description {
    text-align: center;
}
@media (min-width: 992px) {
    .cid-tClQjUnAQC .text-wrapper {
        padding: 2rem;
    }
}
.cid-tClQjUnAQC .mbr-section-title {
    color: #61615f;
}
.cid-tClQjUnAQC .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjUnAQC .mbr-text {
    color: #61615f;
}
.cid-tClQjV2f1Z {
    padding-top: 1rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
.cid-tClQjV2f1Z .row {
    /*flex-direction: row-reverse;*/
}
.cid-tClQjV2f1Z .video-wrapper iframe {
    width: 100%;
}
.cid-tClQjV2f1Z .mbr-section-title,
.cid-tClQjV2f1Z .mbr-description {
    text-align: center;
}
@media (min-width: 992px) {
    .cid-tClQjV2f1Z .text-wrapper {
        padding: 2rem;
    }
}
.cid-tClQjV2f1Z .mbr-section-title {
    color: #61615f;
}
.cid-tClQjV2f1Z .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjV2f1Z .mbr-text {
    color: #61615f;
}
.cid-tCIrigHUpp {
    padding-top: 4rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}
.cid-tCIrigHUpp .mbr-fallback-image.disabled {
    display: none;
}
.cid-tCIrigHUpp .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 991px) {
    .cid-tCIrigHUpp .image-wrapper {
        margin-bottom: 1rem;
    }
}
.cid-tCIrigHUpp .row {
    /*flex-direction: row-reverse;*/
}
.cid-tCIrigHUpp img {
    width: 100%;
}
@media (min-width: 992px) {
    .cid-tCIrigHUpp .text-wrapper {
        padding: 2rem;
    }
}
.cid-tCIrigHUpp .mbr-section-title {
    color: #61615f;
}
.cid-tCIrigHUpp .mbr-text {
    color: #61615f;
}
.cid-tCJ45gHnfG {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #f2f6e7;
}
.cid-tCJ45gHnfG .mbr-fallback-image.disabled {
    display: none;
}
.cid-tCJ45gHnfG .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 991px) {
    .cid-tCJ45gHnfG .image-wrapper {
        margin-bottom: 1rem;
    }
}
.cid-tCJ45gHnfG .row {
    flex-direction: row-reverse;
}
.cid-tCJ45gHnfG img {
    width: 100%;
}
@media (min-width: 992px) {
    .cid-tCJ45gHnfG .text-wrapper {
        padding: 2rem;
    }
}
.cid-tCJ45gHnfG .mbr-section-title {
    color: #7b9d0a;
}
.cid-tCJ45gHnfG .mbr-text {
    color: #61615f;
}
.cid-tCJ5SCdEZ8 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #f2f6e7;
}
.cid-tCJ5SCdEZ8 .item {
    padding-bottom: 2rem;
}
.cid-tCJ5SCdEZ8 .item-wrapper {
    position: relative;
}
.cid-tCJ5SCdEZ8 .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-tCJ5SCdEZ8 .item-wrapper:hover .icon-wrapper {
    opacity: 0.7;
}
.cid-tCJ5SCdEZ8 .carousel-control,
.cid-tCJ5SCdEZ8 .close {
    background: #1b1b1b;
}
.cid-tCJ5SCdEZ8 .carousel-control-prev {
    margin-left: 2.5rem;
}
.cid-tCJ5SCdEZ8 .carousel-control-prev span {
    margin-right: 5px;
}
.cid-tCJ5SCdEZ8 .carousel-control-next {
    margin-right: 2.5rem;
}
.cid-tCJ5SCdEZ8 .carousel-control-next span {
    margin-left: 5px;
}
.cid-tCJ5SCdEZ8 .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-tCJ5SCdEZ8 .close::before {
    content: '\e91a';
}
.cid-tCJ5SCdEZ8 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
.cid-tCJ5SCdEZ8 .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-tCJ5SCdEZ8 .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}
.cid-tCJ5SCdEZ8 .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}
@media (max-width: 767px) {
    .cid-tCJ5SCdEZ8 .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}
.cid-tCJ5SCdEZ8 .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 3px;
}
.cid-tCJ5SCdEZ8 .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-tCJ5SCdEZ8 .carousel-indicators li.active,
.cid-tCJ5SCdEZ8 .carousel-indicators li:hover {
    opacity: 0.9;
}
.cid-tCJ5SCdEZ8 .carousel-indicators li::after,
.cid-tCJ5SCdEZ8 .carousel-indicators li::before {
    content: none;
}
.cid-tCJ5SCdEZ8 .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}
@media (max-width: 768px) {
    .cid-tCJ5SCdEZ8 .carousel-indicators {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .cid-tCJ5SCdEZ8 .carousel-indicators {
        margin-bottom: 3.625rem !important;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}
@media (max-width: 767px) {
    .cid-tCJ5SCdEZ8 .carousel-indicators {
        display: none;
    }
}
.cid-tCJ5SCdEZ8 .carousel-inner {
    display: flex;
    align-items: center;
}
.cid-tCJ5SCdEZ8 .carousel-inner > .active {
    display: block;
}
.cid-tCJ5SCdEZ8 .carousel-control.left {
    left: 0;
    margin-left: 2.5rem;
}
.cid-tCJ5SCdEZ8 .carousel-control.right {
    right: 0;
    margin-right: 2.5rem;
}
.cid-tCJ5SCdEZ8 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}
@media (max-width: 768px) {
    .cid-tCJ5SCdEZ8 .carousel-control,
    .cid-tCJ5SCdEZ8 .carousel-indicators,
    .cid-tCJ5SCdEZ8 .modal .close {
        position: fixed;
    }
}
@media (max-width: 767px) {
    .cid-tCJ5SCdEZ8 .mbr-slider .carousel-control {
        top: auto;
        bottom: 20px;
    }
    .cid-tCJ5SCdEZ8 .mbr-slider > .container .carousel-control {
        margin-bottom: 0;
    }
}
.cid-tCJ5SCdEZ8 .carousel-indicators .active,
.cid-tCJ5SCdEZ8 .carousel-indicators li {
    width: 7px;
    height: 7px;
    margin: 3px;
    background: #000000;
    opacity: 0.5;
    border: 4px solid #000000;
}
.cid-tCJ5SCdEZ8 .carousel-indicators .active {
    background: #fff;
}
.cid-tCJ5SCdEZ8 .carousel-indicators li {
    max-width: 15px;
    max-height: 15px;
    border-radius: 50%;
}
.cid-tCJ5SCdEZ8 .modal {
    padding-left: 0 !important;
    position: fixed;
    overflow: hidden;
    padding-right: 0 !important;
}
.cid-tCJ5SCdEZ8 .modal-dialog {
    margin: 0 auto;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}
.cid-tCJ5SCdEZ8 .modal-content {
    border-radius: 0;
    border: none;
    background: transparent;
}
.cid-tCJ5SCdEZ8 .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
}
.cid-tCJ5SCdEZ8 .modal-body img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 1.75rem);
}
.cid-tCJ5SCdEZ8 .carousel {
    width: 100%;
}
.cid-tCJ5SCdEZ8 .modal-backdrop.in {
    opacity: 0.8;
}
.cid-tCJ5SCdEZ8 .modal.fade .modal-dialog {
    transition: margin-top 0.3s ease-out;
}
.cid-tCJ5SCdEZ8 .modal.fade .modal-dialog,
.cid-tCJ5SCdEZ8 .modal.in .modal-dialog {
    transform: none;
}
.cid-tCJ5SCdEZ8 .mbr-gallery .item-wrapper {
    cursor: pointer;
}
.cid-tCJ5SCdEZ8 H6 {
    text-align: center;
    color: #61615f;
}
.cid-tClQjVJ5my {
    padding-top: 4rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-tClQjVJ5my .mbr-fallback-image.disabled {
    display: none;
}
.cid-tClQjVJ5my .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-tClQjVJ5my .mbr-section-title {
    color: #61615f;
}
.cid-tClQjVJ5my .mbr-section-subtitle {
    color: #61615f;
}
.cid-tClQjWoAzs {
    padding-top: 1rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}
.cid-tClQjWoAzs .mbr-media {
    position: relative;
}
.cid-tClQjWoAzs .mbr-media img {
    width: 100%;
    object-fit: cover;
}
.cid-tClQjWoAzs .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.cid-tClQjWoAzs .mbr-media span {
    font-size: 4rem;
    transition: all 0.2s;
}
.cid-tClQjWoAzs .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
}
.cid-tClQjWoAzs .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
}
.cid-tClQjWoAzs .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
}
.cid-tClQjWoAzs .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;
    align-items: center;
    justify-content: center;
    display: flex;
}
.cid-tClQjWoAzs .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}
.cid-uVKbWuyg85 {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-image: url("../../../assets/images/pexels-towfiqu-barbhuiya-9099823.jpeg");
}
.cid-uVKbWuyg85 .mbr-text,
.cid-uVKbWuyg85 .mbr-section-btn {
    color: #232323;
}
.cid-uVKbWuyg85 .card-title,
.cid-uVKbWuyg85 .card-box {
    color: #ffffff;
}
.cid-uVKbWuyg85 .mbr-text,
.cid-uVKbWuyg85 .link-wrap {
    color: #ffffff;
}
.cid-uVKbWuyg85 .card-box .mbr-text,
.cid-uVKbWuyg85 .mbr-section-btn {
    color: #ffffff;
}
.cid-uVKbWuQZe6 {
    padding-top: 3rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}
.cid-uVKbWuQZe6 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uVKbWuQZe6 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uVKbWuQZe6 .mbr-section-title {
    color: #61615f;
}
.cid-uVKbWuQZe6 .mbr-section-subtitle {
    color: #61615f;
}
.cid-uVKbWv82p1 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}
.cid-uVKbWv82p1 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uVKbWv82p1 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uVKbWv82p1 .mbr-section-subtitle {
    color: #61615f;
}
.cid-uVKcpLCU9p {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
.cid-uVKcpLCU9p .mbr-fallback-image.disabled {
    display: none;
}
.cid-uVKcpLCU9p .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uVKcpLCU9p .mbr-iconfont {
    font-size: 1.4rem !important;
    font-family: 'Moririse2' !important;
    color: #96bc0f;
    margin-left: 1rem;
}
.cid-uVKcpLCU9p .panel-group {
    border: none;
}
.cid-uVKcpLCU9p .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cid-uVKcpLCU9p .panel-body,
.cid-uVKcpLCU9p .card-header {
    padding: 1rem 0;
}
.cid-uVKcpLCU9p .panel-title-edit {
    color: #000000;
}
.cid-uVKcpLCU9p .card .card-header {
    background-color: transparent;
    margin-bottom: 0;
}
.cid-uVKcWVsSO9 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
.cid-uVKcWVsSO9 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uVKcWVsSO9 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uVKcWVsSO9 .card .card-header {
    background-color: transparent;
    margin-bottom: 0;
}
.cid-uVKcWVsSO9 .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cid-uVKcWVsSO9 .mbr-iconfont {
    padding-left: 1rem;
    font-family: 'Moririse2' !important;
    font-size: 1.4rem !important;
    color: #96bc0f;
}
.cid-uVKcWVsSO9 .panel-body,
.cid-uVKcWVsSO9 .card-header {
    padding: 1rem 0;
}
.cid-uVKcWVsSO9 .panel-title-edit {
    color: #000000;
}