body {
    font-family: Noto Sans;
}

.display-1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.375rem;
    line-height: 1.1;
}

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

.display-2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    line-height: 1.1;
}

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

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

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

.display-5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
}

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

.display-7 {
    font-family: 'Outfit', 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.5rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.0625rem;
        font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.1 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-2 {
        font-size: 2rem;
        font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-4 {
        font-size: 1rem;
        font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-5 {
        font-size: 1.12rem;
        font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #829d85 !important;
}

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

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

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

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

.btn-primary:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #829d85;
    border: 1px solid #829d85;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
    color: #363636 !important;
}

.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
    background-color: #829d85 !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #363636 !important;
    background-color: #58705b !important;
    border-color: #58705b !important;
}

.btn-secondary:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #987a5a;
    border: 1px solid #987a5a;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-secondary,
.btn-secondary:active {
    background-color: transparent !important;
    border-color: #987a5a !important;
    color: #1f1b24 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
    color: #1f1b24 !important;
}

.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
    background-color: #987a5a !important;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #1f1b24 !important;
    background-color: #624e3a !important;
    border-color: #624e3a !important;
}

.btn-info:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #d0c4b7;
    border: 1px solid #d0c4b7;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

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

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
    color: #686174 !important;
}

.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
    background-color: #d0c4b7 !important;
}

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

.btn-success:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #446a49;
    border: 1px solid #446a49;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-success,
.btn-success:active {
    background-color: transparent !important;
    border-color: #446a49 !important;
    color: #000000 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

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

.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
    background-color: #446a49 !important;
}

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

.btn-warning:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #caa9a8;
    border: 1px solid #caa9a8;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-warning,
.btn-warning:active {
    background-color: transparent !important;
    border-color: #caa9a8 !important;
    color: #54566c !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
    color: #54566c !important;
}

.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
    background-color: #caa9a8 !important;
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #54566c !important;
    background-color: #a97472 !important;
    border-color: #a97472 !important;
}

.btn-danger:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #895957;
    border: 1px solid #895957;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

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

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
    color: #141519 !important;
}

.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
    background-color: #895957 !important;
}

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

.btn-white:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

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

.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
    color: #a6a6a6 !important;
}

.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
    background-color: #ffffff !important;
}

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

.btn-black:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #353535;
    border: 1px solid #353535;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

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

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

.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
    background-color: #353535 !important;
}

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

.btn-primary-outline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #829d85;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-primary-outline,
.btn-primary-outline:active {
    color: #363636;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
    color: #363636 !important;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
    color: #363636 !important;
    background-color: #58705b !important;
    border-color: #58705b !important;
}

.btn-secondary-outline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #987a5a;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-secondary-outline,
.btn-secondary-outline:active {
    color: #1f1b24;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
    color: #1f1b24 !important;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
    color: #1f1b24 !important;
    background-color: #624e3a !important;
    border-color: #624e3a !important;
}

.btn-info-outline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #d0c4b7;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-info-outline,
.btn-info-outline:active {
    color: #686174;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
    color: #686174 !important;
}

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

.btn-success-outline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #446a49;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-success-outline,
.btn-success-outline:active {
    color: #000000;
}

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

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

.btn-warning-outline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #caa9a8;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-warning-outline,
.btn-warning-outline:active {
    color: #54566c;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
    color: #54566c !important;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #54566c !important;
    background-color: #a97472 !important;
    border-color: #a97472 !important;
}

.btn-danger-outline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #895957;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-danger-outline,
.btn-danger-outline:active {
    color: #141519;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
    color: #141519 !important;
}

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

.btn-black-outline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #353535;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-black-outline,
.btn-black-outline:active {
    color: #000000;
}

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

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

.btn-white-outline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ffffff;
    transform: rotate(-5deg);
    z-index: -1;
    transition: .35s all;
}

.btn-white-outline,
.btn-white-outline:active {
    color: #a6a6a6;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
    color: #a6a6a6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a,
a:hover {
    color: #829d85;
}

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

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

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

/* Scroll to top button*/

.scrollToTop_wraper {
    display: none;
}

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

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

.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: #829d85 !important;
}

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

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

blockquote {
    border-color: #829d85;
}

/* Forms */

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

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

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

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

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

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
    color: #ffffff !important;
    background: #987a5a !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='%23829d85' %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-duration: .4s;
}

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

.container {
    max-width: 1190px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 1199px) {
    .container {
        max-width: 990px;
    }
}

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

@media (max-width: 991px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

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

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

.row {
    justify-content: center;
}

b,
strong {
    font-weight: 700 !important;
}

.mbr-section-btn .btn {
    position: relative;
    min-width: 200px;
    min-height: 60px;
    padding: 14px 28px;
    font-weight: 500;
    transition-duration: .35s;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    z-index: 2;
}

.mbr-section-btn .btn.btn-black {
    color: #ffffff !important;
}

.mbr-section-btn .btn.btn-white {
    color: #353535 !important;
}

.mbr-section-btn .btn.btn-black-outline {
    color: #353535 !important;
}

.mbr-section-btn .btn.btn-white-outline {
    color: #ffffff !important;
}

.mbr-section-btn .btn:hover {
    transform: scale(0.9);
}

.mbr-section-btn .btn:hover:before {
    transform: rotate(0deg) scale(1.1111);
}

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

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

.cid-tqnGSSQQAK .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-tqnGSSQQAK .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

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

.cid-tqnGSSQQAK .dropdown-item:hover,
.cid-tqnGSSQQAK .dropdown-item:focus {
    background: #829d85 !important;
    color: white !important;
}

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

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

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

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

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

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

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

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

.cid-tqnGSSQQAK .iconfont-wrapper {
    color: #353535 !important;
    font-size: 18px;
    padding-right: 0;
}

.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont {
    transition: .4s all;
}

.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont:hover {
    color: #829d85;
}

.cid-tqnGSSQQAK .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 66.66666667%;
    margin-right: auto;
    min-height: 89px;
}

