.btn {
    border-width: 2px;
}

body {
    font-family: Schibsted Grotesk;
}

.display-1 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
}

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

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

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

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

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

.display-5 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 2.5rem;
    line-height: 1.5;
}

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

.display-7 {
    font-family: 'Schibsted Grotesk', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
}

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

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

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

/* 100vw - current viewport width */

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

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

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

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.15rem;
        font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-2 {
        font-size: 2.4rem;
        font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-4 {
        font-size: 0.8rem;
        font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-5 {
        font-size: 2rem;
        font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-7 {
        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))));
    }
}

/* Buttons */

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

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

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

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

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

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

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

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

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

.btn-primary,
.btn-primary:active {
    background-color: #ff5a00 !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

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

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

.btn-secondary,
.btn-secondary:active {
    background-color: #ffffff !important;
    border: none !important;
    color: #808080 !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

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

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

.btn-info,
.btn-info:active {
    background-color: #fdddd1 !important;
    border: none !important;
    color: #c63c09 !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
    color: #ffffff !important;
    background-color: #f9a07e !important;
    border: none !important;
    box-shadow: none !important;
}

.btn-info.disabled,
.btn-info:disabled {
    color: #c63c09 !important;
    background-color: #f9a07e !important;
    border-color: #f9a07e !important;
}

.btn-success,
.btn-success:active {
    background-color: #000000 !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

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

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

.btn-warning,
.btn-warning:active {
    background-color: #d9a896 !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

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

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

.btn-danger,
.btn-danger:active {
    background-color: #724801 !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
    color: #ffffff !important;
    background-color: #1c1200 !important;
    border: none !important;
    box-shadow: none !important;
}

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

.btn-white,
.btn-white:active {
    background-color: #efefef !important;
    border: none !important;
    color: #707070 !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

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

.btn-white.disabled,
.btn-white:disabled {
    color: #707070 !important;
    background-color: #c4c4c4 !important;
    border-color: #c4c4c4 !important;
}

.btn-black,
.btn-black:active {
    background-color: #010101 !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

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

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

.btn-primary-outline,
.btn-primary-outline:active {
    padding: 0 0.5rem 0 0 !important;
    background-color: transparent !important;
    min-height: auto !important;
    border: none;
    border-bottom: 2px solid #ff5a00;
    color: #ff5a00;
    border-radius: 0 !important;
}

.btn-primary-outline .mbr-iconfont,
.btn-primary-outline:active .mbr-iconfont {
    transition: 0.3s transform !important;
}

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

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

.btn-secondary-outline,
.btn-secondary-outline:active {
    padding: 0 0.5rem 0 0 !important;
    background-color: transparent !important;
    min-height: auto !important;
    border: none;
    border-bottom: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 0 !important;
}

.btn-secondary-outline .mbr-iconfont,
.btn-secondary-outline:active .mbr-iconfont {
    transition: 0.3s transform !important;
}

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

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

.btn-info-outline,
.btn-info-outline:active {
    padding: 0 0.5rem 0 0 !important;
    background-color: transparent !important;
    min-height: auto !important;
    border: none;
    border-bottom: 2px solid #fdddd1;
    color: #fdddd1;
    border-radius: 0 !important;
}

.btn-info-outline .mbr-iconfont,
.btn-info-outline:active .mbr-iconfont {
    transition: 0.3s transform !important;
}

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

.btn-info-outline.disabled,
.btn-info-outline:disabled {
    color: #c63c09 !important;
    background-color: #fdddd1 !important;
    border-color: #fdddd1 !important;
}

.btn-success-outline,
.btn-success-outline:active {
    padding: 0 0.5rem 0 0 !important;
    background-color: transparent !important;
    min-height: auto !important;
    border: none;
    border-bottom: 2px solid #000000;
    color: #000000;
    border-radius: 0 !important;
}

.btn-success-outline .mbr-iconfont,
.btn-success-outline:active .mbr-iconfont {
    transition: 0.3s transform !important;
}

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

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

.btn-warning-outline,
.btn-warning-outline:active {
    padding: 0 0.5rem 0 0 !important;
    background-color: transparent !important;
    min-height: auto !important;
    border: none;
    border-bottom: 2px solid #d9a896;
    color: #d9a896;
    border-radius: 0 !important;
}

.btn-warning-outline .mbr-iconfont,
.btn-warning-outline:active .mbr-iconfont {
    transition: 0.3s transform !important;
}

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

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

.btn-danger-outline,
.btn-danger-outline:active {
    padding: 0 0.5rem 0 0 !important;
    background-color: transparent !important;
    min-height: auto !important;
    border: none;
    border-bottom: 2px solid #724801;
    color: #724801;
    border-radius: 0 !important;
}

.btn-danger-outline .mbr-iconfont,
.btn-danger-outline:active .mbr-iconfont {
    transition: 0.3s transform !important;
}

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

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

.btn-black-outline,
.btn-black-outline:active {
    padding: 0 0.5rem 0 0 !important;
    background-color: transparent !important;
    min-height: auto !important;
    border: none;
    border-bottom: 2px solid #010101;
    color: #010101;
    border-radius: 0 !important;
}

.btn-black-outline .mbr-iconfont,
.btn-black-outline:active .mbr-iconfont {
    transition: 0.3s transform !important;
}

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

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

.btn-white-outline,
.btn-white-outline:active {
    padding: 0 0.5rem 0 0 !important;
    background-color: transparent !important;
    min-height: auto !important;
    border: none;
    border-bottom: 2px solid #efefef;
    color: #efefef;
    border-radius: 0 !important;
}

.btn-white-outline .mbr-iconfont,
.btn-white-outline:active .mbr-iconfont {
    transition: 0.3s transform !important;
}

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

.btn-white-outline.disabled,
.btn-white-outline:disabled {
    color: #707070 !important;
    background-color: #efefef !important;
    border-color: #efefef !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a.text-white:hover,
a.text-white:focus,
a.text-white.active {
    color: #bcbcbc !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) {
    transition: 0.2s;
    position: relative;
    background-image: linear-gradient(currentColor 50%, currentColor 50%);
    background-size: 10000px 2px;
    background-repeat: no-repeat;
    background-position: 0 1.2em;
}

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

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

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

.alert-info {
    background-color: #fdddd1;
}

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

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

.mbr-section-btn a.btn:not(.btn-form) {
    border-radius: 100px;
}

.mbr-gallery-filter li a {
    border-radius: 100px !important;
}

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

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

.nav-tabs .nav-link {
    border-radius: 100px !important;
}

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

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

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

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

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

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

/* Scroll to top button*/

#scrollToTop a {
    border-radius: 100px;
}

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

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

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

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

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

blockquote {
    border-color: #ff5a00;
}

/* Forms */

.mbr-form .input-group-btn a.btn {
    border-radius: 100px !important;
}

.mbr-form .input-group-btn a.btn:hover {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.mbr-form .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
    padding: 1rem 3rem;
}

.mbr-form .input-group-btn button[type="submit"]:hover {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

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

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

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

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

.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: #ff5a00 !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: #ffffff !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='%23ff5a00' %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: .3s all;
    font-weight: 600 !important;
}

a:hover {
    background-image: none !important;
}

.container {
    position: relative;
    max-width: 1380px;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

.container-fluid {
    max-width: 100%;
    padding-left: 6rem;
    padding-right: 6rem;
}

@media (max-width: 1399px) {
    .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 1199px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.row {
    margin-left: -16px;
    margin-right: -16px;
    justify-content: center;
}

.row>[class*="col"] {
    padding-left: 16px;
    padding-right: 16px;
}

.mbr-section-btn .btn {
    position: relative;
    min-width: 100px;
    min-height: 52px;
    padding: 10px 30px;
    border-radius: 3px;
    transition: all .3s;
}

.mbr-section-btn .btn .mbr-iconfont {
    transition: transform .3s;
}

.mbr-section-btn .btn:hover .mbr-iconfont {
    transform: translateX(0.5rem);
}

.mbr-section-btn .btn-danger,
.mbr-section-btn .btn-black {
    color: #FFFFFF;
}

.mbr-section-btn .btn-danger:hover,
.mbr-section-btn .btn-black:hover {
    color: #FFFFFF;
    background-color: #ff5a00 !important;
}

.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover {
    color: #ff5a00 !important;
    border-color: #ff5a00 !important;
}

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

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

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

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

.cid-tDSvZhpJjC .dropdown-item:hover,
.cid-tDSvZhpJjC .dropdown-item:focus {
    color: #ff5a00 !important;
}

.cid-tDSvZhpJjC .dropdown-item:hover span {
    color: white;
}

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-tDSvZhpJjC .container {
        flex-wrap: nowrap;
    }
}

.cid-tDSvZhpJjC .navbar-caption:hover,
.cid-tDSvZhpJjC .navbar-caption:focus {
    color: #ff5a00 !important;
}

.cid-tDSvZhpJjC .navbar-nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(200%/3);
}

.cid-tDSvZhpJjC .navbar-nav .nav-item {
    color: #24262b;
}

.cid-tDSvZhpJjC .navbar-nav .nav-item:hover {
    color: #ff5a00;
}

.cid-tDSvZhpJjC .navbar-nav .nav-item a.text-black {
    color: #24262b !important;
}

.cid-tDSvZhpJjC .navbar-nav .nav-item a:hover {
    color: #ff5a00 !important;
}

.cid-tDSvZhpJjC .navbar-nav .nav-item .dropdown-menu {
    padding: 1.25rem 0 !important;
}

.cid-tDSvZhpJjC .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
}

.cid-tDSvZhpJjC .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tDSvZhpJjC .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
    color: #ff5a00 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tDSvZhpJjC .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

.cid-tDSvZhpJjC .navbar.navbar-short {
    min-height: 70px;
}

.cid-tDSvZhpJjC .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;
    width: 25%;
}

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

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

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

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

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

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

.cid-tDSvZhpJjC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #fdf2ec;
}

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

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

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

.cid-tDSvZhpJjC .navbar-buttons {
    text-align: center;
    min-width: 170px;
    display: flex;
    justify-content: flex-end;
    width: calc(100%/3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-tDSvZhpJjC .container-fluid {
    padding: 0 1rem !important;
}

.cid-tDSvZhpJjC .navbar-collapse {
    width: 75%;
}

@media (max-width: 991px) {
    .cid-tDSvZhpJjC .navbar-brand {
        width: auto !important;
        max-width: 80% !important;
    }
    .cid-tDSvZhpJjC .navbar-collapse {
        width: 100%;
    }
    .cid-tDSvZhpJjC .navbar-nav {
        width: 100%;
    }
    .cid-tDSvZhpJjC .navbar-buttons {
        justify-content: center;
        width: 100%;
    }
}

.cid-tDSvZEeXE2 {
    padding-top: 9rem;
    padding-bottom: 9rem;
    background-image: url("../../../assets/images/banner-de-web-1000x667.jpg");
}

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

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

.cid-tDSvZEeXE2 .col-text {
    width: 100%;
}

@media (min-width: 992px) {
    .cid-tDSvZEeXE2 .col-text {
        max-width: 624px;
    }
}

.cid-tDSvZEeXE2 .mbr-section-title {
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cid-tDSvZEeXE2 .mbr-section-subtitle {
    color: #FFFFFF;
}

.cid-tDSvZEeXE2 .mbr-text {
    margin-top: 24px;
    color: #efefef;
}

.cid-tDSvZEeXE2 .cards {
    margin-top: 2rem;
    row-gap: 32px;
}

.cid-tDSvZEeXE2 .card {
    border-radius: 0;
}

@media (min-width: 992px) {
    .cid-tDSvZEeXE2 .card:not(:first-child) {
        border-left: 1px solid #ff5a00;
    }
}

.cid-tDSvZEeXE2 .card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cid-tDSvZEeXE2 .mbr-iconfont {
    display: block;
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cid-tDSvZEeXE2 .card-title {
    color: #FFFFFF;
}

.cid-tDSwnmMeVd {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #efefef;
}

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

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

.cid-tDSwnmMeVd .mbr-section-head {
    margin-bottom: 32px;
}

.cid-tDSwnmMeVd .mbr-section-title {
    color: #24262b;
}

.cid-tDSwnmMeVd .mbr-section-subtitle {
    color: #24262b;
}

.cid-tDSwnmMeVd .items-row {
    row-gap: 32px;
}

.cid-tDSwnmMeVd .item {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 0;
}

.cid-tDSwnmMeVd .item-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    background: #ffffff;
    transition: .3s all;
}

@media (max-width: 1199px) {
    .cid-tDSwnmMeVd .item-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}

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

@media (max-width: 1199px) {
    .cid-tDSwnmMeVd .item-img {
        height: auto;
        width: 100%;
    }
}

.cid-tDSwnmMeVd .item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .cid-tDSwnmMeVd .item-img img {
        aspect-ratio: 1.27272727;
    }
}

.cid-tDSwnmMeVd .item-content {
    width: 50%;
    flex-shrink: 0;
    padding: 80px 40px;
}

@media (max-width: 1199px) {
    .cid-tDSwnmMeVd .item-content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cid-tDSwnmMeVd .item-content {
        text-align: center;
    }
}

.cid-tDSwnmMeVd .card-title {
    margin-bottom: 16px;
    color: #767676;
}

.cid-tDSwnmMeVd .card-text {
    display: inline;
    color: #24262b;
    border-bottom: 2px solid transparent;
    transition: 0.3s all;
}

.cid-tDSwnmMeVd .card-text:hover {
    color: #ff5a00 !important;
    border-bottom: 2px solid #ff5a00;
}

.cid-tDSwnmMeVd .mbr-section-btn {
    margin-top: 20px;
}

.cid-tDSwre1eD3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #efefef;
}

.cid-tDSwre1eD3 .mbr-section-head {
    margin-bottom: 32px;
}

.cid-tDSwre1eD3 .mbr-section-title {
    color: #24262b;
}

.cid-tDSwre1eD3 .mbr-section-subtitle {
    color: #24262b;
}

.cid-tDSwre1eD3 .items-row {
    row-gap: 48px;
}

.cid-tDSwre1eD3 .item {
    cursor: pointer;
}

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

.cid-tDSwre1eD3 .item-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0;
}

@media (min-width: 768px) {
    .cid-tDSwre1eD3 .item-wrapper:hover .mbr-section-btn {
        opacity: 1 !important;
        bottom: 1.5rem !important;
        pointer-events: auto !important;
    }
}

.cid-tDSwre1eD3 .item-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
}

.cid-tDSwre1eD3 img {
    width: 100%;
    aspect-ratio: calc(341 / (64 * 4));
    object-fit: cover;
}

.cid-tDSwre1eD3 .mbr-section-btn {
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    width: calc(100% - 32px);
    margin: 0 !important;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

@media (max-width: 767px) {
    .cid-tDSwre1eD3 .mbr-section-btn {
        opacity: 1 !important;
        bottom: 1.5rem !important;
        pointer-events: auto !important;
    }
}

.cid-tDSwre1eD3 .mbr-section-btn .btn {
    margin: 0 !important;
}

.cid-tDSwre1eD3 .item-content {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-grow: 1;
    padding: 1rem 0 0;
}

.cid-tDSwre1eD3 .item-title {
    color: #24262b;
}

.cid-tDSwre1eD3 .item-subtitle {
    color: #24262b;
    margin-top: 2px;
}

.cid-tDSwre1eD3 .mbr-text {
    color: #24262b;
}

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

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

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

.cid-tDSxfBQ8U0 .mbr-section-head {
    margin-bottom: 32px;
}

.cid-tDSxfBQ8U0 .mbr-section-title {
    color: #24262b;
}

.cid-tDSxfBQ8U0 .mbr-section-subtitle {
    color: #24262b;
}

.cid-tDSxfBQ8U0 .cards-row {
    align-items: stretch;
    row-gap: 32px;
}

.cid-tDSxfBQ8U0 .card {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
    border-radius: 0;
}

.cid-tDSxfBQ8U0 .card-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 4rem 3rem;
    transition: .3s all;
    background-size: cover;
    background-position: center;
}

@media (max-width: 767px) {
    .cid-tDSxfBQ8U0 .card-wrap {
        padding: 3rem 2rem;
    }
}

.cid-tDSxfBQ8U0 .item-content {
    max-width: 100%;
    width: 100%;
}

.cid-tDSxfBQ8U0 .card-title-1 {
    margin-bottom: 16px;
    color: #24262b;
    text-align: left;
}

.cid-tDSxfBQ8U0 .card-title-2 {
    margin-bottom: 16px;
    color: #24262b;
}

.cid-tDSxfBQ8U0 .card-subtitle-1 {
    color: #ffffff;
    text-align: left;
}

.cid-tDSxfBQ8U0 .card-subtitle-2 {
    color: #24262b;
}

.cid-tDSxfBQ8U0 .card-text-1 {
    margin-top: 16px;
    color: #24262b;
}

.cid-tDSxfBQ8U0 .card-text-2 {
    margin-top: 16px;
    color: #24262b;
}

.cid-tDSxfBQ8U0 .mbr-section-btn {
    margin-top: 20px;
}

.cid-tDSxfBQ8U0 .card-1 .card-wrap {
    background-image: url("../../../assets/images/cajas-de-tortas3-1584x1062.jpg");
}

.cid-tDSxfBQ8U0 .card-2 .card-wrap {
    background: #ff5a00;
}

.cid-tDSxfBQ8U0 .card-text-1,
.cid-tDSxfBQ8U0 .mbr-section-btn-1 {
    text-align: left;
}

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

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

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

.cid-tDSxIrU79h .mbr-section-head {
    margin-bottom: 32px;
}

.cid-tDSxIrU79h .mbr-section-title {
    color: #ff5a00;
}

.cid-tDSxIrU79h .mbr-section-subtitle {
    margin-top: 16px;
    color: #24262b;
}

.cid-tDSxIrU79h .cards-row {
    row-gap: 32px;
}

.cid-tDSxIrU79h .card {
    border-radius: 0;
}

.cid-tDSxIrU79h .card-wrapper {
    width: 100%;
    height: 100%;
    padding: 32px 32px 24px;
    background: #efefef;
}

@media (max-width: 991px) {
    .cid-tDSxIrU79h .card-wrapper {
        padding: 32px 16px 24px;
    }
}

.cid-tDSxIrU79h .item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin-right: auto;
    margin-bottom: 24px;
    border-radius: 50%;
    overflow: hidden;
}

.cid-tDSxIrU79h .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cid-tDSxIrU79h .card-title {
    margin-bottom: 8px;
    color: #24262b;
}

.cid-tDSxIrU79h .card-subtitle {
    color: #24262b;
}

.cid-tDSxIrU79h .card-bottom-wrap {
    margin-top: 24px;
}

.cid-tDSxIrU79h .card-name {
    color: #24262b;
}

.cid-tDSxIrU79h .card-text {
    color: #24262b;
}

.cid-tDSxVvMEeb {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/banner-de-web-1000x667.jpg");
}

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

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

.cid-tDSxVvMEeb .content-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 1000px;
    padding: 4rem 2rem !important;
    background: rgba(239, 239, 239, 0.9);
}

