body {
    background-color: #fcefe7;
}
body {
    font-family: Manrope;
}
.display-1 {
    font-family: 'Manrope', sans-serif;
    font-size: 5rem;
    line-height: 88px;
    /*letter-spacing: -0.01em;*/
}
.display-1 > .mbr-iconfont {
    font-size: 6.25rem;
}
.display-2 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.125rem;
    line-height: 1.16;
    /*letter-spacing: -0.01em;*/
}
.display-2 > .mbr-iconfont {
    font-size: 3.90625rem;
}
.display-4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    /*letter-spacing: -0.015em;*/
}
.display-4 > .mbr-iconfont {
    font-size: 1.40625rem;
}
.display-5 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    line-height: 1.228;
}
.display-5 > .mbr-iconfont {
    font-size: 2.75rem;
}
.display-7 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.56rem;
    line-height: 34px;
}
.display-7 > .mbr-iconfont {
    font-size: 1.95rem;
}
/* ---- 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: 4rem;
    }
}
@media (max-width: 768px) {
    .display-1 {
        font-size: 3.5rem;
        font-size: calc(2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-2 {
        font-size: 2.5rem;
        font-size: calc(1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-4 {
        font-size: 0.9rem;
        font-size: calc(1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-5 {
        font-size: 1.76rem;
        font-size: calc(1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-7 {
        font-size: 1.248rem;
        font-size: calc(1.196rem + (1.56 - 1.196) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.196rem + (1.56 - 1.196) * ((100vw - 20rem) / (48 - 20))));
    }
}
/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
}
.btn-sm {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
}
.btn-md {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
}
.btn-lg {
    padding: 1rem 2.6rem;
    border-radius: 30px;
}
.bg-primary {
    background-color: #7a871e !important;
}
.bg-success {
    background-color: #20ac6b !important;
}
.bg-info {
    background-color: #0aa3c2 !important;
}
.bg-warning {
    background-color: #cc9900 !important;
}
.bg-danger {
    background-color: #ae1e2c !important;
}
.btn-primary,
.btn-primary:active {
    background-color: #7a871e !important;
    border-color: #7a871e !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: #3a400e !important;
    border-color: #3a400e !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff !important;
    background-color: #3a400e !important;
    border-color: #3a400e !important;
}
.btn-secondary,
.btn-secondary:active {
    background-color: #eba64c !important;
    border-color: #eba64c !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: #ca7c17 !important;
    border-color: #ca7c17 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #ffffff !important;
    background-color: #ca7c17 !important;
    border-color: #ca7c17 !important;
}
.btn-info,
.btn-info:active {
    background-color: #0aa3c2 !important;
    border-color: #0aa3c2 !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: #065e70 !important;
    border-color: #065e70 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
    color: #ffffff !important;
    background-color: #065e70 !important;
    border-color: #065e70 !important;
}
.btn-success,
.btn-success:active {
    background-color: #20ac6b !important;
    border-color: #20ac6b !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: #12633e !important;
    border-color: #12633e !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
    color: #ffffff !important;
    background-color: #12633e !important;
    border-color: #12633e !important;
}
.btn-warning,
.btn-warning:active {
    background-color: #cc9900 !important;
    border-color: #cc9900 !important;
    color: #ffffff !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: #ffffff !important;
    background-color: #755800 !important;
    border-color: #755800 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
    color: #ffffff !important;
    background-color: #755800 !important;
    border-color: #755800 !important;
}
.btn-danger,
.btn-danger:active {
    background-color: #ae1e2c !important;
    border-color: #ae1e2c !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: #641119 !important;
    border-color: #641119 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
    color: #ffffff !important;
    background-color: #641119 !important;
    border-color: #641119 !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: #7a871e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
    color: #3a400e !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: #7a871e !important;
    border-color: #7a871e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #eba64c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
    color: #ca7c17 !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: #eba64c !important;
    border-color: #eba64c !important;
}
.btn-info-outline,
.btn-info-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #0aa3c2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
    color: #065e70 !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: #0aa3c2 !important;
    border-color: #0aa3c2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #20ac6b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
    color: #12633e !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: #20ac6b !important;
    border-color: #20ac6b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #cc9900;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
    color: #755800 !important;
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #ffffff !important;
    background-color: #cc9900 !important;
    border-color: #cc9900 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #ae1e2c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
    color: #641119 !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: #ae1e2c !important;
    border-color: #ae1e2c !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: #7a871e !important;
}
.text-secondary {
    color: #eba64c !important;
}
.text-success {
    color: #20ac6b !important;
}
.text-info {
    color: #0aa3c2 !important;
}
.text-warning {
    color: #cc9900 !important;
}
.text-danger {
    color: #ae1e2c !important;
}
.text-white {
    color: #fafafa !important;
}
.text-black {
    color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
    color: #2f340b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
    color: #bc7415 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
    color: #105636 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
    color: #055161 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
    color: #664d00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
    color: #570f16 !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: #7a871e;
}
.nav-tabs .nav-link:not(.active) {
    color: #232323;
}
.alert-success {
    background-color: #70c770;
}
.alert-info {
    background-color: #0aa3c2;
}
.alert-warning {
    background-color: #cc9900;
}
.alert-danger {
    background-color: #ae1e2c;
}
.mbr-gallery-filter li.active .btn {
    background-color: #7a871e;
    border-color: #7a871e;
    color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
    box-shadow: none;
}
a,
a:hover {
    color: #7a871e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #c6d74d;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #68e3aa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #55dbf6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #ffe599;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #e56773;
}
/* Scroll to top button*/
.scrollToTop_wraper {
    display: none;
}
.form-control {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    /*letter-spacing: -0.015em;*/
    font-weight: 400;
}
.form-control > .mbr-iconfont {
    font-size: 1.40625rem;
}
.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: #7a871e !important;
}
.form-control:-webkit-input-placeholder {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    /*letter-spacing: -0.015em;*/
    font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
    font-size: 1.40625rem;
}
blockquote {
    border-color: #7a871e;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #7a871e;
    color: #ffffff;
}
.jq-number__spin {
    transition: 0.25s ease;
}
.jq-number__spin:hover {
    border-color: #7a871e;
}
.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: #7a871e;
    border-bottom-color: #7a871e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
    color: #ffffff !important;
    background-color: #7a871e !important;
    box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    color: #000000 !important;
    background: #eba64c !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=\'%237a871e\' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
    box-shadow: none;
    border: none;
    padding: 14px 30px 14px;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont {
    transform: translateX(5px);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
    margin-left: 14px;
    transform: translateX(0);
    transition: all 0.3s ease-out;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
    border: 1px solid #7a871e !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover {
    color: #7a871e !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
    border: 1px solid #eba64c !important;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover {
    color: #eba64c !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
    border: 1px solid #20ac6b !important;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover {
    color: #20ac6b !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
    border: 1px solid #0aa3c2 !important;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover {
    color: #0aa3c2 !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
    border: 1px solid #cc9900 !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
    color: #cc9900 !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
    border: 1px solid #ae1e2c !important;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover {
    color: #ae1e2c !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
    border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover {
    color: #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
    border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover {
    color: #ffffff !important;
}
.cid-uAHHvVBKIL .navbar-dropdown {
    background-color: #ffffff !important;
    padding: 0;
}
.cid-uAHHvVBKIL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background-color: #ffffff !important;
    background: #ffffff;
}
.cid-uAHHvVBKIL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}
@media (max-width: 991px) {
    .cid-uAHHvVBKIL .menu_box .navbar.opened,
    .cid-uAHHvVBKIL .menu_box .navbar-collapse {
        background-color: #ffffff !important;
        transition: all 0s ease 0s;
    }
}
.cid-uAHHvVBKIL .navbar-dropdown {
    position: relative !important;
}
.cid-uAHHvVBKIL .icons-menu-main {
    display: none;
}
@media (max-width: 991px) {
    .cid-uAHHvVBKIL .icons-menu-main {
        max-width: 100%;
        margin: 1rem 0 1rem 1rem;
        display: flex;
    }
}
.cid-uAHHvVBKIL .mbr-section-btn-main {
    display: none;
}
@media (max-width: 991px) {
    .cid-uAHHvVBKIL .mbr-section-btn-main {
        margin-top: 1rem;
        display: block;
    }
}
.cid-uAHHvVBKIL .btn {
    min-height: auto;
    box-shadow: none;
    margin-top: 0;
}
.cid-uAHHvVBKIL .btn:hover {
    box-shadow: none;
}
@media (min-width: 992px) {
    .cid-uAHHvVBKIL .offcanvas {
        padding: 12rem 80px 0;
        width: 40%;
        background-color: #f9f9f9;
    }
    .cid-uAHHvVBKIL .offcanvas_image img {
        width: auto;
        object-fit: cover;
        display: inline-block;
    }
    .cid-uAHHvVBKIL .offcanvas-header {
        position: relative;
        padding: 0;
    }
    .cid-uAHHvVBKIL .offcanvas-header .btn-close {
        position: absolute;
        top: -70px;
        right: 0;
        width: 35px;
        height: 30px;
    }
    .cid-uAHHvVBKIL .offcanvas-body {
        text-align: center;
        padding: 0;
    }
    .cid-uAHHvVBKIL .offcanvas-body .mbr-text,
    .cid-uAHHvVBKIL .offcanvas-body .mbr-section-subtitle {
        margin-bottom: 20px;
    }
    .cid-uAHHvVBKIL .offcanvas-body .offcanvas_contact {
        margin: 22px 0;
    }
    .cid-uAHHvVBKIL .offcanvas_box button.btn_offcanvas {
        outline: none;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
        align-self: center;
    }
    .cid-uAHHvVBKIL .offcanvas_box button.btn_offcanvas .hamburger span {
        position: absolute;
        right: 0;
        width: 40px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }
    .cid-uAHHvVBKIL .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
        top: 18px;
        transition: all 0.2s;
    }
    .cid-uAHHvVBKIL .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
        top: 25px;
        transition: all 0.2s;
    }
    .cid-uAHHvVBKIL .offcanvas_box button.btn_offcanvas:hover .hamburger span {
        width: 36px;
    }
    .cid-uAHHvVBKIL .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
        width: 33px;
        transition-delay: 0.2s;
    }
    .cid-uAHHvVBKIL ul.navbar-nav {
        padding-bottom: 1.5rem;
    }
    .cid-uAHHvVBKIL .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']::after,
    .cid-uAHHvVBKIL .link.dropdown-toggle::after {
        display: inline-block;
        width: 7px;
        height: 7px;
        margin-left: 0.5rem;
        margin-bottom: 2px;
        content: '';
        border: 2px solid;
        border-left: none;
        border-top: none;
        transform: rotate(-45deg);
    }
    .cid-uAHHvVBKIL .link.dropdown-toggle::after {
        padding: 0 !important;
        transform: rotate(45deg);
    }
    .cid-uAHHvVBKIL li.nav-item {
        position: relative;
        display: inline-block;
        padding: 1px 7px !important;
        vertical-align: middle;
        line-height: 2em !important;
        font-weight: 600 !important;
        text-decoration: none;
        letter-spacing: 0 !important;
        z-index: 1;
    }
    .cid-uAHHvVBKIL .lg_brand {
        margin: 0 1rem;
    }
    .cid-uAHHvVBKIL .container-fluid {
        padding-left: 60px;
        padding-right: 60px;
        flex-wrap: nowrap;
    }
}
.cid-uAHHvVBKIL .nav-item {
    margin: 4px 15px;
}
@media (min-width: 1200px) {
    .cid-uAHHvVBKIL .nav-item {
        margin: 4px 20px;
    }
}
@media (max-width: 991px) {
    .cid-uAHHvVBKIL .nav-item {
        margin: 0 !important;
    }
}
.cid-uAHHvVBKIL .nav-item .nav-link {
    position: relative;
}
.cid-uAHHvVBKIL .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #7a871e;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVBKIL .nav-item .nav-link:hover::after {
    width: 100%;
}
.cid-uAHHvVBKIL .dropdown-menu {
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}
@media (min-width: 992px) {
    .cid-uAHHvVBKIL .dropdown-menu {
        padding: 18px 34px 22px;
        min-width: 250px;
        top: auto !important;
        left: -40px !important;
    }
    .cid-uAHHvVBKIL .dropdown-menu.dropdown-submenu {
        left: 215px !important;
        top: -45% !important;
    }
}
@media (max-width: 991px) {
    .cid-uAHHvVBKIL .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']::after,
    .cid-uAHHvVBKIL .link.dropdown-toggle::after {
        display: inline-block;
        width: 7px;
        height: 7px;
        margin-left: 0.5rem;
        margin-bottom: 2px;
        content: '';
        border: 2px solid;
        border-left: none;
        border-top: none;
        transform: rotate(-45deg);
        right: 15px;
        position: absolute;
        margin-top: -2px;
    }
    .cid-uAHHvVBKIL .show.dropdown-toggle[aria-expanded='true']::after {
        transform: rotate(45deg);
        margin-top: -4px;
    }
    .cid-uAHHvVBKIL .offcanvas_box {
        display: none;
    }
}
.cid-uAHHvVBKIL .dropdown-item {
    border: none;
    font-weight: 300 !important;
}
.cid-uAHHvVBKIL .nav-dropdown .link {
    font-weight: 300 !important;
    padding: 0 !important;
    margin: 0 !important;
}
.cid-uAHHvVBKIL .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0;
}
.cid-uAHHvVBKIL .container {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .cid-uAHHvVBKIL .container {
        flex-wrap: nowrap;
    }
}
.cid-uAHHvVBKIL .iconfont-wrapper {
    color: #000000;
    font-size: 17px;
    margin-right: 10px;
    margin-bottom: 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}