.cid-tqnGSSQQAK .navbar-nav .nav-item {
    margin: 2px;
}

.cid-tqnGSSQQAK .navbar-nav .nav-link {
    padding: 5px 9px;
    transition: .4s all;
}

.cid-tqnGSSQQAK .navbar-nav .nav-link:hover {
    transform: scale(1.1);
}

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

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

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

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

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

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

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

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

.cid-tqnGSSQQAK .navbar {
    min-height: 90px;
    transition: all 0.3s;
    border-bottom: none !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background: #f1dbda;
    box-shadow: none !important;
    padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 991px) {
    .cid-tqnGSSQQAK .navbar .nav-item .nav-link::before {
        display: none;
    }
    .cid-tqnGSSQQAK .navbar.opened .dropdown-menu {
        top: 0;
    }
    .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar .navbar-logo img {
        height: 3rem !important;
    }
    .cid-tqnGSSQQAK .navbar ul.navbar-nav li {
        margin: auto;
    }
    .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }
    .cid-tqnGSSQQAK .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }
    .cid-tqnGSSQQAK .navbar .navbar-toggler {
        flex-basis: auto;
    }
    .cid-tqnGSSQQAK .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

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

.cid-tqnGSSQQAK .navbar.navbar-short {
    min-height: 90px;
}

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

.cid-tqnGSSQQAK .navbar.navbar-short .navbar-brand {
    min-height: 89px;
    padding: 0;
}

.cid-tqnGSSQQAK .navbar-brand {
    min-height: 89px;
    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-tqnGSSQQAK .navbar-brand .navbar-caption {
    line-height: inherit !important;
}

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

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

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

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

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

.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #f1dbda;
}

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

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

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

.cid-tqnGSSQQAK .navbar-buttons {
    text-align: center;
}

.cid-tqnGSSQQAK button.navbar-toggler {
    outline: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    background-color: #f6efe8;
    border-radius: 50%;
}

.cid-tqnGSSQQAK button.navbar-toggler .hamburger span {
    position: absolute;
    right: 13px;
    width: 22px;
    height: 2px;
    background-color: #715537;
}

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

.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(2) {
    top: 24px;
    transform: translateY(-1px);
    transition: all 0.15s;
}

.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(3) {
    top: 24px;
    transform: translateY(-1px);
    transition: all 0.15s;
}

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

.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(1) {
    top: 17px;
    width: 0;
    opacity: 0;
    right: 13px;
    transition: all 0.2s;
}

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

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

.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(4) {
    top: 29px;
    width: 0;
    opacity: 0;
    right: 13px;
    transition: all 0.2s;
}

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

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

.cid-tqnGSSQQAK .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-tqnGSSQQAK .navbar {
        height: 70px;
    }
    .cid-tqnGSSQQAK .navbar.opened {
        height: auto;
    }
    .cid-tqnGSSQQAK .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-tqnGSSQQAK .container,
.cid-tqnGSSQQAK .container-fluid {
    flex-wrap: wrap;
}

.cid-tqnGSSQQAK .navbar-collapse {
    width: 75%;
    min-height: 89px;
}

.cid-tqnGSSQQAK .border-item {
    width: 100%;
    height: 1px;
    background-color: #caa9a8;
}

.cid-tqnGSSQQAK .mbr-section-btn .btn {
    width: 180px;
    min-width: auto;
    min-height: 55px;
    max-width: 100%;
}

@media (max-width: 991px) {
    .cid-tqnGSSQQAK .navbar-brand {
        width: calc(100% - 48px) !important;
        min-height: 89px;
    }
    .cid-tqnGSSQQAK .navbar-collapse {
        width: 100%;
        min-height: auto;
        padding-bottom: 1rem;
        order: 5;
    }
    .cid-tqnGSSQQAK .navbar-nav {
        width: 100%;
    }
}

.cid-tqnIBxS2Xz {
    background-image: url("../../../assets/images/pexels-cottonbro-studio-4101143-1920x1280.jpg");
    overflow: hidden;
}

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

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

.cid-tqnIBxS2Xz .row {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .cid-tqnIBxS2Xz .row {
        flex-wrap: wrap;
    }
}

.cid-tqnIBxS2Xz .text-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
}

@media (max-width: 991px) {
    .cid-tqnIBxS2Xz .text-wrap {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .cid-tqnIBxS2Xz .text-wrap {
        margin-bottom: 20px;
    }
}

.cid-tqnIBxS2Xz .iconfont-wrapper .mbr-iconfont {
    display: block;
    font-size: 100px;
    color: #a9bbab;
    transform: translateY(40%);
}

.cid-tqnIBxS2Xz .mbr-section-title {
    color: #353535;
    text-align: left;
}

.cid-tqnIBxS2Xz .mbr-section-title a {
    pointer-events: none !important;
    font-style: italic !important;
    font-weight: bold !important;
}

.cid-tqnIBxS2Xz .mbr-section-subtitle {
    margin-top: 30px;
    color: #353535;
}

@media (max-width: 767px) {
    .cid-tqnIBxS2Xz .mbr-section-subtitle {
        margin-top: 12px;
    }
}

.cid-tqnIBxS2Xz .mbr-text {
    color: #353535;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .cid-tqnIBxS2Xz .mbr-text {
        margin-top: 12px;
    }
}