.cid-tDSxVvMEeb .mbr-section-head {
    margin-bottom: 32px;
}

.cid-tDSxVvMEeb .mbr-section-title {
    color: #ff5a00;
}

.cid-tDSxVvMEeb .mbr-section-subtitle {
    margin-top: 16px;
    color: #767676;
}

.cid-tDSxVvMEeb .comment-text {
    margin-top: 16px;
    color: #767676;
}

.cid-tDSxVvMEeb .form-wrap {
    width: 100%;
    max-width: 645px;
    margin: 0 auto;
    padding: 0 !important;
}

@media (max-width: 767px) {
    .cid-tDSxVvMEeb .form-wrap {
        max-width: 420px;
    }
}

.cid-tDSxVvMEeb form {
    width: 100%;
}

.cid-tDSxVvMEeb form .dragArea.row {
    justify-content: flex-start;
    width: auto !important;
    z-index: 2;
}

@media (max-width: 767px) {
    .cid-tDSxVvMEeb form .dragArea.row {
        justify-content: center;
    }
}

.cid-tDSxVvMEeb form p {
    color: #24262b;
}

.cid-tDSxVvMEeb form .form-group {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

.cid-tDSxVvMEeb form .form-control {
    height: 52px;
    background: #FFFFFF;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    margin-bottom: 0;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1;
    color: #24262b;
    font-weight: 400;
    transition: .3s;
}

.cid-tDSxVvMEeb form .form-control::-webkit-input-placeholder {
    color: #c1c1c1;
}

.cid-tDSxVvMEeb form .form-control::-moz-placeholder {
    color: #c1c1c1;
}

.cid-tDSxVvMEeb form .form-control:-moz-placeholder {
    color: #c1c1c1;
}

.cid-tDSxVvMEeb form .form-control:-ms-input-placeholder {
    color: #c1c1c1;
}

.cid-tDSxVvMEeb form select {
    color: #24262b !important;
}

.cid-tDSxVvMEeb form textarea {
    height: 150px !important;
    min-height: 140px !important;
    padding: 11px 16px;
    resize: none;
}

.cid-tDSxVvMEeb form textarea::-webkit-input-placeholder {
    color: #c1c1c1 !important;
}

.cid-tDSxVvMEeb form textarea::-moz-placeholder {
    color: #c1c1c1 !important;
}

.cid-tDSxVvMEeb form textarea:-moz-placeholder {
    color: #c1c1c1 !important;
}

.cid-tDSxVvMEeb form textarea:-ms-input-placeholder {
    color: #c1c1c1 !important;
}

.cid-tDSxVvMEeb form input,
.cid-tDSxVvMEeb form textarea {
    transition: .3s all;
}

.cid-tDSxVvMEeb form input:active,
.cid-tDSxVvMEeb form textarea:active,
.cid-tDSxVvMEeb form input:focus,
.cid-tDSxVvMEeb form textarea:focus {
    background-color: #FFFFFF !important;
    border-color: #e0e0e0 !important;
    outline: none !important;
}

.cid-tDSxVvMEeb form input:active::-webkit-input-placeholder,
.cid-tDSxVvMEeb form textarea:active::-webkit-input-placeholder,
.cid-tDSxVvMEeb form input:focus::-webkit-input-placeholder,
.cid-tDSxVvMEeb form textarea:focus::-webkit-input-placeholder {
    color: #c1c1c1 !important;
}

.cid-tDSxVvMEeb form input:active::-moz-placeholder,
.cid-tDSxVvMEeb form textarea:active::-moz-placeholder,
.cid-tDSxVvMEeb form input:focus::-moz-placeholder,
.cid-tDSxVvMEeb form textarea:focus::-moz-placeholder {
    color: #c1c1c1 !important;
}

.cid-tDSxVvMEeb form input:active:-moz-placeholder,
.cid-tDSxVvMEeb form textarea:active:-moz-placeholder,
.cid-tDSxVvMEeb form input:focus:-moz-placeholder,
.cid-tDSxVvMEeb form textarea:focus:-moz-placeholder {
    color: #c1c1c1 !important;
}

.cid-tDSxVvMEeb form input:active:-ms-input-placeholder,
.cid-tDSxVvMEeb form textarea:active:-ms-input-placeholder,
.cid-tDSxVvMEeb form input:focus:-ms-input-placeholder,
.cid-tDSxVvMEeb form textarea:focus:-ms-input-placeholder {
    color: #c1c1c1 !important;
}

.cid-tDSxVvMEeb form .row {
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.cid-tDSxVvMEeb form .row [class*=col] {
    padding-left: 8px;
    padding-right: 8px;
}

.cid-tDSxVvMEeb form .mbr-section-btn {
    margin-bottom: 16px;
    min-width: 152px;
}

@media (min-width: 768px) {
    .cid-tDSxVvMEeb form .mbr-section-btn {
        padding: 0 !important;
        margin-left: -8px !important;
        margin-right: 8px !important;
    }
}

.cid-tDSxVvMEeb form .mbr-section-btn .btn {
    min-height: 52px;
    border-radius: 0 !important;
}

.cid-tDSxVvMEeb form label {
    width: 100%;
    color: #24262b;
    margin-bottom: 8px;
}

.cid-tDSxVvMEeb form .form-check label {
    color: #24262b;
}

.cid-tDSxVvMEeb form .form-check-input {
    border-color: #c1c1c1 !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.cid-tDSxVvMEeb form .form-check-input:focus,
.cid-tDSxVvMEeb form .form-check-input:hover {
    background-color: transparent !important;
    border-color: #24262b !important;
}

.cid-tDSxVvMEeb form .form-check-input:checked {
    border-color: #24262b !important;
    background-color: #24262b !important;
}

.cid-tNkOEk8X6c {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #fdf2ec;
}

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

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

.cid-tNkOEk8X6c .col-title {
    margin-bottom: 32px;
}

.cid-tNkOEk8X6c .mbr-section-title {
    color: #24262b;
}

.cid-tNkOEk8X6c .mbr-section-subtitle {
    color: #24262b;
}

.cid-tNkOEk8X6c .border-item {
    width: 100%;
    height: 1px;
    background: #767676;
    margin-bottom: 2rem;
}

.cid-tNkOEk8X6c .cards-row {
    row-gap: 32px;
}

.cid-tNkOEk8X6c .card {
    border-radius: 0;
}

.cid-tNkOEk8X6c .mbr-iconfont {
    display: block;
    font-size: 24px;
    color: #33363b;
    margin-right: 0.5rem;
    flex-shrink: 0;
    transition: 0.3s all;
}

.cid-tNkOEk8X6c .card-title {
    flex-grow: 1;
    color: #724801;
    transition: 0.3s all;
}

.cid-tNkOEk8X6c .card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-tNkOEk8X6c .card-wrapper:hover .card-title {
    color: #b79b6c;
}

.cid-tNkOEk8X6c .card-wrapper:hover .mbr-iconfont {
    color: #b79b6c;
}

.cid-tDSypp4ayN {
    padding-top: 0rem;
    padding-bottom: 3rem;
    background: #fdf2ec;
}

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

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

.cid-tDSypp4ayN .mbr-section-head {
    margin-bottom: 32px;
}

.cid-tDSypp4ayN .mbr-section-title {
    color: #24262b;
}

.cid-tDSypp4ayN .mbr-section-subtitle {
    margin-top: 16px;
    color: #24262b;
}

.cid-tDSypp4ayN .google-map {
    height: 450px;
    position: relative;
    filter: grayscale(1%);
}

@media (max-width: 767px) {
    .cid-tDSypp4ayN .google-map {
        height: 400px;
    }
}

.cid-tDSypp4ayN .google-map iframe {
    height: 100%;
    width: 100%;
}

.cid-tDSypp4ayN .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.cid-tDSypp4ayN .google-map[data-state] {
    background: #e9e5dc;
}

.cid-tDSypp4ayN .google-map[data-state="loading"] [data-state-details] {
    display: none;
}

.cid-tDSysYd1ia {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #000000;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cid-tDSysYd1ia .col-main {
        flex-direction: column;
    }
}

.cid-tDSysYd1ia .border-item {
    width: 100%;
    height: 1px;
    background: #efefef;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .cid-tDSysYd1ia .border-item {
        order: 1;
    }
}

.cid-tDSysYd1ia .mbr-text {
    max-width: 49%;
    width: 100%;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cid-tDSysYd1ia .mbr-text {
        order: 3;
        max-width: 100%;
        text-align: center;
    }
}

.cid-tDSysYd1ia .list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 49%;
    width: 100%;
    list-style: none;
    padding-left: 0;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cid-tDSysYd1ia .list {
        align-items: center;
        justify-content: center;
        order: 2;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

.cid-tDSysYd1ia .list li {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0 8px;
    display: inline-block;
    color: inherit;
    border-bottom: 2px solid transparent;
    transition: .3s all;
    cursor: pointer;
}

@media (min-width: 992px) {
    .cid-tDSysYd1ia .list li:not(:first-child):before {
        content: "";
        position: absolute;
        left: -8px;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: currentColor;
    }
}

.cid-tDSysYd1ia .list li:hover {
    color: #ff5a00;
    border-bottom: 2px solid currentColor;
}

.cid-tDSysYd1ia .list li a {
    font-weight: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}

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

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

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

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

.cid-tMZB0bV7gv .dropdown-item:hover,
.cid-tMZB0bV7gv .dropdown-item:focus {
    color: #ff5a00 !important;
}

.cid-tMZB0bV7gv .dropdown-item:hover span {
    color: white;
}

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-tMZB0bV7gv .container {
        flex-wrap: nowrap;
    }
}

.cid-tMZB0bV7gv .navbar-caption:hover,
.cid-tMZB0bV7gv .navbar-caption:focus {
    color: #ff5a00 !important;
}

.cid-tMZB0bV7gv .navbar-nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(200%/3);
}