.cid-uAHHvVBKIL .iconfont-wrapper:last-child {
    margin-right: 0;
}
.cid-uAHHvVBKIL .iconfont-wrapper:hover {
    opacity: 0.5;
}
.cid-uAHHvVBKIL .navbar-caption {
    color: #000000;
}
.cid-uAHHvVBKIL .navbar-nav {
    margin: 0 1rem;
}
@media (min-width: 992px) {
    .cid-uAHHvVBKIL .navbar-nav {
        margin: 0;
    }
}
.cid-uAHHvVBKIL .dropdown-menu,
.cid-uAHHvVBKIL .navbar.opened {
    background-color: false !important;
}
.cid-uAHHvVBKIL .nav-item:focus,
.cid-uAHHvVBKIL .nav-link:focus {
    outline: none;
}
.cid-uAHHvVBKIL .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}
.cid-uAHHvVBKIL .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}
.cid-uAHHvVBKIL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}
.cid-uAHHvVBKIL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
}
.cid-uAHHvVBKIL .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}
.cid-uAHHvVBKIL .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}
.cid-uAHHvVBKIL .navbar {
    min-height: 70px;
    padding: 20px 0;
    transition: all 0.3s;
    border-bottom-width: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVBKIL .navbar {
        min-height: 30px;
        max-height: none;
    }
}
.cid-uAHHvVBKIL .navbar.opened {
    transition: all 0.3s;
}
.cid-uAHHvVBKIL .navbar .dropdown-item {
    padding: 0;
    margin: 8px 0;
}
.cid-uAHHvVBKIL .navbar .navbar-logo img {
    max-width: 130px;
    max-height: 130px;
    object-fit: contain;
}
.cid-uAHHvVBKIL .navbar .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
}
.cid-uAHHvVBKIL .navbar.collapsed {
    justify-content: center;
}
.cid-uAHHvVBKIL .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}
.cid-uAHHvVBKIL .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}
.cid-uAHHvVBKIL .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}
.cid-uAHHvVBKIL .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}
.cid-uAHHvVBKIL .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}
.cid-uAHHvVBKIL .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: left;
}
.cid-uAHHvVBKIL .navbar.collapsed .icons-menu {
    padding: 0;
}
@media (max-width: 991px) {
    .cid-uAHHvVBKIL .navbar .nav-item {
        padding: 0.5rem 0;
    }
    .cid-uAHHvVBKIL .navbar .navbar-collapse {
        padding: 34px 0;
        border-radius: 25px;
    }
    .cid-uAHHvVBKIL .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-uAHHvVBKIL .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-uAHHvVBKIL .navbar .dropdown-menu {
        padding: 6px 0 6px 15px;
    }
    .cid-uAHHvVBKIL .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-uAHHvVBKIL .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
        margin-top: -0.4rem;
    }
    .cid-uAHHvVBKIL .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-uAHHvVBKIL .navbar ul.navbar-nav {
        overflow: hidden;
    }
    .cid-uAHHvVBKIL .navbar ul.navbar-nav li {
        margin: 0;
    }
    .cid-uAHHvVBKIL .navbar .dropdown-menu .dropdown-item {
        padding: 0 !important;
        margin: 0;
        margin-top: 8px;
        text-align: left;
    }
    .cid-uAHHvVBKIL .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-uAHHvVBKIL .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-uAHHvVBKIL .navbar .icons-menu {
        padding: 0;
    }
}
.cid-uAHHvVBKIL .navbar.navbar-short {
    min-height: 60px;
}
.cid-uAHHvVBKIL .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}
.cid-uAHHvVBKIL .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}
.cid-uAHHvVBKIL .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-uAHHvVBKIL .navbar-brand .navbar-caption {
    line-height: inherit !important;
    font-weight: 700;
}
.cid-uAHHvVBKIL .navbar-brand .navbar-logo a {
    outline: none;
}
.cid-uAHHvVBKIL .dropdown-item.active,
.cid-uAHHvVBKIL .dropdown-item:active {
    background-color: transparent;
}
.cid-uAHHvVBKIL .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}
.cid-uAHHvVBKIL .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}
.cid-uAHHvVBKIL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}
.cid-uAHHvVBKIL .navbar .dropdown.open > .dropdown-menu {
    display: block;
}
.cid-uAHHvVBKIL ul.navbar-nav {
    flex-wrap: wrap;
    padding: 0;
}
.cid-uAHHvVBKIL .navbar-buttons {
    text-align: center;
    min-width: 170px;
}
.cid-uAHHvVBKIL button.navbar-toggler {
    outline: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #ffffff;
    background: #b44628;
}
.cid-uAHHvVBKIL button.navbar-toggler .hamburger span {
    position: absolute;
    right: 10px;
    margin-top: 14px;
    width: 26px;
    height: 2px;
    border-right: 5px;
    background-color: #fff;
}
.cid-uAHHvVBKIL button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
}
.cid-uAHHvVBKIL button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
}
.cid-uAHHvVBKIL button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
}
.cid-uAHHvVBKIL button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
}
.cid-uAHHvVBKIL nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-uAHHvVBKIL nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}
.cid-uAHHvVBKIL nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}
.cid-uAHHvVBKIL nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}
.cid-uAHHvVBKIL a.nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.cid-uAHHvVBKIL .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding: 0;
    text-align: center;
    margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-uAHHvVBKIL .navbar {
        height: 70px;
    }
    .cid-uAHHvVBKIL .navbar.opened {
        height: auto;
    }
    .cid-uAHHvVBKIL .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