.cid-tqnIBxS2Xz .mbr-section-btn {
    margin-top: 30px;
}

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

.cid-tqnIBxS2Xz .col-img {
    width: 430px;
}

@media (max-width: 1199px) {
    .cid-tqnIBxS2Xz .col-img {
        width: 350px;
    }
}

.cid-tqnIBxS2Xz .img-wrap {
    position: relative;
    width: 100%;
}

.cid-tqnIBxS2Xz .img-wrap .img-box {
    position: relative;
    z-index: 3;
    width: 100%;
    border-top-left-radius: 65px;
    border-top-right-radius: 65px;
    border-bottom-right-radius: 65px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .cid-tqnIBxS2Xz .img-wrap .img-box {
        border-top-left-radius: 55px;
        border-top-right-radius: 55px;
        border-bottom-right-radius: 55px;
    }
}

.cid-tqnIBxS2Xz .img-wrap .img-box img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.cid-tqnIBxS2Xz .img-wrap .frame-box {
    position: absolute;
    height: 240px;
}

.cid-tqnIBxS2Xz .img-wrap .frame-box svg {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.cid-tqnIBxS2Xz .img-wrap .frame-box-1 {
    bottom: -20%;
    left: -14%;
    width: 85%;
    transform: rotate(10deg);
}

.cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
    bottom: -18%;
    right: -14%;
    width: 84%;
    transform: rotate(0deg);
}

@media (max-width: 991px) {
    .cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
        bottom: auto;
        top: -15%;
    }
}

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

.cid-tqnJNh3H3d {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
    overflow: hidden;
}

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

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

.cid-tqnJNh3H3d .row {
    flex-wrap: nowrap;
}

@media (max-width: 991px) {
    .cid-tqnJNh3H3d .row {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .cid-tqnJNh3H3d .col-text {
        order: 2;
    }
}

.cid-tqnJNh3H3d .text-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
}

@media (max-width: 991px) {
    .cid-tqnJNh3H3d .text-wrap {
        margin-top: 30px;
    }
}

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

.cid-tqnJNh3H3d .mbr-text {
    color: #353535;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .cid-tqnJNh3H3d .mbr-text {
        margin-top: 12px;
    }
}

.cid-tqnJNh3H3d .mbr-section-btn {
    margin-top: 30px;
}

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

@media (max-width: 991px) {
    .cid-tqnJNh3H3d .col-img {
        order: 1;
    }
}

.cid-tqnJNh3H3d .img-wrap {
    position: relative;
    width: 100%;
}

.cid-tqnJNh3H3d .img-wrap .img-box {
    position: relative;
    z-index: 3;
    width: 100%;
    border-radius: 65px 65px 65px 0;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .cid-tqnJNh3H3d .img-wrap .img-box {
        border-radius: 55px 55px 55px 0;
    }
}

@media (max-width: 991px) {
    .cid-tqnJNh3H3d .img-wrap .img-box {
        border-radius: 65px 65px 65px 0;
    }
}

@media (max-width: 767px) {
    .cid-tqnJNh3H3d .img-wrap .img-box {
        border-radius: 55px 55px 55px 0;
    }
}

@media (max-width: 575px) {
    .cid-tqnJNh3H3d .img-wrap .img-box {
        border-radius: 45px 45px 45px 0;
    }
}

.cid-tqnJNh3H3d .img-wrap .img-box img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.cid-tqnKHbtjLQ {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
}

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

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

@media (max-width: 991px) {
    .cid-tqnKHbtjLQ .row {
        align-items: center !important;
    }
}

.cid-tqnKHbtjLQ .mbr-section-head {
    width: 100%;
    margin-bottom: 90px;
}