.cid-tMZB0bV7gv .navbar-nav .nav-item {
    color: #24262b;
}

.cid-tMZB0bV7gv .navbar-nav .nav-item:hover {
    color: #ff5a00;
}

.cid-tMZB0bV7gv .navbar-nav .nav-item a.text-black {
    color: #24262b !important;
}

.cid-tMZB0bV7gv .navbar-nav .nav-item a:hover {
    color: #ff5a00 !important;
}

.cid-tMZB0bV7gv .navbar-nav .nav-item .dropdown-menu {
    padding: 1.25rem 0 !important;
}

.cid-tMZB0bV7gv .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
}

.cid-tMZB0bV7gv .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tMZB0bV7gv .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
    color: #ff5a00 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tMZB0bV7gv .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

.cid-tMZB0bV7gv .navbar.navbar-short {
    min-height: 70px;
}

.cid-tMZB0bV7gv .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;
    width: 25%;
}

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

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

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

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

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

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

.cid-tMZB0bV7gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #fdf2ec;
}

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

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

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

.cid-tMZB0bV7gv .navbar-buttons {
    text-align: center;
    min-width: 170px;
    display: flex;
    justify-content: flex-end;
    width: calc(100%/3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-tMZB0bV7gv .container-fluid {
    padding: 0 1rem !important;
}

.cid-tMZB0bV7gv .navbar-collapse {
    width: 75%;
}

@media (max-width: 991px) {
    .cid-tMZB0bV7gv .navbar-brand {
        width: auto !important;
        max-width: 80% !important;
    }
    .cid-tMZB0bV7gv .navbar-collapse {
        width: 100%;
    }
    .cid-tMZB0bV7gv .navbar-nav {
        width: 100%;
    }
    .cid-tMZB0bV7gv .navbar-buttons {
        justify-content: center;
        width: 100%;
    }
}

.cid-tMZB0cOcSa {
    padding-top: 9rem;
    padding-bottom: 9rem;
    background-image: url("../../../assets/images/banner-de-web-1000x667.jpg");
}

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

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

.cid-tMZB0cOcSa .col-text {
    width: 100%;
}

@media (min-width: 992px) {
    .cid-tMZB0cOcSa .col-text {
        max-width: 624px;
    }
}

.cid-tMZB0cOcSa .mbr-section-title {
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cid-tMZB0cOcSa .mbr-section-subtitle {
    color: #ff5a00;
}

.cid-tMZB0cOcSa .mbr-text {
    margin-top: 24px;
    color: #efefef;
}

.cid-tMZB0cOcSa .cards {
    margin-top: 2rem;
    row-gap: 32px;
}

.cid-tMZB0cOcSa .card {
    border-radius: 0;
}

@media (min-width: 992px) {
    .cid-tMZB0cOcSa .card:not(:first-child) {
        border-left: 1px solid #ff5a00;
    }
}

.cid-tMZB0cOcSa .card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cid-tMZB0cOcSa .mbr-iconfont {
    display: block;
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cid-tMZB0cOcSa .card-title {
    color: #FFFFFF;
}

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

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

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

.cid-tMZB0dLKS0 .row {
    margin: 0 !important;
    row-gap: 40px;
}

.cid-tMZB0dLKS0 .item-img {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    padding: 0 !important;
}

.cid-tMZB0dLKS0 .item-img img {
    max-width: 580px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .cid-tMZB0dLKS0 .item-img {
        width: 100%;
    }
}

.cid-tMZB0dLKS0 .item-content {
    width: 50%;
    padding: 0 !important;
}

@media (max-width: 1500px) {
    .cid-tMZB0dLKS0 .item-content {
        padding-left: 40px !important;
    }
}

@media (max-width: 1199px) {
    .cid-tMZB0dLKS0 .item-content {
        padding-left: 25px !important;
    }
}

@media (max-width: 991px) {
    .cid-tMZB0dLKS0 .item-content {
        width: 100%;
        padding: 0 !important;
    }
}

.cid-tMZB0dLKS0 .card-title {
    color: #131313;
}

.cid-tMZB0dLKS0 .card-text {
    margin-top: 25px;
    color: #131313;
}

@media (max-width: 991px) {
    .cid-tMZB0dLKS0 .card-text {
        margin-top: 20px;
    }
}

.cid-tMZB0dLKS0 .mbr-section-btn {
    margin-top: 34px;
}

@media (max-width: 991px) {
    .cid-tMZB0dLKS0 .mbr-section-btn {
        margin-top: 14px;
    }
}

@media (max-width: 767px) {
    .cid-tMZB0dLKS0 .mbr-section-btn {
        margin-top: 4px;
    }
}

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

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

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

.cid-tMZBh1pZgf .container-fluid {
    padding: 0 50px;
    margin: 0;
}

@media (max-width: 992px) {
    .cid-tMZBh1pZgf .container-fluid {
        padding: 0 20px;
    }
}

.cid-tMZBh1pZgf .container-fluid .row {
    padding: 0;
}

@media (max-width: 992px) {
    .cid-tMZBh1pZgf .container {
        padding: 0 20px;
    }
}

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

.cid-tMZBh1pZgf .title-wrapper .mbr-section-title {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .cid-tMZBh1pZgf .title-wrapper .mbr-section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .cid-tMZBh1pZgf .video-block {
        margin-bottom: 30px;
    }
}

.cid-tMZBh1pZgf .video-block .video-wrapper iframe {
    height: 480px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-tMZBh1pZgf .video-block .video-wrapper iframe {
        height: 300px;
    }
}

.cid-tMZBh1pZgf .video-block .video-wrapper .app-video-wrapper::before {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background-color: #ffffff;
    color: #000000;
    text-shadow: none;
}

.cid-tMZBh1pZgf .video-block .video-wrapper .app-video-wrapper img {
    height: 480px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-tMZBh1pZgf .video-block .video-wrapper .app-video-wrapper img {
        height: 300px;
    }
}

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

.cid-tMZB0gM9yo {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #000000;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cid-tMZB0gM9yo .col-main {
        flex-direction: column;
    }
}

.cid-tMZB0gM9yo .border-item {
    width: 100%;
    height: 1px;
    background: #efefef;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .cid-tMZB0gM9yo .border-item {
        order: 1;
    }
}

.cid-tMZB0gM9yo .mbr-text {
    max-width: 49%;
    width: 100%;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cid-tMZB0gM9yo .mbr-text {
        order: 3;
        max-width: 100%;
        text-align: center;
    }
}

.cid-tMZB0gM9yo .list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 49%;
    width: 100%;
    list-style: none;
    padding-left: 0;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cid-tMZB0gM9yo .list {
        align-items: center;
        justify-content: center;
        order: 2;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

.cid-tMZB0gM9yo .list li {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0 8px;
    display: inline-block;
    color: inherit;
    border-bottom: 2px solid transparent;
    transition: .3s all;
    cursor: pointer;
}

@media (min-width: 992px) {
    .cid-tMZB0gM9yo .list li:not(:first-child):before {
        content: "";
        position: absolute;
        left: -8px;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: currentColor;
    }
}

.cid-tMZB0gM9yo .list li:hover {
    color: #ff5a00;
    border-bottom: 2px solid currentColor;
}

.cid-tMZB0gM9yo .list li a {
    font-weight: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}

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

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

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

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

.cid-tMZrUdYkRZ .dropdown-item:hover,
.cid-tMZrUdYkRZ .dropdown-item:focus {
    color: #ff5a00 !important;
}

.cid-tMZrUdYkRZ .dropdown-item:hover span {
    color: white;
}

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-tMZrUdYkRZ .container {
        flex-wrap: nowrap;
    }
}

.cid-tMZrUdYkRZ .navbar-caption:hover,
.cid-tMZrUdYkRZ .navbar-caption:focus {
    color: #ff5a00 !important;
}

.cid-tMZrUdYkRZ .navbar-nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(200%/3);
}

.cid-tMZrUdYkRZ .navbar-nav .nav-item {
    color: #24262b;
}

.cid-tMZrUdYkRZ .navbar-nav .nav-item:hover {
    color: #ff5a00;
}

.cid-tMZrUdYkRZ .navbar-nav .nav-item a.text-black {
    color: #24262b !important;
}

.cid-tMZrUdYkRZ .navbar-nav .nav-item a:hover {
    color: #ff5a00 !important;
}

.cid-tMZrUdYkRZ .navbar-nav .nav-item .dropdown-menu {
    padding: 1.25rem 0 !important;
}

.cid-tMZrUdYkRZ .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
}