.cid-uAHHvVBKIL .navbar-dropdown .navbar-logo {
    margin-right: 15px;
}
.cid-uAHHvVBKIL .mbr-section-btn-main {
    padding-top: 5px;
}
.cid-uAHHvVBKIL .mbr-section-btn-main .btn {
    margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
    .cid-uAHHvVBKIL .mbr-section-btn-main .btn {
        margin: 0 16px 4px;
    }
}
.cid-uAHHvVBKIL .navbar-caption:hover {
    color: #7a871e;
}
@media (min-width: 992px) {
    .cid-uAHHvVBKIL .dropdown-menu.dropdown-submenu {
        left: 175px !important;
        top: -45% !important;
    }
}
.cid-uAHHvVBKIL .text_widget {
    margin-bottom: 20px;
    color: #000000;
}
.cid-uAHHvVBKIL .text_widget a {
    transition: all 0.3s ease-out;
}
.cid-uAHHvVBKIL .text_widget a:hover {
    color: #eba64c !important;
}
.cid-uAHHvVBKIL .mbr-section-subtitle {
    color: #000000;
    text-align: left;
}
.cid-uAHHvVBKIL .mbr-text {
    color: #000000;
    text-align: left;
}
.cid-uAHHvVBKIL .mbr-section-subtitle,
.cid-uAHHvVBKIL .text_widget,
.cid-uAHHvVBKIL .mbr-section-btn {
    text-align: left;
}
.cid-uAHHvVBKIL a[class*='text-']:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
    background-image: none;
}
.cid-uAHHvVCQ38 {
    background-color: #ffffff;
}
.cid-uAHHvVCQ38 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVCQ38 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVCQ38 .container-fluid {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVCQ38 .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVCQ38 .container-fluid .row {
    padding: 0;
}
.cid-uAHHvVCQ38 .title-wrapper {
    padding: 180px 120px;
}
@media (max-width: 1200px) {
    .cid-uAHHvVCQ38 .title-wrapper {
        padding: 120px 60px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVCQ38 .title-wrapper {
        padding: 80px 0;
    }
}
.cid-uAHHvVCQ38 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
}
.cid-uAHHvVCQ38 .title-wrapper .mbr-text {
    margin-bottom: 22px;
}
.cid-uAHHvVCQ38 .image-wrapper {
    position: relative;
}
.cid-uAHHvVCQ38 .image-wrapper img {
    object-fit: cover;
}
.cid-uAHHvVCQ38 .image-wrapper img:first-child {
    height: 900px;
}
@media (max-width: 992px) {
    .cid-uAHHvVCQ38 .image-wrapper img:first-child {
        height: 350px;
    }
}
.cid-uAHHvVCQ38 .image-wrapper img:last-child {
    position: absolute;
    bottom: 5rem;
    left: -7rem;
    width: 315px;
    height: 425px;
    border-radius: 10px;
}
@media (max-width: 1200px) {
    .cid-uAHHvVCQ38 .image-wrapper img:last-child {
        left: -5rem;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVCQ38 .image-wrapper img:last-child {
        display: none;
    }
}
.cid-uAHHvVCQ38 .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVCQ38 .mbr-text {
    color: #000000;
}
.cid-uAHHvVDbPL {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #ffffff;
}
.cid-uAHHvVDbPL .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVDbPL .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVDbPL .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVDbPL .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVDbPL .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVDbPL .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVDbPL .card {
    margin-bottom: 64px;
}
.cid-uAHHvVDbPL .card .card-wrapper {
    display: flex;
    margin-right: 110px;
}
@media (max-width: 1400px) {
    .cid-uAHHvVDbPL .card .card-wrapper {
        margin-right: 30px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVDbPL .card .card-wrapper {
        margin: 0;
    }
}
@media (max-width: 768px) {
    .cid-uAHHvVDbPL .card .card-wrapper {
        display: block;
    }
}
.cid-uAHHvVDbPL .card .card-wrapper .mbr-iconfont {
    font-size: 75px;
    margin-right: 28px;
    color: #a8a8a8;
}
@media (max-width: 768px) {
    .cid-uAHHvVDbPL .card .card-wrapper .mbr-iconfont {
        margin-bottom: 16px;
        display: block;
    }
}
.cid-uAHHvVDbPL .card .card-wrapper .card-content .mbr-section-title {
    margin-bottom: 16px;
}
.cid-uAHHvVDbPL .card .card-wrapper .card-content .mbr-text {
    line-height: 1.625;
    margin-bottom: 0;
}
.cid-uAHHvVDbPL .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVDbPL .mbr-text {
    color: #000000;
}
.cid-uAHHvVDFy5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f9f9f9;
}
.cid-uAHHvVDFy5 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVDFy5 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVDFy5 .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVDFy5 .text-wrapper .mbr-text {
    margin-bottom: 0;
}
.cid-uAHHvVDFy5 .mbr-text {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVE4cm {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #ffffff;
}
.cid-uAHHvVE4cm .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVE4cm .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVE4cm .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVE4cm .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVE4cm .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVE4cm .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVE4cm .row {
    justify-content: center;
}
.cid-uAHHvVE4cm .title-wrapper {
    margin-bottom: 55px;
}
.cid-uAHHvVE4cm .title-wrapper .mbr-section-title {
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVE4cm .card {
        margin-bottom: 30px;
    }
}
.cid-uAHHvVE4cm .card .card-wrapper {
    display: flex;
}
.cid-uAHHvVE4cm .card .card-wrapper .mbr-number {
    min-width: 100px;
    margin: 0 22px 0 0;
}
@media (max-width: 425px) {
    .cid-uAHHvVE4cm .card .card-wrapper .mbr-number {
        min-width: 62px;
    }
}
.cid-uAHHvVE4cm .card .card-wrapper .card-content .mbr-card-title {
    margin-bottom: 6px;
}
.cid-uAHHvVE4cm .card .card-wrapper .card-content .mbr-text {
    line-height: 1.625;
    margin-bottom: 0;
}
.cid-uAHHvVE4cm .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVE4cm .mbr-number {
    color: #000000;
}
.cid-uAHHvVE4cm .mbr-card-title {
    color: #000000;
}
.cid-uAHHvVE4cm .mbr-text {
    color: #000000;
}
.cid-uAHHvVEd33 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-uAHHvVEd33 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVEd33 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVEd33 .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVEd33 .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVEd33 .container-fluid .row {
    margin: 0;
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVEd33 .container-fluid .row {
        margin: 0;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVEd33 .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVEd33 .row {
    justify-content: center;
}
.cid-uAHHvVEd33 .title-wrapper {
    margin-bottom: 55px;
}
.cid-uAHHvVEd33 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
}
.cid-uAHHvVEd33 .title-wrapper .link-wrapper:hover .mbr-link {
    color: #ff6839;
}
.cid-uAHHvVEd33 .title-wrapper .link-wrapper .mbr-link {
    margin-bottom: 0;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVEd33 .card {
    padding: 0 8px;
}
.cid-uAHHvVEd33 .card:nth-child(2n) {
    padding: 80px 8px 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVEd33 .card:nth-child(2n) {
        padding: 0 12px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVEd33 .card {
        padding: 0 12px;
    }
}
.cid-uAHHvVEd33 .card a {
    display: block;
}
.cid-uAHHvVEd33 .card a:hover .image-wrapper .mbr-iconfont {
    opacity: 1;
}
.cid-uAHHvVEd33 .card a:hover .image-wrapper::before {
    opacity: 0.5;
}
.cid-uAHHvVEd33 .card a .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cid-uAHHvVEd33 .card a .image-wrapper img {
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 992px) {
    .cid-uAHHvVEd33 .card a .image-wrapper img {
        height: 250px;
        margin-bottom: 22px;
    }
}
.cid-uAHHvVEd33 .card a .image-wrapper .mbr-iconfont {
    position: absolute;
    font-size: 22px;
    color: #ffffff;
    opacity: 0;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVEd33 .card a .image-wrapper:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-color: #ffffff;
    opacity: 0;
    border-radius: 10px;
    transition: all 0.3s ease-out;
    pointer-events: none;
}
.cid-uAHHvVEd33 .text-wrapper {
    margin-top: 44px;
}
.cid-uAHHvVEd33 .text-wrapper .mbr-text {
    margin: 0;
}
.cid-uAHHvVEd33 .mbr-section-title {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVEd33 .mbr-link {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVEd33 .mbr-text {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVFmGS {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: transparent;
}
.cid-uAHHvVFmGS .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVFmGS .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVFmGS .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVFmGS .row {
    justify-content: center;
}
.cid-uAHHvVFmGS .title-wrapper {
    margin-bottom: 140px;
}
.cid-uAHHvVFmGS .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
}
.cid-uAHHvVFmGS .title-wrapper .mbr-text {
    margin-bottom: 0;
}
.cid-uAHHvVFmGS .card:nth-child(3n) .card-wrapper {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVFmGS .card:nth-child(3n) .card-wrapper {
        margin: 50px 0 50px;
    }
}
.cid-uAHHvVFmGS .card .card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 4px;
    padding: 45px 36px 66px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: visible;
}
@media (max-width: 992px) {
    .cid-uAHHvVFmGS .card .card-wrapper {
        margin: 0 0 50px;
        padding: 45px 22px 66px;
    }
}
.cid-uAHHvVFmGS .card .card-wrapper .best-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -3.4rem;
    left: 0;
    width: 100%;
    min-height: 54px;
    background-color: #e55b13;
    padding: 18px 8px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.cid-uAHHvVFmGS .card .card-wrapper .best-wrap .best-wrapper {
    width: 100%;
}
.cid-uAHHvVFmGS .card .card-wrapper .best-wrap .best-wrapper .mbr-best {
    margin-bottom: 0;
}
.cid-uAHHvVFmGS .card .card-wrapper .card-content .mbr-card-title {
    margin: 25px 0;
}
.cid-uAHHvVFmGS .card .card-wrapper .card-content .price-wrap .mbr-price {
    margin-bottom: 25px;
    position: relative;
    display: inline-flex;
}
.cid-uAHHvVFmGS .card .card-wrapper .card-content .price-wrap .mbr-price span {
    position: absolute;
    font-size: 50%;
    top: 0.4rem;
    left: -2rem;
}
.cid-uAHHvVFmGS .card .card-wrapper .card-content .mbr-desc {
    margin-bottom: 25px;
}
.cid-uAHHvVFmGS .card .card-wrapper .card-content .list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.cid-uAHHvVFmGS .card .card-wrapper .card-content .list .item-wrap {
    line-height: 1.625;
    margin-bottom: 10px;
}
.cid-uAHHvVFmGS .card .card-wrapper .mbr-section-btn {
    margin-top: 18px;
}
.cid-uAHHvVFmGS .mbr-section-title {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVFmGS .mbr-text {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVFmGS .mbr-best {
    color: #FFFFFF;
    text-align: center;
}
.cid-uAHHvVFmGS .mbr-card-title {
    color: #000000;
}
.cid-uAHHvVFmGS .mbr-price,
.cid-uAHHvVFmGS .price-wrap {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVFmGS .mbr-desc {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVFmGS .list {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVFmGS .mbr-card-title,
.cid-uAHHvVFmGS .mbr-section-btn {
    text-align: center;
}
.cid-uAHHvVFN2A {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #e55b13;
}
.cid-uAHHvVFN2A .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVFN2A .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVFN2A .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVFN2A .title-wrapper .mbr-section-title {
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVFN2A .title-wrapper .mbr-section-title {
        margin-bottom: 20px;
    }
}
.cid-uAHHvVFN2A .mbr-section-btn {
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 992px) {
    .cid-uAHHvVFN2A .mbr-section-btn {
        display: block;
    }
}
.cid-uAHHvVFN2A .mbr-section-title {
    color: #ffffff;
}
.cid-uAHHvVFN2A .mbr-section-title,
.cid-uAHHvVFN2A .mbr-section-btn {
    color: #FFFFFF;
}
.cid-uAHHvVGzj9 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #ffffff;
}
.cid-uAHHvVGzj9 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVGzj9 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVGzj9 .container-fluid {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVGzj9 .container-fluid {
        padding: 0;
    }
}
.cid-uAHHvVGzj9 .container-fluid .row {
    padding: 0;
}
.cid-uAHHvVGzj9 .card {
    padding: 0;
}
.cid-uAHHvVGzj9 .card:first-child .image-wrapper {
    height: 100%;
}
.cid-uAHHvVGzj9 .card:first-child .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 992px) {
    .cid-uAHHvVGzj9 .card:first-child .image-wrapper img {
        height: 270px;
    }
}
.cid-uAHHvVGzj9 .card:last-child {
    display: grid;
    grid-template-columns: 200px 200px;
    column-gap: 64px;
    row-gap: 55px;
    justify-content: center;
    align-items: center;
    padding: 130px 0;
    border-radius: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVGzj9 .card:last-child {
        padding: 110px;
    }
}
@media (max-width: 768px) {
    .cid-uAHHvVGzj9 .card:last-child {
        padding: 80px 30px;
        grid-template-columns: 1fr;
    }
}
.cid-uAHHvVGzj9 .card:last-child .card-wrapper .mbr-number {
    margin-bottom: 12px;
}
.cid-uAHHvVGzj9 .card:last-child .card-wrapper .mbr-section-title {
    margin-bottom: 4px;
}
.cid-uAHHvVGzj9 .card:last-child .card-wrapper .mbr-text {
    line-height: 1.625;
    margin-bottom: 0;
}
.cid-uAHHvVGzj9 .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVGzj9 .mbr-number {
    color: #000000;
}
.cid-uAHHvVGzj9 .mbr-text {
    color: #000000;
}
.cid-uAHHvVG7h2 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-uAHHvVG7h2 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVG7h2 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVG7h2 .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVG7h2 .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVG7h2 .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVG7h2 .container {
        padding: 0 30px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVG7h2 .title-wrapper {
        margin-bottom: 32px;
    }
}
.cid-uAHHvVG7h2 .title-wrapper .mbr-section-title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 14px;
    position: relative;
}
.cid-uAHHvVG7h2 .title-wrapper .mbr-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000000;
}
.cid-uAHHvVG7h2 .items {
    display: grid;
    grid-template-columns: 175px 175px 175px 175px;
    column-gap: 40px;
    row-gap: 90px;
}
@media (min-width: 1500px) {
    .cid-uAHHvVG7h2 .items {
        grid-template-columns: 200px 200px 200px 200px;
    }
}
@media (min-width: 1900px) {
    .cid-uAHHvVG7h2 .items {
        grid-template-columns: 250px 250px 250px 250px;
    }
}
@media (max-width: 1350px) {
    .cid-uAHHvVG7h2 .items {
        grid-template-columns: 145px 145px 145px 145px;
    }
}
@media (max-width: 1199px) {
    .cid-uAHHvVG7h2 .items {
        grid-template-columns: 115px 115px 115px 115px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVG7h2 .items {
        grid-template-columns: 230px 230px;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .cid-uAHHvVG7h2 .items {
        grid-template-columns: 230px;
    }
}
.cid-uAHHvVG7h2 .items .item .item-wrapper:hover .item-img .item-icons {
    transform: translateX(0);
}
.cid-uAHHvVG7h2 .items .item .item-wrapper:hover .item-img img {
    transform: scale(1.06);
}
.cid-uAHHvVG7h2 .items .item .item-wrapper .item-img {
    margin-bottom: 22px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.cid-uAHHvVG7h2 .items .item .item-wrapper .item-img .item-icons {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 19px;
    border-radius: 10px 0 10px 10px;
    background-color: #e55b13;
    transform: translateX(100%);
    transition: all 0.3s ease-out;
    z-index: 1;
}
.cid-uAHHvVG7h2 .items .item .item-wrapper .item-img .item-icons .mbr-iconfont {
    font-size: 20px;
    color: #ffffff;
    margin-right: 15px;
}
.cid-uAHHvVG7h2 .items .item .item-wrapper .item-img .item-icons .mbr-iconfont:last-child {
    margin-right: 0;
}
.cid-uAHHvVG7h2 .items .item .item-wrapper .item-img img {
    height: 175px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease-out;
}
@media (min-width: 1500px) {
    .cid-uAHHvVG7h2 .items .item .item-wrapper .item-img img {
        height: 290px;
    }
}
@media (min-width: 1900px) {
    .cid-uAHHvVG7h2 .items .item .item-wrapper .item-img img {
        height: 350px;
    }
}
@media (max-width: 1350px) {
    .cid-uAHHvVG7h2 .items .item .item-wrapper .item-img img {
        height: 145px;
    }
}
@media (max-width: 1199px) {
    .cid-uAHHvVG7h2 .items .item .item-wrapper .item-img img {
        height: 115px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVG7h2 .items .item .item-wrapper .item-img img {
        height: 320px;
    }
}
.cid-uAHHvVG7h2 .items .item .item-wrapper .item-content .item-name {
    margin-bottom: 0.5rem;
}
.cid-uAHHvVG7h2 .items .item .item-wrapper .item-content .item-desc {
    margin-bottom: 0.2rem;
}
.cid-uAHHvVG7h2 .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVG7h2 .item-name {
    color: #000000;
}
.cid-uAHHvVG7h2 .item-desc {
    color: #a8a8a8;
}
.cid-uAHHvVHq5K {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #1c1c1c;
}
.cid-uAHHvVHq5K .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVHq5K .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVHq5K .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVHq5K .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVHq5K .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVHq5K .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVHq5K .title-wrapper .mbr-section-title {
    margin-bottom: 55px;
}
.cid-uAHHvVHq5K .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 310px;
    max-width: 310px;
}
@media (max-width: 768px) {
    .cid-uAHHvVHq5K .embla__slide {
        min-width: 100%;
        max-width: 100%;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-uAHHvVHq5K .embla__slide .card-wrap {
    width: 100%;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a {
    display: block;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a:hover .item-wrapper .image-wrap img {
    transform: scale(1.06);
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont {
    opacity: 1;
    transform: translate(0) rotate(-45deg);
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont::after {
    opacity: 1;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a .item-wrapper {
    margin-bottom: 32px;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a .item-wrapper .image-wrap {
    position: relative;
    height: 195px;
    border-radius: 10px;
    overflow: hidden;
    padding: 14px 20px;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a .item-wrapper .image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date {
    position: relative;
    z-index: 1;
    pointer-events: visible;
    margin-bottom: 0;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date span {
    display: block;
    font-size: 32%;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a .content-wrap .mbr-desc {
    margin-bottom: 4px;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a .content-wrap .mbr-text {
    margin-bottom: 28px;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a .content-wrap .mbr-iconfont {
    position: relative;
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff;
    opacity: 0;
    transform: translate(-2px, 2px) rotate(-45deg);
    transition: all 0.3s ease-out;
}
.cid-uAHHvVHq5K .embla__slide .card-wrap a .content-wrap .mbr-iconfont::after {
    content: '';
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVHq5K .embla__button--next,
.cid-uAHHvVHq5K .embla__button--prev {
    display: flex;
}
.cid-uAHHvVHq5K .embla__button {
    bottom: -2rem;
    width: 32px;
    height: 32px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: transparent;
    color: #0aa3c2;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cid-uAHHvVHq5K .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-uAHHvVHq5K .embla__button:hover {
    background: transparent;
    color: #eba64c;
}
.cid-uAHHvVHq5K .embla__button.embla__button--prev {
    left: 0;
}
.cid-uAHHvVHq5K .embla__button.embla__button--next {
    right: auto;
    left: 2rem;
}
@media (max-width: 767px) {
    .cid-uAHHvVHq5K .embla__button {
        top: auto;
    }
}
.cid-uAHHvVHq5K .embla {
    position: relative;
    width: 100%;
}
.cid-uAHHvVHq5K .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-uAHHvVHq5K .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-uAHHvVHq5K .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-uAHHvVHq5K .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-uAHHvVHq5K .mbr-section-title {
    color: #ffffff;
}
.cid-uAHHvVHq5K .mbr-date {
    color: #ffffff;
    text-align: left;
}
.cid-uAHHvVHq5K .mbr-desc {
    color: #ffffff;
}
.cid-uAHHvVHq5K .mbr-text {
    color: #ffffff;
}
.cid-uAHHvVIist {
    background-image: url('/src/img/photo-1574593166089-4efc13083e7d.jpg');
}
.cid-uAHHvVIist .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVIist .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVIist .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVIist .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVIist .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVIist .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVIist .title-wrapper {
    margin: 10% 0 10%;
    padding: 0 8%;
}
@media (max-width: 992px) {
    .cid-uAHHvVIist .title-wrapper {
        margin-top: 0;
        padding: 0;
    }
}
.cid-uAHHvVIist .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
}
.cid-uAHHvVIist .title-wrapper .mbr-text {
    margin-bottom: 22px;
}
.cid-uAHHvVIist .mbr-section-title {
    color: #ffffff;
}
.cid-uAHHvVIist .mbr-text {
    color: #ffffff;
}
.cid-uAHHvVIrAA {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f9f9f9;
}
.cid-uAHHvVIrAA .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVIrAA .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVIrAA .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVIrAA .text-wrapper .mbr-text {
    margin-bottom: 0;
}
.cid-uAHHvVIrAA .mbr-text {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVI5dI {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: url('/src/img/photo-1560963806-394647f30329.jpeg');
}
.cid-uAHHvVI5dI .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVI5dI .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVI5dI .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVI5dI .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVI5dI .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVI5dI .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVI5dI .video-block {
    padding: 0 95px;
}
@media (max-width: 992px) {
    .cid-uAHHvVI5dI .video-block {
        padding: 0 80px;
    }
}
@media (max-width: 768px) {
    .cid-uAHHvVI5dI .video-block {
        padding: 0;
    }
}
.cid-uAHHvVI5dI .video-block .video-wrapper {
    margin-bottom: 30px;
}
.cid-uAHHvVI5dI .video-block .video-wrapper .app-video-wrapper img {
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 992px) {
    .cid-uAHHvVI5dI .video-block .video-wrapper .app-video-wrapper img {
        height: 250px;
    }
}
.cid-uAHHvVI5dI .video-block .video-wrapper .app-video-wrapper:hover::before {
    opacity: 1;
}
.cid-uAHHvVI5dI .video-block .video-wrapper .app-video-wrapper::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    font-size: 16px;
    color: #ed4009;
    text-shadow: none;
    border-radius: 100%;
    border: 1px solid #ed4009;
    opacity: 0.7;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVI5dI .video-block .text-wrapper .mbr-desc {
    line-height: 26px;
    margin-bottom: 0;
}
.cid-uAHHvVI5dI .mbr-desc {
    color: #ffffff;
    text-align: center;
}
.cid-uAHHvVJ9KD {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-uAHHvVJ9KD .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVJ9KD .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVJ9KD .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVJ9KD .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVJ9KD .container-fluid .row {
    margin: 0;
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVJ9KD .container-fluid .row {
        margin: 0;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVJ9KD .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVJ9KD .row {
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}
@media (max-width: 992px) {
    .cid-uAHHvVJ9KD .row {
        border-radius: 0;
    }
}
.cid-uAHHvVJ9KD .card {
    padding: 0;
}
.cid-uAHHvVJ9KD .card .image-wrapper img {
    height: 340px;
    object-fit: cover;
}
@media (max-width: 992px) {
    .cid-uAHHvVJ9KD .card .image-wrapper img {
        height: 250px;
        margin-bottom: 22px;
        border-radius: 10px;
    }
}
.cid-uAHHvVJ9KD .mbr-date {
    color: #ffffff;
}
.cid-uAHHvVJ9KD .mbr-link {
    color: #ffffff;
}
.cid-uAHHvVJgMN {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #ffffff;
}
.cid-uAHHvVJgMN .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVJgMN .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVJgMN .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVJgMN .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVJgMN .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVJgMN .container {
        padding: 0 30px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVJgMN .subtitle-wrapper {
        margin-bottom: 32px;
    }
}
.cid-uAHHvVJgMN .subtitle-wrapper .mbr-section-subtitle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 14px;
    position: relative;
}
.cid-uAHHvVJgMN .subtitle-wrapper .mbr-section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000000;
}
.cid-uAHHvVJgMN .title-wrapper {
    position: relative;
}
@media (max-width: 992px) {
    .cid-uAHHvVJgMN .title-wrapper {
        margin-top: 0;
        padding: 0;
    }
}
.cid-uAHHvVJgMN .title-wrapper .mbr-section-title {
    margin-bottom: 16px;
    position: relative;
}
.cid-uAHHvVJgMN .title-wrapper .mbr-name {
    margin-bottom: 0;
    position: relative;
}
.cid-uAHHvVJgMN .title-wrapper::before {
    content: '';
    position: absolute;
    right: 10rem;
    bottom: -20rem;
    transform: rotate(45deg);
    display: block;
    width: 500px;
    height: 250px;
    border-radius: 100%;
    background-color: transparent;
    border: 2px solid #e55b13;
}
@media (max-width: 992px) {
    .cid-uAHHvVJgMN .title-wrapper::before {
        display: none;
    }
}
.cid-uAHHvVJgMN .mbr-section-subtitle {
    color: #000000;
}
.cid-uAHHvVJgMN .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVJgMN .mbr-name {
    color: #000000;
}
.cid-uAHHvVJgMN .mbr-role {
    color: #a8a8a8;
}
.cid-uAHHvVJBhE {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f9f9f9;
}
.cid-uAHHvVJBhE .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVJBhE .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVJBhE .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVJBhE .text-wrapper .mbr-text {
    margin-bottom: 0;
}
.cid-uAHHvVJBhE .mbr-text {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVJT2R {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: transparent;
}
.cid-uAHHvVJT2R .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVJT2R .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVJT2R .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVJT2R .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVJT2R .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVJT2R .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVJT2R .text-wrap {
    display: flex;
    align-items: flex-end;
}
.cid-uAHHvVJT2R .text-wrap .text-wrapper {
    display: inline-flex;
    padding-top: 30px;
    border-top: 1px solid #000000;
    margin: 0 92px 40px 0;
}
@media (max-width: 1440px) {
    .cid-uAHHvVJT2R .text-wrap .text-wrapper {
        margin: 0 40px 40px 0;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVJT2R .text-wrap .text-wrapper {
        margin: 0 0 30px 0;
    }
}
.cid-uAHHvVJT2R .text-wrap .text-wrapper .mbr-text {
    margin-bottom: 0;
}
.cid-uAHHvVJT2R .text-wrap .text-wrapper .mbr-iconfont {
    font-size: 22px;
    margin-right: 24px;
    color: #ff6839;
}
.cid-uAHHvVJT2R .image-wrapper img {
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 992px) {
    .cid-uAHHvVJT2R .image-wrapper img {
        height: 280px;
    }
}
.cid-uAHHvVJT2R .mbr-text {
    color: #000000;
}
.cid-uAHHvVK0Gz {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-uAHHvVK0Gz .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVK0Gz .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVK0Gz .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVK0Gz .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVK0Gz .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVK0Gz .container {
        padding: 0 30px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVK0Gz .title-wrapper {
        margin-bottom: 32px;
    }
}
.cid-uAHHvVK0Gz .title-wrapper .mbr-section-title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 14px;
    position: relative;
}
.cid-uAHHvVK0Gz .title-wrapper .mbr-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000000;
}
.cid-uAHHvVK0Gz .items {
    display: grid;
    grid-template-columns: 175px 175px 175px 175px;
    column-gap: 40px;
    row-gap: 90px;
}
@media (min-width: 1500px) {
    .cid-uAHHvVK0Gz .items {
        grid-template-columns: 200px 200px 200px 200px;
    }
}
@media (min-width: 1900px) {
    .cid-uAHHvVK0Gz .items {
        grid-template-columns: 250px 250px 250px 250px;
    }
}
@media (max-width: 1350px) {
    .cid-uAHHvVK0Gz .items {
        grid-template-columns: 145px 145px 145px 145px;
    }
}
@media (max-width: 1199px) {
    .cid-uAHHvVK0Gz .items {
        grid-template-columns: 115px 115px 115px 115px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVK0Gz .items {
        grid-template-columns: 230px 230px;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .cid-uAHHvVK0Gz .items {
        grid-template-columns: 230px;
    }
}
.cid-uAHHvVK0Gz .items .item .item-wrapper:hover .item-img .item-icons {
    transform: translateX(0);
}
.cid-uAHHvVK0Gz .items .item .item-wrapper:hover .item-img img {
    transform: scale(1.06);
}
.cid-uAHHvVK0Gz .items .item .item-wrapper .item-img {
    margin-bottom: 22px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.cid-uAHHvVK0Gz .items .item .item-wrapper .item-img .item-icons {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 19px;
    border-radius: 10px 0 10px 10px;
    background-color: #e55b13;
    transform: translateX(100%);
    transition: all 0.3s ease-out;
    z-index: 1;
}
.cid-uAHHvVK0Gz .items .item .item-wrapper .item-img .item-icons .mbr-iconfont {
    font-size: 20px;
    color: #ffffff;
    margin-right: 15px;
}
.cid-uAHHvVK0Gz .items .item .item-wrapper .item-img .item-icons .mbr-iconfont:last-child {
    margin-right: 0;
}
.cid-uAHHvVK0Gz .items .item .item-wrapper .item-img img {
    height: 175px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease-out;
}
@media (min-width: 1500px) {
    .cid-uAHHvVK0Gz .items .item .item-wrapper .item-img img {
        height: 200px;
    }
}
@media (min-width: 1900px) {
    .cid-uAHHvVK0Gz .items .item .item-wrapper .item-img img {
        height: 250px;
    }
}
@media (max-width: 1350px) {
    .cid-uAHHvVK0Gz .items .item .item-wrapper .item-img img {
        height: 145px;
    }
}
@media (max-width: 1199px) {
    .cid-uAHHvVK0Gz .items .item .item-wrapper .item-img img {
        height: 115px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVK0Gz .items .item .item-wrapper .item-img img {
        height: 230px;
    }
}
.cid-uAHHvVK0Gz .items .item .item-wrapper .item-content .item-name {
    margin-bottom: 0.5rem;
}
.cid-uAHHvVK0Gz .items .item .item-wrapper .item-content .item-desc {
    margin-bottom: 0.2rem;
}
.cid-uAHHvVK0Gz .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVK0Gz .item-name {
    color: #000000;
}
.cid-uAHHvVK0Gz .item-desc {
    color: #a8a8a8;
}
.cid-uAHHvVKv8a {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f9f9f9;
}
.cid-uAHHvVKv8a .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVKv8a .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVKv8a .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVKv8a .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVKv8a .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVKv8a .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVKv8a .text-wrap {
    display: flex;
    align-items: center;
}
.cid-uAHHvVKv8a .text-wrap .text-wrapper {
    padding-right: 160px;
    padding-right: 0;
    padding-left: 160px;
}
@media (max-width: 1200px) {
    .cid-uAHHvVKv8a .text-wrap .text-wrapper {
        padding-right: 82px;
    }
}
@media (max-width: 1200px) {
    .cid-uAHHvVKv8a .text-wrap .text-wrapper {
        padding-right: 0;
        padding-left: 82px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVKv8a .text-wrap .text-wrapper {
        padding: 0;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVKv8a .text-wrap .text-wrapper {
        padding: 0;
    }
}
.cid-uAHHvVKv8a .text-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 32px;
}
.cid-uAHHvVKv8a .text-wrap .text-wrapper .mbr-text {
    margin-bottom: 22px;
}
.cid-uAHHvVKv8a .image-wrapper {
    position: relative;
}
@media (max-width: 992px) {
    .cid-uAHHvVKv8a .image-wrapper {
        margin-top: 60px;
    }
}
.cid-uAHHvVKv8a .image-wrapper img {
    object-fit: cover;
    border-radius: 10px;
}
.cid-uAHHvVKv8a .image-wrapper img:first-child {
    height: 720px;
}
@media (max-width: 992px) {
    .cid-uAHHvVKv8a .image-wrapper img:first-child {
        height: 280px;
    }
}
.cid-uAHHvVKv8a .image-wrapper img:last-child {
    position: absolute;
    bottom: 4rem;
    left: -7rem;
    width: 230px;
    height: 320px;
    left: auto;
    right: -7rem;
}
@media (max-width: 1200px) {
    .cid-uAHHvVKv8a .image-wrapper img:last-child {
        right: -5rem;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVKv8a .image-wrapper img:last-child {
        display: none;
    }
}
.cid-uAHHvVKv8a .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVKv8a .mbr-text {
    color: #000000;
}
.cid-uAHHvVKv8a .mbr-cit {
    color: #000000;
}
.cid-uAHHvVKv8a .mbr-name {
    color: #a8a8a8;
}
.cid-uAHHvVKKPa {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: transparent;
}
.cid-uAHHvVKKPa .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVKKPa .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVKKPa .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVKKPa .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVKKPa .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVKKPa .container {
        padding: 0 30px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVKKPa .title-wrapper {
        margin-bottom: 32px;
    }
}
.cid-uAHHvVKKPa .title-wrapper .mbr-section-title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 14px;
    position: relative;
}
.cid-uAHHvVKKPa .title-wrapper .mbr-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000000;
}
.cid-uAHHvVKKPa .panel-group {
    padding: 60px 80px;
    border-radius: 10px;
    background-color: #ffffff;
}
@media (max-width: 768px) {
    .cid-uAHHvVKKPa .panel-group {
        padding: 60px 30px;
    }
}
@media (max-width: 425px) {
    .cid-uAHHvVKKPa .panel-group {
        padding: 60px 16px;
    }
}
.cid-uAHHvVKKPa .panel-group .card {
    border-bottom: 1px solid #000000;
    border-radius: 0;
}
.cid-uAHHvVKKPa .panel-group .card .card-header {
    padding: 22px 0;
    background-color: transparent;
    border: none;
}
.cid-uAHHvVKKPa .panel-group .card .card-header .panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background-color: transparent;
}
.cid-uAHHvVKKPa .panel-group .card .card-header .panel-title .panel-title-edit {
    margin-bottom: 0;
}
.cid-uAHHvVKKPa .panel-group .card .card-header .panel-title .mbr-iconfont {
    margin-left: 10px;
    font-size: 22px;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVKKPa .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
    color: #e55b13;
    transform: rotate(90deg);
}
.cid-uAHHvVKKPa .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 50px;
}
.cid-uAHHvVKKPa .panel-group .card .panel-collapse .panel-body .panel-text {
    line-height: 1.625;
    margin-bottom: 0;
}
.cid-uAHHvVKKPa .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVKKPa .panel-title-edit,
.cid-uAHHvVKKPa .mbr-iconfont {
    color: #000000;
}
.cid-uAHHvVKKPa .panel-text {
    color: #000000;
}
.cid-uAHHvVLdLc {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: transparent;
}
.cid-uAHHvVLdLc .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVLdLc .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVLdLc .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVLdLc .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVLdLc .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVLdLc .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVLdLc .row {
    position: relative;
}
.cid-uAHHvVLdLc .row::before {
    content: '';
    position: absolute;
    top: -15rem;
    right: -10rem;
    transform: rotate(-45deg);
    display: block;
    width: 500px;
    height: 400px;
    border-radius: 100%;
    border: 2px solid #e55b13;
}
@media (max-width: 992px) {
    .cid-uAHHvVLdLc .row::before {
        display: none;
    }
}
.cid-uAHHvVLdLc .image-wrapper {
    margin-bottom: 40px;
    margin-right: 64px;
}
@media (max-width: 1300px) {
    .cid-uAHHvVLdLc .image-wrapper {
        margin-right: 0;
    }
}
.cid-uAHHvVLdLc .image-wrapper img {
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 992px) {
    .cid-uAHHvVLdLc .image-wrapper img {
        height: 280px;
    }
}
.cid-uAHHvVLdLc .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 100%;
    max-width: 100%;
}
@media (max-width: 768px) {
    .cid-uAHHvVLdLc .embla__slide {
        min-width: 100%;
        max-width: 100%;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-uAHHvVLdLc .embla__slide .card-wrap .content-wrap .mbr-text {
    margin-bottom: 38px;
}
.cid-uAHHvVLdLc .embla__slide .card-wrap .content-wrap .mbr-name {
    margin-bottom: 0;
}
.cid-uAHHvVLdLc .embla__slide .card-wrap .content-wrap .mbr-role {
    margin-bottom: 0;
}
.cid-uAHHvVLdLc .embla__button--next,
.cid-uAHHvVLdLc .embla__button--prev {
    display: flex;
}
.cid-uAHHvVLdLc .embla__button {
    bottom: -4rem;
    width: 32px;
    height: 32px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: transparent;
    color: #7a871e;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cid-uAHHvVLdLc .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-uAHHvVLdLc .embla__button:hover {
    background: transparent;
    color: #eba64c;
}
.cid-uAHHvVLdLc .embla__button.embla__button--prev {
    left: 0;
}
.cid-uAHHvVLdLc .embla__button.embla__button--next {
    right: auto;
    left: 2rem;
}
@media (max-width: 767px) {
    .cid-uAHHvVLdLc .embla__button {
        top: auto;
    }
}
.cid-uAHHvVLdLc .slider-wrap {
    display: flex;
    align-items: center;
}
.cid-uAHHvVLdLc .embla {
    position: relative;
    width: 100%;
}
.cid-uAHHvVLdLc .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-uAHHvVLdLc .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-uAHHvVLdLc .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-uAHHvVLdLc .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-uAHHvVLdLc .mbr-text {
    color: #000000;
}
.cid-uAHHvVLdLc .mbr-name {
    color: #000000;
}
.cid-uAHHvVLdLc .mbr-role {
    color: #a8a8a8;
}
.cid-uAHHvVM1F6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: transparent;
}
.cid-uAHHvVM1F6 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVM1F6 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVM1F6 .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVM1F6 .row {
    justify-content: center;
}
.cid-uAHHvVM1F6 .title-wrapper {
    margin-bottom: 140px;
}
.cid-uAHHvVM1F6 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
}
.cid-uAHHvVM1F6 .title-wrapper .mbr-text {
    margin-bottom: 0;
}
.cid-uAHHvVM1F6 .card:nth-child(3n) .card-wrapper {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVM1F6 .card:nth-child(3n) .card-wrapper {
        margin: 50px 0 50px;
    }
}
.cid-uAHHvVM1F6 .card .card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 4px;
    padding: 45px 36px 66px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: visible;
}
@media (max-width: 992px) {
    .cid-uAHHvVM1F6 .card .card-wrapper {
        margin: 0 0 50px;
        padding: 45px 22px 66px;
    }
}
.cid-uAHHvVM1F6 .card .card-wrapper .best-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -3.4rem;
    left: 0;
    width: 100%;
    min-height: 54px;
    background-color: #e55b13;
    padding: 18px 8px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.cid-uAHHvVM1F6 .card .card-wrapper .best-wrap .best-wrapper {
    width: 100%;
}
.cid-uAHHvVM1F6 .card .card-wrapper .best-wrap .best-wrapper .mbr-best {
    margin-bottom: 0;
}
.cid-uAHHvVM1F6 .card .card-wrapper .card-content .mbr-card-title {
    margin: 25px 0;
}
.cid-uAHHvVM1F6 .card .card-wrapper .card-content .price-wrap .mbr-price {
    margin-bottom: 25px;
    position: relative;
    display: inline-flex;
}
.cid-uAHHvVM1F6 .card .card-wrapper .card-content .price-wrap .mbr-price span {
    position: absolute;
    font-size: 50%;
    top: 0.4rem;
    left: -2rem;
}
.cid-uAHHvVM1F6 .card .card-wrapper .card-content .mbr-desc {
    margin-bottom: 25px;
}
.cid-uAHHvVM1F6 .card .card-wrapper .card-content .list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.cid-uAHHvVM1F6 .card .card-wrapper .card-content .list .item-wrap {
    line-height: 1.625;
    margin-bottom: 10px;
}
.cid-uAHHvVM1F6 .card .card-wrapper .mbr-section-btn {
    margin-top: 18px;
}
.cid-uAHHvVM1F6 .mbr-section-title {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVM1F6 .mbr-text {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVM1F6 .mbr-best {
    color: #FFFFFF;
    text-align: center;
}
.cid-uAHHvVM1F6 .mbr-card-title {
    color: #000000;
}
.cid-uAHHvVM1F6 .mbr-price,
.cid-uAHHvVM1F6 .price-wrap {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVM1F6 .mbr-desc {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVM1F6 .list {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVM1F6 .mbr-card-title,
.cid-uAHHvVM1F6 .mbr-section-btn {
    text-align: center;
}
.cid-uAHHvVOVOV {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background: #f9f9f9;
}
.cid-uAHHvVOVOV .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVOVOV .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVOVOV .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVOVOV .row {
    position: relative;
}
.cid-uAHHvVOVOV .row::before {
    content: '';
    position: absolute;
    bottom: -15rem;
    left: -15rem;
    transform: rotate(-10deg);
    display: block;
    width: 500px;
    height: 250px;
    border-radius: 100%;
    border: 2px solid #e55b13;
}
@media (max-width: 992px) {
    .cid-uAHHvVOVOV .row::before {
        display: none;
    }
}
.cid-uAHHvVOVOV .title-wrapper {
    margin-bottom: 55px;
}
.cid-uAHHvVOVOV .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
}
.cid-uAHHvVOVOV .title-wrapper .mbr-text {
    margin-bottom: 0;
}
.cid-uAHHvVOVOV .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 380px;
    max-width: 380px;
}
@media (max-width: 768px) {
    .cid-uAHHvVOVOV .embla__slide {
        min-width: 100%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-uAHHvVOVOV .embla__slide .card-wrap .content-wrap .rating-wrapper {
    margin-bottom: 30px;
}
.cid-uAHHvVOVOV .embla__slide .card-wrap .content-wrap .rating-wrapper .rating-wrap {
    display: inline-flex;
}
.cid-uAHHvVOVOV .embla__slide .card-wrap .content-wrap .rating-wrapper .rating-wrap .mbr-iconfont {
    font-size: 22px;
    color: #000000;
    margin-right: 5px;
}
.cid-uAHHvVOVOV .embla__slide .card-wrap .content-wrap .mbr-text {
    margin-bottom: 38px;
}
.cid-uAHHvVOVOV .embla__slide .card-wrap .content-wrap .mbr-name {
    margin-bottom: 0.3rem;
}
.cid-uAHHvVOVOV .embla__slide .card-wrap .content-wrap .mbr-role {
    margin-bottom: 0;
}
.cid-uAHHvVOVOV .embla__button--next,
.cid-uAHHvVOVOV .embla__button--prev {
    display: flex;
}
.cid-uAHHvVOVOV .embla__button {
    bottom: -4rem;
    width: 32px;
    height: 32px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: transparent;
    color: #7a871e;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cid-uAHHvVOVOV .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-uAHHvVOVOV .embla__button:hover {
    background: transparent;
    color: #eba64c;
}
.cid-uAHHvVOVOV .embla__button.embla__button--prev {
    left: 0;
}
.cid-uAHHvVOVOV .embla__button.embla__button--next {
    right: auto;
    left: 2rem;
}
@media (max-width: 767px) {
    .cid-uAHHvVOVOV .embla__button {
        top: auto;
    }
}
.cid-uAHHvVOVOV .slider-wrap {
    display: flex;
    align-items: center;
}
.cid-uAHHvVOVOV .embla {
    position: relative;
    width: 100%;
}
.cid-uAHHvVOVOV .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-uAHHvVOVOV .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-uAHHvVOVOV .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-uAHHvVOVOV .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-uAHHvVOVOV .mbr-section-title {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVOVOV .mbr-text {
    color: #000000;
    text-align: center;
}
.cid-uAHHvVOVOV .mbr-card-text {
    color: #000000;
}
.cid-uAHHvVOVOV .mbr-name {
    color: #000000;
}
.cid-uAHHvVOVOV .mbr-role {
    color: #a8a8a8;
}
.cid-uAHHvVPMGy {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #ffffff;
}
.cid-uAHHvVPMGy .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVPMGy .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVPMGy .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVPMGy .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVPMGy .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVPMGy .container {
        padding: 0 30px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVPMGy .subtitle-wrapper {
        margin-bottom: 32px;
    }
}
.cid-uAHHvVPMGy .subtitle-wrapper .mbr-section-subtitle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 14px;
    position: relative;
}
.cid-uAHHvVPMGy .subtitle-wrapper .mbr-section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000000;
}
.cid-uAHHvVPMGy .title-wrapper {
    position: relative;
}
@media (max-width: 992px) {
    .cid-uAHHvVPMGy .title-wrapper {
        margin-top: 0;
        padding: 0;
    }
}
.cid-uAHHvVPMGy .title-wrapper .mbr-section-title {
    margin-bottom: 16px;
    position: relative;
}
.cid-uAHHvVPMGy .title-wrapper .mbr-name {
    margin-bottom: 0;
    position: relative;
}
.cid-uAHHvVPMGy .title-wrapper::before {
    content: '';
    position: absolute;
    right: 10rem;
    bottom: -20rem;
    transform: rotate(45deg);
    display: block;
    width: 500px;
    height: 250px;
    border-radius: 100%;
    background-color: transparent;
    border: 2px solid #e55b13;
}
@media (max-width: 992px) {
    .cid-uAHHvVPMGy .title-wrapper::before {
        display: none;
    }
}
.cid-uAHHvVPMGy .mbr-section-subtitle {
    color: #000000;
}
.cid-uAHHvVPMGy .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVPMGy .mbr-name {
    color: #000000;
}
.cid-uAHHvVPMGy .mbr-role {
    color: #a8a8a8;
}
.cid-uAHHvVPABW {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #ffffff;
}
.cid-uAHHvVPABW .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVPABW .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVPABW .container-fluid {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVPABW .container-fluid {
        padding: 0;
    }
}
.cid-uAHHvVPABW .container-fluid .row {
    padding: 0;
}
.cid-uAHHvVPABW .card {
    padding: 0;
}
.cid-uAHHvVPABW .card:first-child {
    padding: 140px 170px;
}
@media (max-width: 1200px) {
    .cid-uAHHvVPABW .card:first-child {
        padding: 100px 90px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVPABW .card:first-child {
        padding: 110px 30px;
    }
}
.cid-uAHHvVPABW .card .text-wrapper .mbr-section-title {
    margin-bottom: 32px;
}
.cid-uAHHvVPABW .card .text-wrapper .list {
    margin: 0;
    padding: 0;
    list-style-position: inside;
    list-style-type: none;
    counter-reset: myCounter;
    line-height: 1.625;
}
.cid-uAHHvVPABW .card .text-wrapper .list li {
    margin-bottom: 30px;
    position: relative;
    list-style-type: none;
    min-height: 18px;
}
.cid-uAHHvVPABW .card:last-child {
    position: relative;
}
.cid-uAHHvVPABW .card:last-child img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cid-uAHHvVPABW .card:last-child .desc-wrapper {
    display: flex;
    height: 100%;
    align-items: flex-end;
    padding: 22px 50px;
}
@media (max-width: 992px) {
    .cid-uAHHvVPABW .card:last-child .desc-wrapper {
        padding: 200px 30px 30px 30px;
    }
}
.cid-uAHHvVPABW .card:last-child .desc-wrapper .mbr-desc {
    width: 100%;
    margin: 25px 0;
    position: relative;
}
.cid-uAHHvVPABW .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVPABW .list {
    color: #000000;
}
.cid-uAHHvVPABW .mbr-desc {
    color: #ffffff;
}
.cid-uAHHvVQSqs {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #1c1c1c;
}
.cid-uAHHvVQSqs .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVQSqs .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVQSqs .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVQSqs .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVQSqs .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVQSqs .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVQSqs .title-wrapper .mbr-section-title {
    margin-bottom: 55px;
}
.cid-uAHHvVQSqs .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 310px;
    max-width: 310px;
}
@media (max-width: 768px) {
    .cid-uAHHvVQSqs .embla__slide {
        min-width: 100%;
        max-width: 100%;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
.cid-uAHHvVQSqs .embla__slide .card-wrap {
    width: 100%;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a {
    display: block;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a:hover .item-wrapper .image-wrap img {
    transform: scale(1.06);
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont {
    opacity: 1;
    transform: translate(0) rotate(-45deg);
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont::after {
    opacity: 1;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a .item-wrapper {
    margin-bottom: 32px;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a .item-wrapper .image-wrap {
    position: relative;
    height: 195px;
    border-radius: 10px;
    overflow: hidden;
    padding: 14px 20px;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a .item-wrapper .image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date {
    position: relative;
    z-index: 1;
    pointer-events: visible;
    margin-bottom: 0;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date span {
    display: block;
    font-size: 32%;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a .content-wrap .mbr-desc {
    margin-bottom: 4px;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a .content-wrap .mbr-text {
    margin-bottom: 28px;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a .content-wrap .mbr-iconfont {
    position: relative;
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff;
    opacity: 0;
    transform: translate(-2px, 2px) rotate(-45deg);
    transition: all 0.3s ease-out;
}
.cid-uAHHvVQSqs .embla__slide .card-wrap a .content-wrap .mbr-iconfont::after {
    content: '';
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVQSqs .embla__button--next,
.cid-uAHHvVQSqs .embla__button--prev {
    display: flex;
}
.cid-uAHHvVQSqs .embla__button {
    bottom: -2rem;
    width: 32px;
    height: 32px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: transparent;
    color: #0aa3c2;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cid-uAHHvVQSqs .embla__button:disabled {
    cursor: default;
    display: none;
}
.cid-uAHHvVQSqs .embla__button:hover {
    background: transparent;
    color: #eba64c;
}
.cid-uAHHvVQSqs .embla__button.embla__button--prev {
    left: 0;
}
.cid-uAHHvVQSqs .embla__button.embla__button--next {
    right: auto;
    left: 2rem;
}
@media (max-width: 767px) {
    .cid-uAHHvVQSqs .embla__button {
        top: auto;
    }
}
.cid-uAHHvVQSqs .embla {
    position: relative;
    width: 100%;
}
.cid-uAHHvVQSqs .embla__viewport {
    overflow: hidden;
    width: 100%;
}
.cid-uAHHvVQSqs .embla__viewport.is-draggable {
    cursor: grab;
}
.cid-uAHHvVQSqs .embla__viewport.is-dragging {
    cursor: grabbing;
}
.cid-uAHHvVQSqs .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cid-uAHHvVQSqs .mbr-section-title {
    color: #ffffff;
}
.cid-uAHHvVQSqs .mbr-date {
    color: #ffffff;
    text-align: left;
}
.cid-uAHHvVQSqs .mbr-desc {
    color: #ffffff;
}
.cid-uAHHvVQSqs .mbr-text {
    color: #ffffff;
}
.cid-uAHHvVQfBG {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-uAHHvVQfBG .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVQfBG .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVQfBG .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVQfBG .title-wrapper .mbr-section-title {
    margin-bottom: 55px;
}
.cid-uAHHvVQfBG .item {
    margin-bottom: 72px;
}
.cid-uAHHvVQfBG .item a {
    display: block;
}
.cid-uAHHvVQfBG .item a:hover .item-wrapper .item-img img {
    transform: scale(1.06);
}
.cid-uAHHvVQfBG .item a:hover .item-wrapper .item-img .mbr-iconfont {
    opacity: 1;
}
.cid-uAHHvVQfBG .item a .item-wrapper {
    padding: 0 4px 40px;
}
.cid-uAHHvVQfBG .item a .item-wrapper .item-img {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cid-uAHHvVQfBG .item a .item-wrapper .item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVQfBG .item a .item-wrapper .item-img .mbr-iconfont {
    position: relative;
    font-size: 22px;
    width: 104px;
    height: 104px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    opacity: 0.7;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVQfBG .item a .item-content {
    padding: 0 4px;
}
.cid-uAHHvVQfBG .item a .item-content .item-time .item-time-wrap {
    display: inline-flex;
    align-items: center;
}
.cid-uAHHvVQfBG .item a .item-content .item-time .item-time-wrap .mbr-iconfont {
    display: inline-block;
    font-size: 18px;
    margin-right: 4px;
}
.cid-uAHHvVQfBG .item a .item-content .item-time .item-time-wrap .mbr-time {
    display: inline-block;
    margin-bottom: 0;
}
.cid-uAHHvVQfBG .item a .item-content .mbr-card-title {
    margin-bottom: 16px;
}
.cid-uAHHvVQfBG .item a .item-content .mbr-desc {
    margin-bottom: 0;
}
.cid-uAHHvVQfBG .mbr-section-btn {
    margin-top: 46px;
    text-align: center;
}
.cid-uAHHvVQfBG .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVQfBG .mbr-time {
    color: #000000;
}
.cid-uAHHvVQfBG .mbr-card-title {
    color: #000000;
}
.cid-uAHHvVQfBG .mbr-desc {
    color: #a8a8a8;
}
.cid-uAHHvVRikB {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-uAHHvVRikB .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVRikB .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVRikB .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVRikB .item .item-wrapper {
    padding: 0 8px 40px;
}
.cid-uAHHvVRikB .item .item-wrapper .item-img {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: 430px;
}
.cid-uAHHvVRikB .item .item-wrapper .item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cid-uAHHvVRikB .item .item-wrapper .item-img .item-content {
    position: relative;
    height: 100%;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    background: rgba(0, 0, 0, .4);
}
.cid-uAHHvVRikB .item .item-wrapper .item-img .item-content .mbr-section-title {
    margin-bottom: 0;
    pointer-events: visible;
}
.cid-uAHHvVRikB .item .item-wrapper .item-img .item-content .mbr-section-btn {
    pointer-events: visible;
}
.cid-uAHHvVRikB .item .item-wrapper .item-img .item-content .mbr-section-btn .btn {
    margin-bottom: 0;
}
.cid-uAHHvVRikB .mbr-section-title {
    color: #ffffff;
}
.cid-uAHHvVRV9I {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: url('/src/img/photo-1638370714788-2424881f92f4.jpg');
}
.cid-uAHHvVRV9I .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVRV9I .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVRV9I .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVRV9I .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVRV9I .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVRV9I .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVRV9I .text-wrapper {
    min-height: 600px;
    display: flex;
    align-items: flex-end;
}
@media (max-width: 992px) {
    .cid-uAHHvVRV9I .text-wrapper {
        min-height: 250px;
    }
}
.cid-uAHHvVRV9I .text-wrapper .mbr-text {
    width: 100%;
    margin: 25px 0;
}
.cid-uAHHvVRV9I .mbr-text {
    color: #ffffff;
}
.cid-uAHHvVSu0v {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: transparent;
}
.cid-uAHHvVSu0v .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVSu0v .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVSu0v .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVSu0v .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVSu0v .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVSu0v .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVSu0v .row {
    position: relative;
}
.cid-uAHHvVSu0v .row::before {
    content: '';
    position: absolute;
    top: -10rem;
    left: -10rem;
    transform: rotate(45deg);
    display: block;
    width: 500px;
    height: 400px;
    border-radius: 100%;
    border: 2px solid #e55b13;
}
@media (max-width: 992px) {
    .cid-uAHHvVSu0v .row::before {
        display: none;
    }
}
.cid-uAHHvVSu0v .title-wrapper {
    position: relative;
}
@media (max-width: 992px) {
    .cid-uAHHvVSu0v .title-wrapper {
        margin-bottom: 32px;
    }
}
.cid-uAHHvVSu0v .title-wrapper .mbr-section-title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 14px;
    position: relative;
}
.cid-uAHHvVSu0v .title-wrapper .mbr-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000000;
}
.cid-uAHHvVSu0v .tabs-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cid-uAHHvVSu0v .nav.nav-tabs {
    position: relative;
    padding-right: 12px;
    display: block;
    border: none;
}
@media (max-width: 1400px) {
    .cid-uAHHvVSu0v .nav.nav-tabs {
        padding: 0;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVSu0v .nav.nav-tabs {
        margin-bottom: 32px;
    }
}
.cid-uAHHvVSu0v .nav.nav-tabs .nav-item .nav-link {
    padding: 12px 0;
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #000000;
}
.cid-uAHHvVSu0v .nav.nav-tabs .nav-item .nav-link .mbr-iconfont {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60%;
    margin-left: 13px;
    color: #e55b13;
    opacity: 0;
    transform: translate(-5px, 5px) rotate(-45deg);
    transition: all 0.3s ease-out;
}
.cid-uAHHvVSu0v .nav.nav-tabs .nav-item .nav-link .mbr-iconfont::after {
    content: '';
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;
    border: 1px solid #e55b13;
    border-radius: 100%;
    opacity: 0;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVSu0v .nav.nav-tabs .nav-item .nav-link:hover {
    border: none;
}
.cid-uAHHvVSu0v .nav.nav-tabs .nav-item .nav-link.active {
    border: none;
}
.cid-uAHHvVSu0v .nav.nav-tabs .nav-item .nav-link.active .mbr-iconfont {
    opacity: 1;
    transform: translate(0) rotate(-45deg);
}
.cid-uAHHvVSu0v .nav.nav-tabs .nav-item .nav-link.active .mbr-iconfont::after {
    opacity: 1;
}
.cid-uAHHvVSu0v .nav-tabs .nav-link {
    border: none;
}
.cid-uAHHvVSu0v .tab-content {
    padding-right: 110px;
    position: relative;
}
@media (max-width: 1400px) {
    .cid-uAHHvVSu0v .tab-content {
        padding-right: 60px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVSu0v .tab-content {
        padding: 0;
    }
}
.cid-uAHHvVSu0v .tab-content .tab-pane .tab-image img {
    height: 562px;
    object-fit: cover;
    border-radius: 10px;
}
@media (min-width: 1900px) {
    .cid-uAHHvVSu0v .tab-content .tab-pane .tab-image img {
        height: 663px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVSu0v .tab-content .tab-pane .tab-image img {
        height: 562px;
    }
}
.cid-uAHHvVSu0v .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVS0QH {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.cid-uAHHvVS0QH .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVS0QH .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVS0QH .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVS0QH .title-wrapper .mbr-section-title {
    margin-bottom: 55px;
}
.cid-uAHHvVS0QH .item {
    margin-bottom: 72px;
}
.cid-uAHHvVS0QH .item a {
    display: block;
}
.cid-uAHHvVS0QH .item a:hover .item-wrapper .item-img img {
    transform: scale(1.06);
}
.cid-uAHHvVS0QH .item a:hover .item-wrapper .item-img .mbr-iconfont {
    opacity: 1;
}
.cid-uAHHvVS0QH .item a .item-wrapper {
    padding: 0 4px 40px;
}
.cid-uAHHvVS0QH .item a .item-wrapper .item-img {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cid-uAHHvVS0QH .item a .item-wrapper .item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVS0QH .item a .item-wrapper .item-img .mbr-iconfont {
    position: relative;
    font-size: 22px;
    width: 104px;
    height: 104px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    opacity: 0.7;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVS0QH .item a .item-content {
    padding: 0 4px;
}
.cid-uAHHvVS0QH .item a .item-content .item-time .item-time-wrap {
    display: inline-flex;
    align-items: center;
}
.cid-uAHHvVS0QH .item a .item-content .item-time .item-time-wrap .mbr-iconfont {
    display: inline-block;
    font-size: 18px;
    margin-right: 4px;
}
.cid-uAHHvVS0QH .item a .item-content .item-time .item-time-wrap .mbr-time {
    display: inline-block;
    margin-bottom: 0;
}
.cid-uAHHvVS0QH .item a .item-content .mbr-card-title {
    margin-bottom: 16px;
}
.cid-uAHHvVS0QH .item a .item-content .mbr-desc {
    margin-bottom: 0;
}
.cid-uAHHvVS0QH .mbr-section-btn {
    margin-top: 46px;
    text-align: center;
}
.cid-uAHHvVS0QH .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVS0QH .mbr-time {
    color: #000000;
}
.cid-uAHHvVS0QH .mbr-card-title {
    color: #000000;
}
.cid-uAHHvVS0QH .mbr-desc {
    color: #a8a8a8;
}
.cid-uAHHvVSOrE .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVSOrE .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-image: url('/src/img/background1.jpg');
}
.cid-uAHHvVSOrE .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVSOrE .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVSOrE .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVSOrE .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVSOrE .title-wrapper {
    margin-top: 20%;
    padding: 0 8%;
}
@media (max-width: 992px) {
    .cid-uAHHvVSOrE .title-wrapper {
        margin-top: 0;
        padding: 0;
    }
}
.cid-uAHHvVSOrE .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
}
.cid-uAHHvVSOrE .title-wrapper .mbr-text {
    margin-bottom: 22px;
}
.cid-uAHHvVSOrE .mbr-section-title {
    color: #ffffff;
}
.cid-uAHHvVSOrE .mbr-text {
    color: #ffffff;
}
.cid-uAHHvVT5A8 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #ffffff;
}
.cid-uAHHvVT5A8 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVT5A8 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVT5A8 .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVT5A8 .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVT5A8 .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVT5A8 .container {
        padding: 0 30px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVT5A8 .subtitle-wrapper {
        margin-bottom: 32px;
    }
}
.cid-uAHHvVT5A8 .subtitle-wrapper .mbr-section-subtitle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 14px;
    position: relative;
}
.cid-uAHHvVT5A8 .subtitle-wrapper .mbr-section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000000;
}
.cid-uAHHvVT5A8 .title-wrapper {
    position: relative;
}
@media (max-width: 992px) {
    .cid-uAHHvVT5A8 .title-wrapper {
        margin-top: 0;
        padding: 0;
    }
}
.cid-uAHHvVT5A8 .title-wrapper .mbr-section-title {
    margin-bottom: 16px;
    position: relative;
}
.cid-uAHHvVT5A8 .title-wrapper .mbr-name {
    margin-bottom: 0;
    position: relative;
}
.cid-uAHHvVT5A8 .title-wrapper::before {
    content: '';
    position: absolute;
    right: 10rem;
    bottom: -20rem;
    transform: rotate(45deg);
    display: block;
    width: 500px;
    height: 250px;
    border-radius: 100%;
    background-color: transparent;
    border: 2px solid #e55b13;
}
@media (max-width: 992px) {
    .cid-uAHHvVT5A8 .title-wrapper::before {
        display: none;
    }
}
.cid-uAHHvVT5A8 .mbr-section-subtitle {
    color: #000000;
}
.cid-uAHHvVT5A8 .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVT5A8 .mbr-name {
    color: #000000;
}
.cid-uAHHvVT5A8 .mbr-role {
    color: #a8a8a8;
}
.cid-uAHHvVTaQG {
    padding-top: 5rem;
    /*padding-bottom: 5rem;*/
    overflow: hidden;
    background-color: #ffffff;
}
.cid-uAHHvVTaQG .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}
.cid-uAHHvVTaQG .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVTaQG .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVTaQG .container {
        padding: 0 30px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVTaQG .map-wrapper {
        margin-bottom: 55px;
    }
}
.cid-uAHHvVTaQG .map-wrapper .google-map {
    /*padding: 0 120px 0 60px;*/
}
@media (max-width: 1200px) {
    .cid-uAHHvVTaQG .map-wrapper .google-map {
        padding: 0 30px;
    }
}
@media (max-width: 992px) {
    .cid-uAHHvVTaQG .map-wrapper .google-map {
        padding: 0;
    }
}
.cid-uAHHvVTaQG .map-wrapper .google-map iframe {
    height: 500px;
}
@media (max-width: 992px) {
    .cid-uAHHvVTaQG .map-wrapper .google-map iframe {
        height: 300px;
    }
}
.cid-uAHHvVTaQG .form-wrap {
    display: flex;
    align-items: center;
}
.cid-uAHHvVTaQG .dragArea.row .mbr-section-title {
    margin-bottom: 32px !important;
}
.cid-uAHHvVTaQG .dragArea.row .mbr-text {
    margin-bottom: 20px !important;
}
.cid-uAHHvVTaQG .dragArea.row .form-group {
    margin-bottom: 20px;
}
.cid-uAHHvVTaQG .dragArea.row .form-group .form-control {
    padding: 8px 0;
    border: none !important;
    border-radius: 0;
    border-bottom: 1px solid #000000 !important;
    box-shadow: none;
    background-color: transparent;
}
.cid-uAHHvVTaQG .dragArea.row .form-group .form-control::placeholder {
    color: #000000;
}
.cid-uAHHvVTaQG .dragArea.row .form-group .form-control:hover,
.cid-uAHHvVTaQG .dragArea.row .form-group .form-control:focus {
    border: none !important;
    box-shadow: none;
    border-bottom: 1px solid #000000 !important;
}
.cid-uAHHvVTaQG .dragArea.row .form-group .form-check {
    padding-left: 2.4rem;
    margin-bottom: 8px;
}
.cid-uAHHvVTaQG .dragArea.row .form-group .form-check .form-check-input {
    background-color: #000000;
    border-color: #000000;
}
.cid-uAHHvVTaQG .dragArea.row .mbr-section-btn {
    margin-top: 40px;
}
.cid-uAHHvVTaQG .mbr-section-title {
    color: #000000;
}
.cid-uAHHvVTaQG .mbr-text {
    color: #000000;
}
.cid-uAHHvVTaQG label {
    color: #000000;
}
.cid-uAHHvVTUz0 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #000000;
}
.cid-uAHHvVTUz0 .mbr-fallback-image.disabled {
    display: none;
}
.cid-uAHHvVTUz0 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.cid-uAHHvVTUz0 .container-fluid {
    padding: 0 60px;
}
@media (max-width: 992px) {
    .cid-uAHHvVTUz0 .container-fluid {
        padding: 0 30px;
    }
}
.cid-uAHHvVTUz0 .container-fluid .row {
    padding: 0;
}
@media (max-width: 992px) {
    .cid-uAHHvVTUz0 .container {
        padding: 0 30px;
    }
}
.cid-uAHHvVTUz0 .title-wrapper .mbr-section-title {
    margin-bottom: 85px;
}
.cid-uAHHvVTUz0 .contacts-wrapper,
.cid-uAHHvVTUz0 .list-wrapper,
.cid-uAHHvVTUz0 .soc-wrapper {
    width: fit-content;
    border-top: 1px solid #e55b13;
    padding-top: 16px;
}
.cid-uAHHvVTUz0 .mbr-section-subtitle {
    margin-bottom: 10px;
    color: #ffffff;
}
.cid-uAHHvVTUz0 .list {
    margin: 0;
    padding: 0 0 50px 0;
    list-style-type: none;
    color: #b1b0b5;
}
.cid-uAHHvVTUz0 .list .item-wrap {
    margin-bottom: 6px;
    position: relative;
    line-height: 1.625;
}
.cid-uAHHvVTUz0 .list .item-wrap:hover {
    color: #e55b13;
}
.cid-uAHHvVTUz0 .list .item-wrap:hover::before {
    width: 100%;
}
.cid-uAHHvVTUz0 .list .item-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: #e55b13;
    transition: all 0.3s ease-out;
}
.cid-uAHHvVTUz0 .contacts-wrapper .list .item-wrap {
    margin-bottom: 10px;
}
.cid-uAHHvVTUz0 .copyright {
    padding: 10px 0;
    margin: 60px 0 0;
    color: #b1b0b5;
}
.cid-uAHHvVTUz0 .mbr-section-title {
    color: #ffffff;
}