@media (max-width: 991px) {
    .cid-tqnKHbtjLQ .mbr-section-head {
        margin-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .cid-tqnKHbtjLQ .mbr-section-head {
        margin-bottom: 65px;
    }
}

.cid-tqnKHbtjLQ .mbr-section-title {
    color: #353535;
    margin-bottom: 0;
}

.cid-tqnKHbtjLQ .mbr-section-subtitle {
    color: #353535;
    margin-top: 20px;
}

.cid-tqnKHbtjLQ .text-wrap {
    width: 100%;
    padding: 36px 0;
    border-top: 1px solid #895957;
}

@media (max-width: 991px) {
    .cid-tqnKHbtjLQ .text-wrap {
        padding: 30px 0;
    }
}

.cid-tqnKHbtjLQ .mbr-title {
    color: #61411e;
}

.cid-tqnKHbtjLQ .mbr-text {
    margin-top: 12px;
    color: #353535;
}

.cid-tqnKHbtjLQ .list-box {
    width: 100%;
}

.cid-tqnKHbtjLQ .list {
    list-style: none;
    margin-top: 22px;
    margin-bottom: auto;
    padding-left: 30px;
    color: #353535;
    padding-left: 0;
}

.cid-tqnKHbtjLQ .list-text {
    position: relative;
}

.cid-tqnKHbtjLQ .list-text:not(:first-child) {
    margin-top: 12px;
}

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

.cid-tqnKHbtjLQ .img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 0 100px 0 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cid-tqnKHbtjLQ .img-box {
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .cid-tqnKHbtjLQ .img-box {
        border-radius: 0 15vw 0 0;
    }
}

.cid-tqnKHbtjLQ .img-box img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.cid-tqnPVhqg2X {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
}

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

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

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

@media (max-width: 991px) {
    .cid-tqnPVhqg2X .row {
        align-items: center !important;
    }
}

.cid-tqnPVhqg2X .mbr-section-head {
    width: 100%;
    margin-bottom: 90px;
}

@media (max-width: 991px) {
    .cid-tqnPVhqg2X .mbr-section-head {
        margin-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .cid-tqnPVhqg2X .mbr-section-head {
        margin-bottom: 65px;
    }
}

.cid-tqnPVhqg2X .mbr-section-title {
    color: #829D85;
    margin-bottom: 0;
}

.cid-tqnPVhqg2X .mbr-section-subtitle {
    color: #353535;
    margin-top: 20px;
}

.cid-tqnPVhqg2X .text-wrap {
    width: 100%;
    padding: 36px 0;
}

@media (max-width: 991px) {
    .cid-tqnPVhqg2X .text-wrap {
        padding: 30px 0;
    }
}

.cid-tqnPVhqg2X .mbr-title {
    color: #61411e;
}

.cid-tqnPVhqg2X .mbr-text {
    margin-top: 12px;
    color: #353535;
}

.cid-tqnPVhqg2X .list-box {
    width: 100%;
}

.cid-tqnPVhqg2X .list {
    list-style: none;
    margin-top: 22px;
    margin-bottom: auto;
    padding-left: 30px;
    color: #353535;
    padding-left: 0;
}

.cid-tqnPVhqg2X .list-text {
    position: relative;
}

.cid-tqnPVhqg2X .list-text:not(:first-child) {
    margin-top: 12px;
}

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

.cid-tqnPVhqg2X .img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 0 0 0 100px;
    overflow: hidden;
    border-radius: 0 0 100px 0;
}

@media (max-width: 991px) {
    .cid-tqnPVhqg2X .img-box {
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .cid-tqnPVhqg2X .img-box {
        border-radius: 0 0 0 15vw;
        border-radius: 0 0 15vw 0;
    }
}

.cid-tqnPVhqg2X .img-box img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.cid-tqnLBXnomf {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
}

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

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

.cid-tqnLBXnomf .mbr-section-head {
    width: 100%;
    margin-bottom: 90px;
}

@media (max-width: 991px) {
    .cid-tqnLBXnomf .mbr-section-head {
        margin-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .cid-tqnLBXnomf .mbr-section-head {
        margin-bottom: 65px;
    }
}

.cid-tqnLBXnomf .mbr-section-title {
    color: #829D85;
    margin-bottom: 0;
}

.cid-tqnLBXnomf .mbr-section-subtitle {
    color: #353535;
    margin-top: 20px;
}

.cid-tqnLBXnomf .text-wrap {
    width: 100%;
}

.cid-tqnLBXnomf .mbr-text {
    color: #353535;
}

.cid-tqnLBXnomf .list-box {
    width: 100%;
}

.cid-tqnLBXnomf .list {
    list-style: none;
    margin-top: 32px;
    margin-bottom: auto;
    padding-left: 30px;
    color: #353535;
    padding-left: 0;
}

.cid-tqnLBXnomf .list-text {
    position: relative;
}

.cid-tqnLBXnomf .list-text:not(:first-child) {
    margin-top: 12px;
}

.cid-tqnLBXnomf .items-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .cid-tqnLBXnomf .items-box {
        max-width: 540px;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .cid-tqnLBXnomf .items-box {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .cid-tqnLBXnomf .items-box {
        gap: 16px;
    }
}

.cid-tqnLBXnomf .item {
    border-radius: 30px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .cid-tqnLBXnomf .item {
        width: calc(50% - 16px);
    }
}

@media (max-width: 767px) {
    .cid-tqnLBXnomf .item {
        border-radius: 22px;
    }
}

@media (max-width: 575px) {
    .cid-tqnLBXnomf .item {
        width: 100%;
    }
}

.cid-tqnLBXnomf .item:nth-child(1) {
    background-color: rgba(208, 196, 183, 0.95);
    border-bottom-right-radius: 0;
}

.cid-tqnLBXnomf .item:nth-child(2) {
    background-color: rgba(208, 196, 183, 0.95);
    border-bottom-left-radius: 0;
}

.cid-tqnLBXnomf .item:nth-child(3) {
    background-color: rgba(208, 196, 183, 0.95);
    border-top-right-radius: 0;
}

.cid-tqnLBXnomf .item:nth-child(4) {
    border-top-left-radius: 0;
    background-color: rgba(208, 196, 183, 0.95);
}

.cid-tqnLBXnomf .item-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 240px;
    max-width: 240px;
    min-height: 138px;
    padding: 30px;
}

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

@media (max-width: 767px) {
    .cid-tqnLBXnomf .item-wrap {
        min-height: 105px;
        padding: 16px;
    }
}

.cid-tqnLBXnomf .item-title {
    width: 100%;
    margin: 0;
    color: #987A5A;
}

.cid-tqnLBXnomf .item-text {
    width: 100%;
    margin: 16px 0 0;
    color: #353535;
}

@media (max-width: 767px) {
    .cid-tqnLBXnomf .item-text {
        margin: 12px 0 0;
    }
}

.cid-tqnMpBk11O {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/pexels-cottonbro-studio-4098368-1280x1920.jpg");
}

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

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

.cid-tqnMpBk11O .mbr-section-title {
    width: 100%;
    color: #353535;
    margin-bottom: 0;
}

.cid-tqnMpBk11O .mbr-section-title.display-4 {
    font-size: 40px;
}

@media (max-width: 767px) {
    .cid-tqnMpBk11O .mbr-section-title.display-4 {
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width: 575px) {
    .cid-tqnMpBk11O .mbr-section-title.display-4 {
        font-size: 26px;
    }
}

.cid-tqnMpBk11O .mbr-text {
    width: 100%;
    color: #353535;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .cid-tqnMpBk11O .mbr-text {
        margin-top: 16px;
    }
}

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

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

.cid-tqnPeqdcaI {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
}

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

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

.cid-tqnPeqdcaI .text-wrap {
    width: 100%;
}

.cid-tqnPeqdcaI .mbr-section-head {
    width: 100%;
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .cid-tqnPeqdcaI .mbr-section-head {
        margin-bottom: 65px;
    }
}

.cid-tqnPeqdcaI .mbr-section-title {
    color: #353535;
    margin-bottom: 0;
}

.cid-tqnPeqdcaI .mbr-text {
    color: #353535;
    margin-top: 20px;
}

.cid-tqnPeqdcaI .item-row {
    row-gap: 50px;
}

.cid-tqnPeqdcaI .item-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.cid-tqnPeqdcaI .img-box {
    display: flex;
    align-items: center;
    max-width: 105px;
    width: 100%;
    height: 85px;
    margin: 0 auto 20px;
}

.cid-tqnPeqdcaI .img-box img {
    width: 100%;
    height: auto;
}

.cid-tqnPeqdcaI .item-title {
    width: 100%;
    margin: 0;
    color: #61411e;
}

.cid-tqnPeqdcaI .item-text {
    color: #353535;
    margin: 20px 0 0;
}

@media (max-width: 767px) {
    .cid-tqnPeqdcaI .item-text {
        margin: 16px 0 0;
    }
}

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

.cid-tqnPeqdcaI .mbr-section-btn .btn {
    width: 180px;
    min-width: auto;
    min-height: 55px;
    max-width: 100%;
}

.cid-tqnPBN8yVa {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
    overflow: hidden;
}

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

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

.cid-tqnPBN8yVa .mbr-section-head {
    width: 100%;
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .cid-tqnPBN8yVa .mbr-section-head {
        margin-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .cid-tqnPBN8yVa .mbr-section-head {
        margin-bottom: 65px;
    }
}

.cid-tqnPBN8yVa .mbr-section-title {
    color: #353535;
    margin-bottom: 0;
}

.cid-tqnPBN8yVa .mbr-section-subtitle {
    color: #353535;
    margin-top: 20px;
}

.cid-tqnPBN8yVa .items-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 991px) {
    .cid-tqnPBN8yVa .items-row {
        row-gap: 50px;
    }
}

.cid-tqnPBN8yVa .card-title {
    position: relative;
    max-width: 360px;
    width: 100%;
    color: #61411e;
}

@media (max-width: 575px) {
    .cid-tqnPBN8yVa .card-title {
        max-width: 100%;
    }
}

.cid-tqnPBN8yVa .card-text {
    position: relative;
    max-width: 360px;
    width: 100%;
    margin-top: 16px;
    color: #353535;
}

@media (max-width: 575px) {
    .cid-tqnPBN8yVa .card-text {
        max-width: 100%;
        margin-top: 12px;
    }
}

.cid-tqnPBN8yVa .item-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 560px;
    padding: 50px 50px 60px;
    background-position: center;
    background-size: 100% 100%;
}

@media (max-width: 575px) {
    .cid-tqnPBN8yVa .item-wrap {
        padding: 20px !important;
    }
}

.cid-tqnPBN8yVa .item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.cid-tqnPBN8yVa .item:nth-child(1) .item-wrap {
    margin-right: auto;
    background-image: url("../../../assets/images/frame5.png");
}

.cid-tqnPBN8yVa .item:nth-child(2) {
    margin-top: -12px;
}

@media (max-width: 991px) {
    .cid-tqnPBN8yVa .item:nth-child(2) {
        margin: 0;
    }
}

.cid-tqnPBN8yVa .item:nth-child(2) .item-wrap {
    margin-left: auto;
    background-image: url("../../../assets/images/frame6.png");
}

.cid-tqnPBN8yVa .item:nth-child(3) {
    margin-top: -12px;
}

@media (max-width: 991px) {
    .cid-tqnPBN8yVa .item:nth-child(3) {
        margin: 0;
    }
}

.cid-tqnPBN8yVa .item:nth-child(3) .item-wrap {
    max-width: 600px;
    margin-right: auto;
    background-image: url("../../../assets/images/frame7.png");
}

.cid-tqnPBN8yVa .item:nth-child(4) .item-wrap {
    max-width: 508px;
    margin-left: auto;
    padding: 50px 40px 60px;
    background-image: url("../../../assets/images/frame8.png");
}

.cid-tqnMDNer4k {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
}

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

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

.cid-tqnMDNer4k .text-wrap {
    width: 100%;
}

.cid-tqnMDNer4k .mbr-section-head {
    width: 100%;
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .cid-tqnMDNer4k .mbr-section-head {
        margin-bottom: 60px;
    }
}

.cid-tqnMDNer4k .mbr-section-title {
    color: #353535;
    margin-bottom: 0;
}

.cid-tqnMDNer4k .mbr-text {
    color: #353535;
    margin-top: 20px;
}

.cid-tqnMDNer4k .item-row {
    row-gap: 40px;
    margin-left: -20px;
    margin-right: -20px;
}

.cid-tqnMDNer4k .item-row>[class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
}

.cid-tqnMDNer4k .item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100%;
    background-color: #fffcf5;
    overflow: hidden;
    border: 1px solid rgba(130, 157, 133, 0.8);
    border-radius: 45px;
}

.cid-tqnMDNer4k .item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cid-tqnMDNer4k .item-img img {
    aspect-ratio: 0.83333333;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.cid-tqnMDNer4k .item-title-wrap {
    padding: 45px 26px;
    border-radius: 0 0 45px 45px;
    border: 1px solid rgba(130, 157, 133, 0.8);
    background-color: rgba(169, 127, 125, 0.8);
}

.cid-tqnMDNer4k .item-title {
    width: 100%;
    margin: 0;
    color: #fffcf5;
}

.cid-tqnMDNer4k .item-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-grow: 1;
    padding: 26px;
}

.cid-tqnMDNer4k .item-text {
    color: #353535;
    margin: 0;
}

.cid-tqnMDNer4k .mbr-section-btn {
    margin-top: 10px;
}

.cid-tqnMDNer4k .mbr-section-btn .btn {
    width: 180px;
    min-width: auto;
    min-height: 55px;
    max-width: 100%;
}

.cid-tqnNyjZ7nW {
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
    background-color: #f1dbda;
}

.cid-tqnNyjZ7nW .mbr-section-head {
    width: 100%;
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .cid-tqnNyjZ7nW .mbr-section-head {
        margin-bottom: 60px;
    }
}

.cid-tqnNyjZ7nW .mbr-section-title {
    color: #353535;
    margin-bottom: 0;
}

.cid-tqnNyjZ7nW .mbr-section-subtitle {
    color: #353535;
    margin-top: 20px;
}

.cid-tqnNyjZ7nW .box {
    width: 100%;
    border-radius: 45px;
    overflow: hidden;
    border: 1px solid rgba(137, 89, 87, 0.8);
}

.cid-tqnNyjZ7nW .mbr-media {
    width: 100%;
    position: relative;
}

.cid-tqnNyjZ7nW .mbr-media img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    max-width: 100%;
    object-fit: cover;
}