.cid-tMZrUdYkRZ .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tMZrUdYkRZ .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
    color: #ff5a00 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tMZrUdYkRZ .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

.cid-tMZrUdYkRZ .navbar.navbar-short {
    min-height: 70px;
}

.cid-tMZrUdYkRZ .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;
    width: 25%;
}

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

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

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

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

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

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

.cid-tMZrUdYkRZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #fdf2ec;
}

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

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

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

.cid-tMZrUdYkRZ .navbar-buttons {
    text-align: center;
    min-width: 170px;
    display: flex;
    justify-content: flex-end;
    width: calc(100%/3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-tMZrUdYkRZ .container-fluid {
    padding: 0 1rem !important;
}

.cid-tMZrUdYkRZ .navbar-collapse {
    width: 75%;
}

@media (max-width: 991px) {
    .cid-tMZrUdYkRZ .navbar-brand {
        width: auto !important;
        max-width: 80% !important;
    }
    .cid-tMZrUdYkRZ .navbar-collapse {
        width: 100%;
    }
    .cid-tMZrUdYkRZ .navbar-nav {
        width: 100%;
    }
    .cid-tMZrUdYkRZ .navbar-buttons {
        justify-content: center;
        width: 100%;
    }
}

.cid-tMZrUeuAyT {
    padding-top: 9rem;
    padding-bottom: 9rem;
    background-image: url("../../../assets/images/banner-de-web-1000x667.jpg");
}

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

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

.cid-tMZrUeuAyT .col-text {
    width: 100%;
}

@media (min-width: 992px) {
    .cid-tMZrUeuAyT .col-text {
        max-width: 624px;
    }
}

.cid-tMZrUeuAyT .mbr-section-title {
    color: #ff5a00;
    margin-bottom: 8px;
}

.cid-tMZrUeuAyT .mbr-section-subtitle {
    color: #FFFFFF;
}

.cid-tMZrUeuAyT .mbr-text {
    margin-top: 24px;
    color: #efefef;
}

.cid-tMZrUeuAyT .cards {
    margin-top: 2rem;
    row-gap: 32px;
}

.cid-tMZrUeuAyT .card {
    border-radius: 0;
}

@media (min-width: 992px) {
    .cid-tMZrUeuAyT .card:not(:first-child) {
        border-left: 1px solid #ff5a00;
    }
}

.cid-tMZrUeuAyT .card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cid-tMZrUeuAyT .mbr-iconfont {
    display: block;
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cid-tMZrUeuAyT .card-title {
    color: #FFFFFF;
}

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

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

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

.cid-tMZvST6AvS .row {
    margin: 0 !important;
    row-gap: 40px;
}

.cid-tMZvST6AvS .item-img {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    padding: 0 !important;
}

.cid-tMZvST6AvS .item-img img {
    max-width: 580px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .cid-tMZvST6AvS .item-img {
        width: 100%;
    }
}

.cid-tMZvST6AvS .item-content {
    width: 50%;
    padding: 0 !important;
}

@media (max-width: 1500px) {
    .cid-tMZvST6AvS .item-content {
        padding-left: 40px !important;
    }
}

@media (max-width: 1199px) {
    .cid-tMZvST6AvS .item-content {
        padding-left: 25px !important;
    }
}

@media (max-width: 991px) {
    .cid-tMZvST6AvS .item-content {
        width: 100%;
        padding: 0 !important;
    }
}

.cid-tMZvST6AvS .card-title {
    color: #131313;
}

.cid-tMZvST6AvS .card-text {
    margin-top: 25px;
    color: #131313;
}

@media (max-width: 991px) {
    .cid-tMZvST6AvS .card-text {
        margin-top: 20px;
    }
}

.cid-tMZvST6AvS .mbr-section-btn {
    margin-top: 34px;
}

@media (max-width: 991px) {
    .cid-tMZvST6AvS .mbr-section-btn {
        margin-top: 14px;
    }
}

@media (max-width: 767px) {
    .cid-tMZvST6AvS .mbr-section-btn {
        margin-top: 4px;
    }
}

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

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

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

.cid-tMZw0NKy5V .row {
    margin: 0 !important;
    row-gap: 40px;
}

.cid-tMZw0NKy5V .item-img {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    padding: 0 !important;
}

.cid-tMZw0NKy5V .item-img img {
    max-width: 580px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .cid-tMZw0NKy5V .item-img {
        width: 100%;
    }
}

.cid-tMZw0NKy5V .item-content {
    width: 50%;
    padding: 0 !important;
}

@media (max-width: 1500px) {
    .cid-tMZw0NKy5V .item-content {
        padding-left: 40px !important;
    }
}

@media (max-width: 1199px) {
    .cid-tMZw0NKy5V .item-content {
        padding-left: 25px !important;
    }
}

@media (max-width: 991px) {
    .cid-tMZw0NKy5V .item-content {
        width: 100%;
        padding: 0 !important;
    }
}

.cid-tMZw0NKy5V .card-title {
    color: #131313;
}

.cid-tMZw0NKy5V .card-text {
    margin-top: 25px;
    color: #131313;
}

.cid-tMZw0NKy5V .list-box {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    width: 100%;
    margin-top: 30px;
}

.cid-tMZw0NKy5V .list-item {
    display: flex;
    align-items: center;
    width: 100%;
    column-gap: 12px;
}

.cid-tMZw0NKy5V .iconfont-wrapper {
    flex-shrink: 0;
}

.cid-tMZw0NKy5V .iconfont-wrapper .mbr-iconfont {
    display: block;
    font-size: 25px;
    color: #fc7942;
    transform: rotate(-45deg);
}

.cid-tMZw0NKy5V .list-text {
    flex-grow: 1;
    color: #131313;
}

.cid-tMZw0NKy5V .mbr-section-btn {
    margin-top: 40px;
}

@media (max-width: 1500px) {
    .cid-tMZw0NKy5V .mbr-section-btn {
        margin-top: 15px;
    }
}

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

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

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

.cid-tMZxaMJy3P .row {
    margin: 0 !important;
    row-gap: 40px;
}

.cid-tMZxaMJy3P .item-img {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    padding: 0 !important;
}

.cid-tMZxaMJy3P .item-img img {
    max-width: 580px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .cid-tMZxaMJy3P .item-img {
        width: 100%;
    }
}

.cid-tMZxaMJy3P .item-content {
    width: 50%;
    padding: 0 !important;
}

@media (max-width: 1500px) {
    .cid-tMZxaMJy3P .item-content {
        padding-left: 40px !important;
    }
}

@media (max-width: 1199px) {
    .cid-tMZxaMJy3P .item-content {
        padding-left: 25px !important;
    }
}

@media (max-width: 991px) {
    .cid-tMZxaMJy3P .item-content {
        width: 100%;
        padding: 0 !important;
    }
}

.cid-tMZxaMJy3P .card-title {
    color: #131313;
}

.cid-tMZxaMJy3P .card-text {
    margin-top: 25px;
    color: #131313;
}

@media (max-width: 991px) {
    .cid-tMZxaMJy3P .card-text {
        margin-top: 20px;
    }
}

.cid-tMZxaMJy3P .mbr-section-btn {
    margin-top: 34px;
}

@media (max-width: 991px) {
    .cid-tMZxaMJy3P .mbr-section-btn {
        margin-top: 14px;
    }
}

@media (max-width: 767px) {
    .cid-tMZxaMJy3P .mbr-section-btn {
        margin-top: 4px;
    }
}

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

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

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

.cid-tMZxbS99Xq .row {
    margin: 0 !important;
    row-gap: 40px;
}

.cid-tMZxbS99Xq .item-img {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    padding: 0 !important;
}

.cid-tMZxbS99Xq .item-img img {
    max-width: 580px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .cid-tMZxbS99Xq .item-img {
        width: 100%;
    }
}

.cid-tMZxbS99Xq .item-content {
    width: 50%;
    padding: 0 !important;
}

@media (max-width: 1500px) {
    .cid-tMZxbS99Xq .item-content {
        padding-left: 40px !important;
    }
}

@media (max-width: 1199px) {
    .cid-tMZxbS99Xq .item-content {
        padding-left: 25px !important;
    }
}

@media (max-width: 991px) {
    .cid-tMZxbS99Xq .item-content {
        width: 100%;
        padding: 0 !important;
    }
}

.cid-tMZxbS99Xq .card-title {
    color: #131313;
}

.cid-tMZxbS99Xq .card-text {
    margin-top: 25px;
    color: #131313;
}

@media (max-width: 991px) {
    .cid-tMZxbS99Xq .card-text {
        margin-top: 20px;
    }
}

.cid-tMZxbS99Xq .mbr-section-btn {
    margin-top: 34px;
}

@media (max-width: 991px) {
    .cid-tMZxbS99Xq .mbr-section-btn {
        margin-top: 14px;
    }
}

@media (max-width: 767px) {
    .cid-tMZxbS99Xq .mbr-section-btn {
        margin-top: 4px;
    }
}

.cid-tNaI1nyhlW {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ff5a00;
}

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

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

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

.cid-tNaI1nyhlW .mbr-section-subtitle {
    color: #ffffff;
}

.cid-tNaI1nyhlW .mbr-section-btn {
    margin-top: 16px;
}

.cid-tNj9iA2rT8 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: #fdddd1;
}

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

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

.cid-tNj9iA2rT8 .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    height: 280px;
    min-width: 300px;
    max-width: 440px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cid-tNj9iA2rT8 .embla__slide {
        height: 320px;
        min-width: 70%;
        max-width: initial;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

.cid-tNj9iA2rT8 .embla__slide .slider-link:hover img {
    transform: scale(1);
    transition: 0.7s ease-out;
}

.cid-tNj9iA2rT8 .embla__slide .slider-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.cid-tNj9iA2rT8 .embla__button--next,
.cid-tNj9iA2rT8 .embla__button--prev {
    display: flex;
}

.cid-tNj9iA2rT8 .embla__button {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: transparent;
    color: #ff5a00;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cid-tNj9iA2rT8 .embla__button .mbr-iconfont {
    font-size: 48px;
}

@media (max-width: 768px) {
    .cid-tNj9iA2rT8 .embla__button .mbr-iconfont {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .cid-tNj9iA2rT8 .embla__button {
        display: none;
    }
}

.cid-tNj9iA2rT8 .embla__button:disabled {
    cursor: default;
    display: none;
}

.cid-tNj9iA2rT8 .embla__button:hover {
    background: transparent;
    color: #ff5a00;
    border: none;
    opacity: .65;
}

.cid-tNj9iA2rT8 .embla__button.embla__button--prev {
    left: 0;
    margin-left: 0;
}

.cid-tNj9iA2rT8 .embla__button.embla__button--next {
    right: 0;
    margin-right: 0;
}

@media (max-width: 767px) {
    .cid-tNj9iA2rT8 .embla__button {
        top: auto;
        bottom: -5rem;
    }
}

.cid-tNj9iA2rT8 .embla {
    position: relative;
    width: 100%;
}

.cid-tNj9iA2rT8 .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.cid-tNj9iA2rT8 .embla__viewport.is-draggable {
    cursor: grab;
}

.cid-tNj9iA2rT8 .embla__viewport.is-dragging {
    cursor: grabbing;
}

.cid-tNj9iA2rT8 .embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.cid-tMZrUjlhy0 {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #000000;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cid-tMZrUjlhy0 .col-main {
        flex-direction: column;
    }
}

.cid-tMZrUjlhy0 .border-item {
    width: 100%;
    height: 1px;
    background: #efefef;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .cid-tMZrUjlhy0 .border-item {
        order: 1;
    }
}

.cid-tMZrUjlhy0 .mbr-text {
    max-width: 49%;
    width: 100%;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cid-tMZrUjlhy0 .mbr-text {
        order: 3;
        max-width: 100%;
        text-align: center;
    }
}

.cid-tMZrUjlhy0 .list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 49%;
    width: 100%;
    list-style: none;
    padding-left: 0;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cid-tMZrUjlhy0 .list {
        align-items: center;
        justify-content: center;
        order: 2;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

.cid-tMZrUjlhy0 .list li {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0 8px;
    display: inline-block;
    color: inherit;
    border-bottom: 2px solid transparent;
    transition: .3s all;
    cursor: pointer;
}

@media (min-width: 992px) {
    .cid-tMZrUjlhy0 .list li:not(:first-child):before {
        content: "";
        position: absolute;
        left: -8px;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: currentColor;
    }
}

.cid-tMZrUjlhy0 .list li:hover {
    color: #ff5a00;
    border-bottom: 2px solid currentColor;
}

.cid-tMZrUjlhy0 .list li a {
    font-weight: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}

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

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

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

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

.cid-tMZrVWTchj .dropdown-item:hover,
.cid-tMZrVWTchj .dropdown-item:focus {
    color: #ff5a00 !important;
}

.cid-tMZrVWTchj .dropdown-item:hover span {
    color: white;
}

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

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

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

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

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

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

@media (min-width: 992px) {
    .cid-tMZrVWTchj .container {
        flex-wrap: nowrap;
    }
}

.cid-tMZrVWTchj .navbar-caption:hover,
.cid-tMZrVWTchj .navbar-caption:focus {
    color: #ff5a00 !important;
}

.cid-tMZrVWTchj .navbar-nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(200%/3);
}

.cid-tMZrVWTchj .navbar-nav .nav-item {
    color: #24262b;
}

.cid-tMZrVWTchj .navbar-nav .nav-item:hover {
    color: #ff5a00;
}

.cid-tMZrVWTchj .navbar-nav .nav-item a.text-black {
    color: #24262b !important;
}

.cid-tMZrVWTchj .navbar-nav .nav-item a:hover {
    color: #ff5a00 !important;
}

.cid-tMZrVWTchj .navbar-nav .nav-item .dropdown-menu {
    padding: 1.25rem 0 !important;
}

.cid-tMZrVWTchj .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
}

.cid-tMZrVWTchj .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tMZrVWTchj .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
    color: #ff5a00 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tMZrVWTchj .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

.cid-tMZrVWTchj .navbar.navbar-short {
    min-height: 70px;
}

.cid-tMZrVWTchj .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;
    width: 25%;
}

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

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

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

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

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

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