.cid-tqnNyjZ7nW .mbr-media span {
    font-size: 4rem;
    transition: all 0.2s;
}

.cid-tqnNyjZ7nW .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    transition: 0.4s all;
}

.cid-tqnNyjZ7nW .icon-wrap:hover {
    transform: translate(-50%, -50%) scale(0.9);
}

.cid-tqnNyjZ7nW .icon-wrap div .mbr-iconfont {
    color: #353535;
    font-size: 5vw !important;
}

@media (max-width: 991px) {
    .cid-tqnNyjZ7nW .icon-wrap div .mbr-iconfont {
        font-size: 7vw !important;
    }
}

@media (max-width: 575px) {
    .cid-tqnNyjZ7nW .icon-wrap div .mbr-iconfont {
        font-size: 9vw !important;
    }
}

.cid-tqnNyjZ7nW .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
}

.cid-tqnNyjZ7nW .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
}

.cid-tqnNyjZ7nW .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
}

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

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

.cid-tqnP5LWWNT {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
}

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

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

.cid-tqnP5LWWNT .text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    min-height: 280px;
    padding: 70px 50px;
    background-image: url("../../../assets/images/blobs-3.svg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.cid-tqnP5LWWNT .mbr-section-title {
    width: 100%;
    color: #353535;
    margin-bottom: 0;
}

.cid-tqnP5LWWNT .mbr-section-title.display-4 {
    font-size: 48px;
}

@media (max-width: 767px) {
    .cid-tqnP5LWWNT .mbr-section-title.display-4 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .cid-tqnP5LWWNT .mbr-section-title.display-4 {
        font-size: 28px;
    }
}

.cid-tqnP5LWWNT .mbr-text {
    width: 100%;
    color: #353535;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .cid-tqnP5LWWNT .mbr-text {
        margin-top: 16px;
    }
}

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

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

.cid-tqnNMOA2Of {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
}

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

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

.cid-tqnNMOA2Of .text-wrap {
    width: 100%;
}

.cid-tqnNMOA2Of .mbr-section-head {
    width: 100%;
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .cid-tqnNMOA2Of .mbr-section-head {
        margin-bottom: 60px;
    }
}

.cid-tqnNMOA2Of .mbr-section-title {
    color: #353535;
    margin-bottom: 0;
}

.cid-tqnNMOA2Of .mbr-text {
    color: #353535;
    margin-top: 20px;
}

.cid-tqnNMOA2Of .item-row {
    row-gap: 40px;
    margin-left: -20px;
    margin-right: -20px;
}

.cid-tqnNMOA2Of .item-row>[class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
}

.cid-tqnNMOA2Of .card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100%;
    background-color: #fffcf5;
    overflow: hidden;
}

.cid-tqnNMOA2Of .card_1 {
    border: 1px solid rgba(130, 157, 133, 0.8);
    border-radius: 0 45px 45px 45px;
}

.cid-tqnNMOA2Of .card_1 .card-title-wrap {
    border-radius: 0 44px 44px 44px;
    border: 1px solid rgba(130, 157, 133, 0.8);
    background-color: rgba(169, 187, 171, 0.8);
}

.cid-tqnNMOA2Of .card_2 {
    border: 1px solid rgba(169, 127, 125, 0.8);
    border-radius: 45px;
}

.cid-tqnNMOA2Of .card_2 .card-title-wrap {
    border-radius: 44px;
    border: 1px solid rgba(169, 127, 125, 0.8);
    background-color: rgba(202, 169, 168, 0.8);
}