.cid-tMZrVWTchj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #fdf2ec;
}

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

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

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

.cid-tMZrVWTchj .navbar-buttons {
    text-align: center;
    min-width: 170px;
    display: flex;
    justify-content: flex-end;
    width: calc(100%/3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cid-tMZrVWTchj .container-fluid {
    padding: 0 1rem !important;
}

.cid-tMZrVWTchj .navbar-collapse {
    width: 75%;
}

@media (max-width: 991px) {
    .cid-tMZrVWTchj .navbar-brand {
        width: auto !important;
        max-width: 80% !important;
    }
    .cid-tMZrVWTchj .navbar-collapse {
        width: 100%;
    }
    .cid-tMZrVWTchj .navbar-nav {
        width: 100%;
    }
    .cid-tMZrVWTchj .navbar-buttons {
        justify-content: center;
        width: 100%;
    }
}

.cid-tMZrVXkRHj {
    padding-top: 9rem;
    padding-bottom: 9rem;
    background-image: url("../../../assets/images/banner-de-web-1000x667.jpg");
}

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

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

.cid-tMZrVXkRHj .col-text {
    width: 100%;
}

@media (min-width: 992px) {
    .cid-tMZrVXkRHj .col-text {
        max-width: 624px;
    }
}

.cid-tMZrVXkRHj .mbr-section-title {
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cid-tMZrVXkRHj .mbr-section-subtitle {
    color: #FFFFFF;
}

.cid-tMZrVXkRHj .mbr-text {
    margin-top: 24px;
    color: #efefef;
}

.cid-tMZrVXkRHj .cards {
    margin-top: 2rem;
    row-gap: 32px;
}

.cid-tMZrVXkRHj .card {
    border-radius: 0;
}

@media (min-width: 992px) {
    .cid-tMZrVXkRHj .card:not(:first-child) {
        border-left: 1px solid #ff5a00;
    }
}

.cid-tMZrVXkRHj .card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cid-tMZrVXkRHj .mbr-iconfont {
    display: block;
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cid-tMZrVXkRHj .card-title {
    color: #FFFFFF;
}

.cid-tMZrVZCDtM {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    background-color: #fdf2ec;
}

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

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

.cid-tMZrVZCDtM .content-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 1000px;
    padding: 4rem 2rem !important;
    background: rgba(255, 255, 255, 0.9);
}

.cid-tMZrVZCDtM .mbr-section-head {
    margin-bottom: 32px;
}

.cid-tMZrVZCDtM .mbr-section-title {
    color: #ff5a00;
}

.cid-tMZrVZCDtM .mbr-section-subtitle {
    margin-top: 16px;
    color: #767676;
}

.cid-tMZrVZCDtM .comment-text {
    margin-top: 16px;
    color: #767676;
}

.cid-tMZrVZCDtM .form-wrap {
    width: 100%;
    max-width: 645px;
    margin: 0 auto;
    padding: 0 !important;
}

@media (max-width: 767px) {
    .cid-tMZrVZCDtM .form-wrap {
        max-width: 420px;
    }
}

.cid-tMZrVZCDtM form {
    width: 100%;
}

.cid-tMZrVZCDtM form .dragArea.row {
    justify-content: flex-start;
    width: auto !important;
    z-index: 2;
}

@media (max-width: 767px) {
    .cid-tMZrVZCDtM form .dragArea.row {
        justify-content: center;
    }
}

.cid-tMZrVZCDtM form p {
    color: #24262b;
}

.cid-tMZrVZCDtM form .form-group {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

.cid-tMZrVZCDtM form .form-control {
    height: 52px;
    background: #FFFFFF;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    margin-bottom: 0;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1;
    color: #24262b;
    font-weight: 400;
    transition: .3s;
}

.cid-tMZrVZCDtM form .form-control::-webkit-input-placeholder {
    color: #c1c1c1;
}

.cid-tMZrVZCDtM form .form-control::-moz-placeholder {
    color: #c1c1c1;
}

.cid-tMZrVZCDtM form .form-control:-moz-placeholder {
    color: #c1c1c1;
}

.cid-tMZrVZCDtM form .form-control:-ms-input-placeholder {
    color: #c1c1c1;
}

.cid-tMZrVZCDtM form select {
    color: #24262b !important;
}

.cid-tMZrVZCDtM form textarea {
    height: 150px !important;
    min-height: 140px !important;
    padding: 11px 16px;
    resize: none;
}

.cid-tMZrVZCDtM form textarea::-webkit-input-placeholder {
    color: #c1c1c1 !important;
}

.cid-tMZrVZCDtM form textarea::-moz-placeholder {
    color: #c1c1c1 !important;
}

.cid-tMZrVZCDtM form textarea:-moz-placeholder {
    color: #c1c1c1 !important;
}

.cid-tMZrVZCDtM form textarea:-ms-input-placeholder {
    color: #c1c1c1 !important;
}

.cid-tMZrVZCDtM form input,
.cid-tMZrVZCDtM form textarea {
    transition: .3s all;
}

.cid-tMZrVZCDtM form input:active,
.cid-tMZrVZCDtM form textarea:active,
.cid-tMZrVZCDtM form input:focus,
.cid-tMZrVZCDtM form textarea:focus {
    background-color: #FFFFFF !important;
    border-color: #e0e0e0 !important;
    outline: none !important;
}

.cid-tMZrVZCDtM form input:active::-webkit-input-placeholder,
.cid-tMZrVZCDtM form textarea:active::-webkit-input-placeholder,
.cid-tMZrVZCDtM form input:focus::-webkit-input-placeholder,
.cid-tMZrVZCDtM form textarea:focus::-webkit-input-placeholder {
    color: #c1c1c1 !important;
}

.cid-tMZrVZCDtM form input:active::-moz-placeholder,
.cid-tMZrVZCDtM form textarea:active::-moz-placeholder,
.cid-tMZrVZCDtM form input:focus::-moz-placeholder,
.cid-tMZrVZCDtM form textarea:focus::-moz-placeholder {
    color: #c1c1c1 !important;
}

.cid-tMZrVZCDtM form input:active:-moz-placeholder,
.cid-tMZrVZCDtM form textarea:active:-moz-placeholder,
.cid-tMZrVZCDtM form input:focus:-moz-placeholder,
.cid-tMZrVZCDtM form textarea:focus:-moz-placeholder {
    color: #c1c1c1 !important;
}

.cid-tMZrVZCDtM form input:active:-ms-input-placeholder,
.cid-tMZrVZCDtM form textarea:active:-ms-input-placeholder,
.cid-tMZrVZCDtM form input:focus:-ms-input-placeholder,
.cid-tMZrVZCDtM form textarea:focus:-ms-input-placeholder {
    color: #c1c1c1 !important;
}

.cid-tMZrVZCDtM form .row {
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.cid-tMZrVZCDtM form .row [class*=col] {
    padding-left: 8px;
    padding-right: 8px;
}

.cid-tMZrVZCDtM form .mbr-section-btn {
    margin-bottom: 16px;
    min-width: 152px;
}

@media (min-width: 768px) {
    .cid-tMZrVZCDtM form .mbr-section-btn {
        padding: 0 !important;
        margin-left: -8px !important;
        margin-right: 8px !important;
    }
}

.cid-tMZrVZCDtM form .mbr-section-btn .btn {
    min-height: 52px;
    border-radius: 0 !important;
}

.cid-tMZrVZCDtM form label {
    width: 100%;
    color: #24262b;
    margin-bottom: 8px;
}

.cid-tMZrVZCDtM form .form-check label {
    color: #24262b;
}

.cid-tMZrVZCDtM form .form-check-input {
    border-color: #c1c1c1 !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.cid-tMZrVZCDtM form .form-check-input:focus,
.cid-tMZrVZCDtM form .form-check-input:hover {
    background-color: transparent !important;
    border-color: #24262b !important;
}

.cid-tMZrVZCDtM form .form-check-input:checked {
    border-color: #24262b !important;
    background-color: #24262b !important;
}

.cid-tMZsxoLJuL {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #fdf2ec;
}

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

.cid-tMZsxoLJuL .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-tMZsxoLJuL .container {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .cid-tMZsxoLJuL .container {
        padding: 0 12px;
    }
}

@media (max-width: 992px) {
    .cid-tMZsxoLJuL .title-wrapper {
        margin-bottom: 24px;
    }
}

.cid-tMZsxoLJuL .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .cid-tMZsxoLJuL .title-wrapper .mbr-section-title {
        margin-bottom: 16px;
        text-align: center;
    }
}

.cid-tMZsxoLJuL .title-wrapper .mbr-desc {
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .cid-tMZsxoLJuL .title-wrapper .mbr-desc {
        margin-bottom: 20px;
        text-align: center;
    }
}

.cid-tMZsxoLJuL .title-wrapper .person-wrapper .person-wrap {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 992px) {
    .cid-tMZsxoLJuL .title-wrapper .person-wrapper .person-wrap {
        display: block;
    }
}

.cid-tMZsxoLJuL .title-wrapper .person-wrapper .person-wrap img {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    margin-right: 12px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-tMZsxoLJuL .title-wrapper .person-wrapper .person-wrap img {
        margin: 0 auto 12px;
    }
}

.cid-tMZsxoLJuL .title-wrapper .person-wrapper .person-wrap .name-wrap .mbr-name {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-tMZsxoLJuL .title-wrapper .person-wrapper .person-wrap .name-wrap .mbr-name {
        text-align: center;
    }
}

.cid-tMZsxoLJuL .title-wrapper .person-wrapper .person-wrap .name-wrap .mbr-role {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-tMZsxoLJuL .title-wrapper .person-wrapper .person-wrap .name-wrap .mbr-role {
        text-align: center;
    }
}

.cid-tMZsxoLJuL .dragArea.row .form-group {
    margin-bottom: 16px !important;
}

.cid-tMZsxoLJuL .dragArea.row .form-group .form-control {
    padding: 34px 26px;
    border: none !important;
    box-shadow: none;
    border-radius: 12px;
    background-color: #ffffff;
}

@media (max-width: 992px) {
    .cid-tMZsxoLJuL .dragArea.row .form-group .form-control {
        padding: 24px 26px;
    }
}

.cid-tMZsxoLJuL .dragArea.row .form-group .form-control:hover,
.cid-tMZsxoLJuL .dragArea.row .form-group .form-control:focus {
    border: none !important;
    box-shadow: none;
}

.cid-tMZsxoLJuL .dragArea.row .form-group .form-control::placeholder {
    color: #666666;
}

.cid-tMZsxoLJuL .dragArea.row .form-group textarea {
    min-height: 102px;
}

.cid-tMZsxoLJuL .dragArea.row .form-group .form-check {
    padding-left: 2.3rem;
}

.cid-tMZsxoLJuL .dragArea.row .form-group .form-check .form-check-input {
    background-color: #ffffff;
    border-color: #ffffff;
}

.cid-tMZsxoLJuL .dragArea.row .mbr-section-btn {
    width: 100%;
}

@media (max-width: 992px) {
    .cid-tMZsxoLJuL .dragArea.row .mbr-section-btn {
        text-align: center;
    }
}

.cid-tMZsxoLJuL .dragArea.row .mbr-section-btn .btn {
    display: inline-flex;
}

.cid-tMZsxoLJuL .mbr-section-title {
    color: #222222;
}

.cid-tMZsxoLJuL .mbr-desc {
    color: #222222;
}

.cid-tMZsxoLJuL .mbr-name {
    color: #222222;
}

.cid-tMZsxoLJuL .mbr-role {
    color: #222222;
}

.cid-tMZrW06oBO {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #fdf2ec;
}

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

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

.cid-tMZrW06oBO .col-title {
    margin-bottom: 32px;
}

.cid-tMZrW06oBO .mbr-section-title {
    color: #24262b;
}

.cid-tMZrW06oBO .mbr-section-subtitle {
    color: #24262b;
}

.cid-tMZrW06oBO .border-item {
    width: 100%;
    height: 1px;
    background: #767676;
    margin-bottom: 2rem;
}

.cid-tMZrW06oBO .cards-row {
    row-gap: 32px;
}

.cid-tMZrW06oBO .card {
    border-radius: 0;
}

.cid-tMZrW06oBO .mbr-iconfont {
    display: block;
    font-size: 24px;
    color: #33363b;
    margin-right: 0.5rem;
    flex-shrink: 0;
    transition: 0.3s all;
}

.cid-tMZrW06oBO .card-title {
    flex-grow: 1;
    color: #ff5a00;
    transition: 0.3s all;
}

.cid-tMZrW06oBO .card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-tMZrW06oBO .card-wrapper:hover .card-title {
    color: #b79b6c;
}

.cid-tMZrW06oBO .card-wrapper:hover .mbr-iconfont {
    color: #b79b6c;
}

.cid-tMZrW0FPN2 {
    padding-top: 0rem;
    padding-bottom: 3rem;
    background: #fdf2ec;
}

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

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

.cid-tMZrW0FPN2 .mbr-section-head {
    margin-bottom: 32px;
}

.cid-tMZrW0FPN2 .mbr-section-title {
    color: #24262b;
}

.cid-tMZrW0FPN2 .mbr-section-subtitle {
    margin-top: 16px;
    color: #24262b;
}

.cid-tMZrW0FPN2 .google-map {
    height: 450px;
    position: relative;
    filter: grayscale(1%);
}

@media (max-width: 767px) {
    .cid-tMZrW0FPN2 .google-map {
        height: 400px;
    }
}

.cid-tMZrW0FPN2 .google-map iframe {
    height: 100%;
    width: 100%;
}

.cid-tMZrW0FPN2 .google-map [data-state-details] {
    color: #6b6763;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.cid-tMZrW0FPN2 .google-map[data-state] {
    background: #e9e5dc;
}

.cid-tMZrW0FPN2 .google-map[data-state="loading"] [data-state-details] {
    display: none;
}

.cid-tMZrW1flVG {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #000000;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cid-tMZrW1flVG .col-main {
        flex-direction: column;
    }
}

.cid-tMZrW1flVG .border-item {
    width: 100%;
    height: 1px;
    background: #efefef;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .cid-tMZrW1flVG .border-item {
        order: 1;
    }
}

.cid-tMZrW1flVG .mbr-text {
    max-width: 49%;
    width: 100%;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cid-tMZrW1flVG .mbr-text {
        order: 3;
        max-width: 100%;
        text-align: center;
    }
}

.cid-tMZrW1flVG .list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 49%;
    width: 100%;
    list-style: none;
    padding-left: 0;
    color: #ffffff;
}

@media (max-width: 991px) {
    .cid-tMZrW1flVG .list {
        align-items: center;
        justify-content: center;
        order: 2;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

.cid-tMZrW1flVG .list li {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0 8px;
    display: inline-block;
    color: inherit;
    border-bottom: 2px solid transparent;
    transition: .3s all;
    cursor: pointer;
}

@media (min-width: 992px) {
    .cid-tMZrW1flVG .list li:not(:first-child):before {
        content: "";
        position: absolute;
        left: -8px;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: currentColor;
    }
}

.cid-tMZrW1flVG .list li:hover {
    color: #ff5a00;
    border-bottom: 2px solid currentColor;
}

.cid-tMZrW1flVG .list li a {
    font-weight: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}