.cid-tqnNMOA2Of .card_3 {
    border: 1px solid rgba(130, 157, 133, 0.8);
    border-radius: 45px 45px 0 45px;
}

.cid-tqnNMOA2Of .card_3 .card-title-wrap {
    border-radius: 44px 44px 0 44px;
    border: 1px solid rgba(130, 157, 133, 0.8);
    background-color: rgba(195, 195, 195, 0.8);
}

.cid-tqnNMOA2Of .card-title-wrap {
    padding: 45px 26px;
}

.cid-tqnNMOA2Of .card-title {
    width: 100%;
    margin: 0;
    color: #987A5A;
}

.cid-tqnNMOA2Of .card-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-grow: 1;
    padding: 32px 26px 50px;
}

.cid-tqnNMOA2Of .card-text {
    color: #353535;
    margin: 0 0 auto;
}

.cid-tqnNMOA2Of .card-text-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 18px;
    margin-top: 28px;
}

.cid-tqnNMOA2Of .card-duration {
    color: #353535;
}

.cid-tqnNMOA2Of .card-cost {
    color: #353535;
}

.cid-tqnNMOA2Of .mbr-section-btn {
    margin-top: 5px;
}

.cid-tqnNMOA2Of .mbr-section-btn .btn {
    width: 180px;
    min-width: auto;
    min-height: 55px;
    max-width: 100%;
}

.cid-tqnOgEMhlm {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: url("../../../assets/images/pexels-cottonbro-studio-4098224-1920x1280.jpg");
    overflow: hidden;
}

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

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

.cid-tqnOgEMhlm .row {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .cid-tqnOgEMhlm .row {
        flex-wrap: wrap;
    }
}

.cid-tqnOgEMhlm .text-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
}

@media (max-width: 991px) {
    .cid-tqnOgEMhlm .text-wrap {
        margin-bottom: 50px;
    }
}

.cid-tqnOgEMhlm .mbr-section-title {
    color: #353535;
    margin-bottom: 30px;
}

.cid-tqnOgEMhlm .img-wrap {
    position: relative;
    width: 100%;
}

.cid-tqnOgEMhlm .img-wrap .img-box {
    position: relative;
    z-index: 3;
    width: 100%;
    border-radius: 65px 65px 65px 0;
    overflow: hidden;
    border-radius: 65px 65px 0 65px;
}

@media (max-width: 1199px) {
    .cid-tqnOgEMhlm .img-wrap .img-box {
        border-radius: 55px 55px 55px 0;
        border-radius: 55px 55px 0 55px;
    }
}

@media (max-width: 991px) {
    .cid-tqnOgEMhlm .img-wrap .img-box {
        border-radius: 65px 65px 65px 0;
        border-radius: 65px 65px 0 65px;
    }
}

@media (max-width: 767px) {
    .cid-tqnOgEMhlm .img-wrap .img-box {
        border-radius: 55px 55px 55px 0;
        border-radius: 55px 55px 0 55px;
    }
}

@media (max-width: 575px) {
    .cid-tqnOgEMhlm .img-wrap .img-box {
        border-radius: 45px 45px 45px 0;
        border-radius: 45px 45px 0 45px;
    }
}

.cid-tqnOgEMhlm .img-wrap .img-box img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.cid-tqnOgEMhlm .form-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 !important;
}

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

.cid-tqnOgEMhlm form .dragArea.row {
    justify-content: flex-start;
    width: auto !important;
}

.cid-tqnOgEMhlm form p {
    color: #353535;
}

.cid-tqnOgEMhlm form .mbr-section-btn .btn {
    width: 100%;
}

.cid-tqnOgEMhlm form .mbr-section-btn .btn:before {
    transform: rotate(0);
    border-radius: 60px;
    background: transparent;
}

.cid-tqnOgEMhlm form .mbr-section-btn .btn:hover {
    transform: translate(0, 0);
}

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

.cid-tqnOgEMhlm form .form-control {
    height: 60px;
    border: none !important;
    border-bottom: 1px solid #829d85 !important;
    background: transparent;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin-bottom: 0;
    padding: 20px 0;
    font-size: 18px;
    color: #353535;
    font-weight: 500;
    transition: .3s;
}

.cid-tqnOgEMhlm form .form-control::-webkit-input-placeholder {
    color: #6C6C6C;
}

.cid-tqnOgEMhlm form .form-control::-moz-placeholder {
    color: #6C6C6C;
}

.cid-tqnOgEMhlm form .form-control:-moz-placeholder {
    color: #6C6C6C;
}

.cid-tqnOgEMhlm form .form-control:-ms-input-placeholder {
    color: #6C6C6C;
}

.cid-tqnOgEMhlm form select {
    color: #6C6C6C !important;
}

.cid-tqnOgEMhlm form textarea {
    height: 150px !important;
    min-height: 150px !important;
    padding: 20px;
    resize: none;
}

.cid-tqnOgEMhlm form textarea::-webkit-input-placeholder {
    color: #6C6C6C !important;
}

.cid-tqnOgEMhlm form textarea::-moz-placeholder {
    color: #6C6C6C !important;
}

.cid-tqnOgEMhlm form textarea:-moz-placeholder {
    color: #6C6C6C !important;
}

.cid-tqnOgEMhlm form textarea:-ms-input-placeholder {
    color: #6C6C6C !important;
}

.cid-tqnOgEMhlm form input,
.cid-tqnOgEMhlm form textarea {
    transition: .4s all;
}

.cid-tqnOgEMhlm form input:active,
.cid-tqnOgEMhlm form textarea:active,
.cid-tqnOgEMhlm form input:focus,
.cid-tqnOgEMhlm form textarea:focus {
    background-color: transparent !important;
    border-color: #829d85 !important;
    outline: none !important;
}

.cid-tqnOgEMhlm form input:active::-webkit-input-placeholder,
.cid-tqnOgEMhlm form textarea:active::-webkit-input-placeholder,
.cid-tqnOgEMhlm form input:focus::-webkit-input-placeholder,
.cid-tqnOgEMhlm form textarea:focus::-webkit-input-placeholder {
    color: #6C6C6C !important;
}

.cid-tqnOgEMhlm form input:active::-moz-placeholder,
.cid-tqnOgEMhlm form textarea:active::-moz-placeholder,
.cid-tqnOgEMhlm form input:focus::-moz-placeholder,
.cid-tqnOgEMhlm form textarea:focus::-moz-placeholder {
    color: #6C6C6C !important;
}

.cid-tqnOgEMhlm form input:active:-moz-placeholder,
.cid-tqnOgEMhlm form textarea:active:-moz-placeholder,
.cid-tqnOgEMhlm form input:focus:-moz-placeholder,
.cid-tqnOgEMhlm form textarea:focus:-moz-placeholder {
    color: #6C6C6C !important;
}

.cid-tqnOgEMhlm form input:active:-ms-input-placeholder,
.cid-tqnOgEMhlm form textarea:active:-ms-input-placeholder,
.cid-tqnOgEMhlm form input:focus:-ms-input-placeholder,
.cid-tqnOgEMhlm form textarea:focus:-ms-input-placeholder {
    color: #6C6C6C !important;
}

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

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

.cid-tqnOgEMhlm form label {
    width: 100%;
    color: #353535;
    margin-bottom: 5px;
}

.cid-tqnOgEMhlm form .form-check label {
    color: #353535;
}

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

.cid-tqnOgEMhlm form .form-check-input:focus,
.cid-tqnOgEMhlm form .form-check-input:hover {
    background-color: transparent !important;
    border-color: #829d85 !important;
}

.cid-tqnOgEMhlm form .form-check-input:checked {
    border-color: #829d85 !important;
    background-color: #FFFCF5 !important;
}

.cid-tqnOQy9hhI {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1dbda;
}

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

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

.cid-tqnOQy9hhI .mbr-section-head {
    width: 100%;
    margin-bottom: 90px;
}

@media (max-width: 991px) {
    .cid-tqnOQy9hhI .mbr-section-head {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .cid-tqnOQy9hhI .mbr-section-head {
        margin-bottom: 50px;
    }
}

.cid-tqnOQy9hhI .mbr-section-title {
    color: #353535;
    margin-bottom: 0;
}

.cid-tqnOQy9hhI .mbr-section-subtitle {
    color: #353535;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .cid-tqnOQy9hhI .col-img {
        display: none;
    }
}

.cid-tqnOQy9hhI .img-wrap {
    width: 100%;
}

.cid-tqnOQy9hhI .img-wrap .img-box {
    width: 100%;
    border-radius: 65px 65px 0 65px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .cid-tqnOQy9hhI .img-wrap .img-box {
        border-radius: 40px 40px 0 40px;
    }
}

.cid-tqnOQy9hhI .img-wrap .img-box img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.cid-tqnOQy9hhI .mbr-iconfont {
    position: relative;
    font-size: 24px !important;
    font-family: 'Moririse2' !important;
    color: #987a5a;
    margin-left: 1rem;
    padding: 10px;
    transition: .3s all;
}

.cid-tqnOQy9hhI .mbr-iconfont:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(195, 195, 195, 0.9);
    opacity: 0;
    transition: .3s all;
}

.cid-tqnOQy9hhI .mbr-iconfont:before {
    position: relative;
    z-index: 2;
}

.cid-tqnOQy9hhI .panel-group {
    border: none;
    border-top: 1px solid #895957;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .cid-tqnOQy9hhI .panel-group {
        margin-top: 0;
    }
}

.cid-tqnOQy9hhI .card {
    border-bottom: 1px solid #895957;
    border-radius: 0;
}

.cid-tqnOQy9hhI .card-header {
    padding: 20px 0;
    border: none;
    background-color: transparent;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .cid-tqnOQy9hhI .card-header {
        padding: 8px 0;
    }
}

.cid-tqnOQy9hhI .card-header:hover .mbr-iconfont {
    color: #895957;
}

.cid-tqnOQy9hhI .card-header:hover .mbr-iconfont:after {
    opacity: 1;
}

.cid-tqnOQy9hhI .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #987A5A;
}

.cid-tqnOQy9hhI .panel-title[aria-expanded="true"] .mbr-iconfont {
    transform: rotate(45deg);
}

.cid-tqnOQy9hhI .panel-title-edit {
    color: #987A5A;
}

.cid-tqnOQy9hhI .panel-body {
    padding: 0 0 40px;
}

@media (max-width: 767px) {
    .cid-tqnOQy9hhI .panel-body {
        padding: 0 0 24px;
    }
}

.cid-tqnOQy9hhI .panel-text {
    color: #353535;
    margin: 0;
}

.cid-tqnNLkY391 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #caa9a8;
}

.cid-tqnNLkY391 .mbr-text {
    color: #FFFCF5;
}

.cid-tqnNLkY391 .media-container-row .mbr-text {
    color: #353535;
}