.btn {
    border-width: 2px;
}

img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper {
    border-radius: 2rem !important;
}

.video-wrapper {
    overflow: hidden;
}

body {
    background-color: #fcf8f8;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

.display-1 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 5rem;
    line-height: 1.15;
}

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

.display-2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 4rem;
    line-height: 1.15;
}

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

.display-4 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.125rem;
    line-height: 1.5;
}

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

.display-5 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.75rem;
    line-height: 1.5;
}

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

.display-7 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.3rem;
    line-height: 1.5;
}

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

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

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

/* 100vw - current viewport width */

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

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

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

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

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

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

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

    .display-7 {
        font-size: 1.04rem;
        font-size: calc(1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
    }
}

/* Buttons */

.btn {
    padding: 1.25rem 2rem;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .btn {
        padding: 0.75rem 1.5rem;
    }
}

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

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

.btn-lg {
    padding: 1.25rem 2rem;
    border-radius: 4px;
}

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

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

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

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

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

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
    color: #ffffff !important;
    background-color: #cf8c2c !important;
    /* darker shade of #e29b31 */
    border-color: #cf8c2c !important;
    box-shadow: none;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff !important;
    background-color: #e6b76b !important;
    /* lighter shade */
    border-color: #e6b76b !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-white,
.btn-white:active {
    background-color: #eff0ec !important;
    border-color: #eff0ec !important;
    color: #757b62 !important;
    box-shadow: none;
}

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

.btn-white.disabled,
.btn-white:disabled {
    color: #757b62 !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

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

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

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

.btn-primary-outline,
.btn-primary-outline:active {
    background-color: transparent !important;
    border-color: #9da993;
    color: #9da993;
}

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

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

.btn-secondary-outline,
.btn-secondary-outline:active {
    background-color: transparent !important;
    border-color: #bca88e;
    color: #bca88e;
}

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

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

.btn-info-outline,
.btn-info-outline:active {
    background-color: transparent !important;
    border-color: #17cef2;
    color: #17cef2;
}

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

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

.btn-success-outline,
.btn-success-outline:active {
    background-color: transparent !important;
    border-color: #30d98b;
    color: #30d98b;
}

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

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

.btn-warning-outline,
.btn-warning-outline:active {
    background-color: transparent !important;
    border-color: #ffc20a;
    color: #ffc20a;
}

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

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

.btn-danger-outline,
.btn-danger-outline:active {
    background-color: transparent !important;
    border-color: #db2e3f;
    color: #db2e3f;
}

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

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

.btn-black-outline,
.btn-black-outline:active {
    background-color: transparent !important;
    border-color: #232323;
    color: #232323;
}

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

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

.btn-white-outline,
.btn-white-outline:active {
    background-color: transparent !important;
    border-color: #fafafa;
    color: #fafafa;
}

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

.btn-white-outline.disabled,
.btn-white-outline:disabled {
    color: #7a7a7a !important;
    background-color: #fafafa !important;
    border-color: #fafafa !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-info {
    background-color: #17cef2;
}

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

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

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

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

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

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

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

a,
a:hover {
    color: #9da993;
}

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

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

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

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

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

/* Scroll to top button*/

.scrollToTop_wraper {
    display: none;
}

.form-control {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 400;
    border-radius: 100px !important;
}

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

.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: #9da993 !important;
}

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

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

blockquote {
    border-color: #9da993;
}

/* Forms */

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

.mbr-form .input-group-btn .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: #9da993;
    color: #ffffff;
}

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

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

.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
    transition: 0.4s;
    border-top-color: #232323;
    border-bottom-color: #232323;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
    border-top-color: #9da993;
    border-bottom-color: #9da993;
}

.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: #9da993 !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: #bca88e !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='%239da993' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

section.lazy-placeholder:after {
    opacity: 0.5;
}

body {
    overflow-x: hidden;
}

a {
    transition: color 0.6s;
}

.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
    position: relative;
    overflow: hidden;
    box-shadow: none;
    padding: 1rem 1.5rem;
    border-radius: 4px !important;
    font-weight: 400 !important;
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Icon default state */
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
    display: inline-block;
    transform: rotate(-45deg);
    transition: transform 0.5s ease-in-out;
}

/* Hover / Focus animation */
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Icon rotation */
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont,
.mbr-section-btn .btn:focus .mbr-iconfont,
.mbr-section-btn-main .btn:focus .mbr-iconfont {
    transform: rotate(135deg);
}

/* Shine effect */
.mbr-section-btn .btn::before,
.mbr-section-btn-main .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
}

.mbr-section-btn .btn:hover::before,
.mbr-section-btn-main .btn:hover::before {
    left: 120%;
}


.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
    transform: rotate(-45deg);
}

img {
    border-radius: .5rem !important;
}

.cid-v6o29xD10f {
    background-color: transparent;
}

.cid-v6o29xD10f .navbar-dropdown {
    background: transparent;
    padding: 0;
}

.cid-v6o29xD10f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background-color: #22090b !important;
    background: #22090b;
}

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

.cid-v6o29xD10f .menu_box {
    flex-wrap: nowrap;
}

@media (max-width: 991px) {
    .cid-v6o29xD10f .menu_box {
        flex-direction: column;
        align-items: flex-start;
    }

    .cid-v6o29xD10f .menu_box .navbar.opened,
    .cid-v6o29xD10f .menu_box .navbar-collapse {
        background-color: #22090b;
        transition: all 0s ease 0s;
    }
}

.cid-v6o29xD10f .navbar-dropdown {
    position: relative !important;
}

.cid-v6o29xD10f .btn {
    min-height: auto;
    box-shadow: none;
    margin-top: 0;
}

.cid-v6o29xD10f .btn:hover {
    box-shadow: none;
}

@media (min-width: 992px) {
    .cid-v6o29xD10f .offcanvas_image img {
        width: auto;
        object-fit: cover;
        display: inline-block;
    }

    .cid-v6o29xD10f .offcanvas-header {
        position: relative;
        padding: 0;
    }

    .cid-v6o29xD10f .offcanvas-header .btn-close {
        position: absolute;
        top: -70px;
        right: 0;
        width: 35px;
        height: 30px;
    }

    .cid-v6o29xD10f .offcanvas-body {
        text-align: center;
        padding: 0;
    }

    .cid-v6o29xD10f .offcanvas-body .mbr-text,
    .cid-v6o29xD10f .offcanvas-body .mbr-section-subtitle {
        margin-bottom: 32px;
    }

    .cid-v6o29xD10f .offcanvas-body .offcanvas_contact {
        margin: 0;
    }

    .cid-v6o29xD10f .offcanvas_box button.btn_offcanvas {
        outline: none;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
        align-self: center;
    }

    .cid-v6o29xD10f .offcanvas_box button.btn_offcanvas .hamburger span {
        position: absolute;
        right: 0;
        width: 40px;
        height: 2px;
        border-right: 5px;
        background-color: #ffffff;
    }

    .cid-v6o29xD10f .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
        top: 18px;
        transition: all 0.2s;
    }

    .cid-v6o29xD10f .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
        top: 25px;
        transition: all 0.2s;
    }

    .cid-v6o29xD10f .offcanvas_box button.btn_offcanvas:hover .hamburger span {
        width: 36px;
    }

    .cid-v6o29xD10f .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
        width: 33px;
        transition-delay: 0.2s;
    }

    .cid-v6o29xD10f ul.navbar-nav {
        padding-bottom: 1.5rem;
    }

    .cid-v6o29xD10f .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
    .cid-v6o29xD10f .link.dropdown-toggle::after {
        display: inline-block;
        width: 7px;
        height: 7px;
        margin-left: 0.5rem;
        margin-bottom: 2px;
        content: "";
        border: 2px solid;
        border-left: none;
        border-top: none;
        transform: rotate(-45deg);
    }

    .cid-v6o29xD10f .link.dropdown-toggle::after {
        padding: 0 !important;
        transform: rotate(45deg);
    }

    .cid-v6o29xD10f li.nav-item {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        line-height: 2em !important;
        font-weight: 600 !important;
        text-decoration: none;
        letter-spacing: 0 !important;
        z-index: 1;
        padding: 4px 20px !important;
        margin: 0;
        border-right: 1px solid #ffffff;
    }

    .cid-v6o29xD10f .lg_brand {
        margin: 0 1rem;
    }

    .cid-v6o29xD10f .navbar-nav.nav-dropdown {
        display: -webkit-flex;
        width: 100%;
        justify-content: center;
        min-width: 200px;
    }
}

.cid-v6o29xD10f .nav-item {
    margin: 4px 15px;
}

@media (min-width: 1200px) {
    .cid-v6o29xD10f .nav-item {
        margin: 4px 20px;
    }
}

@media (max-width: 991px) {
    .cid-v6o29xD10f .nav-item {
        margin: 0 !important;
    }
}


.cid-v6o29xD10f .dropdown-menu {
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}

@media (min-width: 992px) {
    .cid-v6o29xD10f .dropdown-menu {
        padding: 18px 34px 22px;
        min-width: 250px;
        top: auto !important;
        left: -40px !important;
    }

    .cid-v6o29xD10f .dropdown-menu.dropdown-submenu {
        left: 215px !important;
        top: -45% !important;
    }
}

@media (max-width: 991px) {

    .cid-v6o29xD10f .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
    .cid-v6o29xD10f .link.dropdown-toggle::after {
        display: inline-block;
        width: 7px;
        height: 7px;
        margin-left: 0.5rem;
        margin-bottom: 2px;
        content: "";
        border: 2px solid;
        border-left: none;
        border-top: none;
        transform: rotate(-45deg);
        right: 15px;
        position: absolute;
        margin-top: -2px;
    }

    .cid-v6o29xD10f .show.dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(45deg);
        margin-top: -4px;
    }

    .cid-v6o29xD10f .offcanvas_box {
        display: none;
    }
}

.cid-v6o29xD10f .dropdown-item {
    border: none;
    font-weight: 300 !important;
}

.cid-v6o29xD10f .nav-dropdown .link {
    font-weight: 400 !important;
    padding: 0 !important;
    margin: 0 !important;
}

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

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

.cid-v6o29xD10f .iconfont-wrapper {
    color: #f9f6e0;
    font-size: 17px;
    margin-right: 10px;
    margin-bottom: 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.cid-v6o29xD10f .iconfont-wrapper:last-child {
    margin-right: 0;
}

.cid-v6o29xD10f .iconfont-wrapper:hover {
    opacity: 0.5;
}

.cid-v6o29xD10f .navbar-nav {
    margin: 0 1rem;
}

@media (min-width: 992px) {
    .cid-v6o29xD10f .navbar-nav {
        margin: 0;
    }
}

.cid-v6o29xD10f .dropdown-menu,
.cid-v6o29xD10f .navbar.opened {
    background-color: false !important;
}

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

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

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

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

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

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

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

.cid-v6o29xD10f .navbar {
    min-height: 70px;
    padding: 20px 0;
    transition: all 0.3s;
    border-bottom-width: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xD10f .navbar {
        min-height: 30px;
        max-height: none;
    }
}

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

.cid-v6o29xD10f .navbar .dropdown-item {
    padding: 0;
    margin: 8px 0;
}

.cid-v6o29xD10f .navbar .navbar-logo img {
    width: auto;
    object-fit: contain;
    border-radius: 0 !important;
}

.cid-v6o29xD10f .navbar .navbar-collapse {
    width: 100%;
    justify-content: center;
    z-index: 1;
}

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

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

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

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

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

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

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

.cid-v6o29xD10f .navbar.collapsed .icons-menu {
    padding: 0;
}

@media (max-width: 991px) {
    .cid-v6o29xD10f .navbar .nav-item {
        padding: 0.5rem 0;
    }

    .cid-v6o29xD10f .navbar .navbar-collapse {
        padding: 34px 0;
        border-radius: 25px;
    }

    .cid-v6o29xD10f .mbr-section-btn-main .btn {
        border: none;
        margin: auto;
        display: block;
        padding: 10px 15px;
        width: fit-content;
        text-wrap: nowrap;
    }

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

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

    .cid-v6o29xD10f .navbar .dropdown-menu {
        padding: 6px 0 6px 15px;
    }

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

    .cid-v6o29xD10f .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
        margin-top: -0.4rem;
    }

    .cid-v6o29xD10f .navbar .navbar-logo img {
        height: 4.5rem !important;
    }

    .cid-v6o29xD10f .navbar ul.navbar-nav {
        overflow: hidden;
    }

    .cid-v6o29xD10f .navbar ul.navbar-nav li {
        margin: 0;
    }

    .cid-v6o29xD10f .navbar .dropdown-menu .dropdown-item {
        padding: 0 !important;
        margin: 0;
        margin-top: 8px;
        text-align: left;
    }

    .cid-v6o29xD10f .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 0;
        width: 100%;
        justify-content: space-between;
    }

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

    .cid-v6o29xD10f .navbar .icons-menu {
        padding: 0;
    }
}

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

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

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

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

.cid-v6o29xD10f .navbar-brand .navbar-caption {
    line-height: inherit !important;
    font-weight: 400;
}

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

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

.cid-v6o29xD10f .navbar-expand-lg .navbar-nav .nav-link {
    padding: 2px 10px !important;
}

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

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

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

.cid-v6o29xD10f ul.navbar-nav {
    flex-wrap: wrap;
    padding: 0;
}

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

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

.cid-v6o29xD10f button.navbar-toggler .hamburger span {
    position: absolute;
    right: 10px;
    margin-top: 14px;
    width: 26px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

.cid-v6o29xD10f .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding: 0;
    text-align: center;
    margin-bottom: 35px;
}

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

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

}

.cid-v6o29xD10f .navbar-dropdown .navbar-logo {
    margin-right: 15px;
}

@media (min-width: 768px) {
    .cid-v6o29xD10f .container-fluid {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.cid-v6o29xD10f .mbr-section-btn-main .btn {
    border: none;
    margin: auto;
    display: block;
    padding: 12px 20px; 
    text-wrap: nowrap;
}

.cid-v6o29xD10f .navbar-caption:hover {
    color: #e2efd8;
}

@media (min-width: 992px) {
    .cid-v6o29xD10f .dropdown-menu.dropdown-submenu {
        left: 175px !important;
        top: -45% !important;
    }
}

.cid-v6o29xD10f .text_widget {
    margin-bottom: 32px;
}

.cid-v6o29xD10f .text_widget a {
    transition: all 0.3s ease-out;
}

.cid-v6o29xD10f .text_widget a:hover,
.cid-v6o29xD10f .text_widget a:focus {
    opacity: 0.6;
}

.cid-v6o29xD10f .mbr-section-subtitle {
    color: #F9F6E0;
    text-align: center;
}

.cid-v6o29xD10f .navbar-caption {
    color: #FFFFFF;
}

.cid-v6o29xD10f .mbr-text {
    color: #F9F6E0;
    text-align: center;
}

.cid-v6o29xD10f .mbr-section-subtitle,
.cid-v6o29xD10f .text_widget,
.cid-v6o29xD10f .mbr-section-btn {
    text-align: center;
}

.cid-v6o29xD10f a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
    background-image: none;
}

.cid-v6o29xD10f .nav-link,
.cid-v6o29xD10f .dropdown-item {
    color: #FFFFFF;
}

.cid-v6o29xEAio {
    padding-top: 11rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xEAio .container {
        padding: 0 24px;
    }
}

.cid-v6o29xEAio .image-wrapper {
    padding-right: 80px;
}

@media (max-width: 992px) {
    .cid-v6o29xEAio .image-wrapper {
        padding: 0;
        margin-bottom: 40px;
    }
}

.cid-v6o29xEAio .image-wrapper img {
    height: 600px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-v6o29xEAio .image-wrapper img {
        height: 350px;
    }
}

.cid-v6o29xEAio .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

.cid-v6o29xEAio .content-wrapper .mbr-text {
    margin-bottom: 0;
}

.cid-v6o29xEAio .content-wrapper .mbr-desc {
    margin: 32px 0 0;
}

@media (max-width: 992px) {
    .cid-v6o29xEAio .content-wrapper .mbr-desc {
        margin: 24px 0 0;
    }
}

.cid-v6o29xEAio .content-wrapper .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xEAio .content-wrapper .mbr-section-btn {
        margin-top: 24px;
    }
}

.cid-v6o29xEAio .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xEAio .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xEAio .mbr-desc {
    color: #E2EFD8;
}

.cid-v6o29xEAio .mbr-section-title,
.cid-v6o29xEAio .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xEAzN {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

.cid-v6o29xEAzN .mbr-overlay {
    background: #22090b;
    opacity: 0.4;
}

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

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

.cid-v6o29xEAzN .container-fluid {
    padding: 0;
}

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xEAzN .container {
        padding: 0 24px;
    }
}

.cid-v6o29xEAzN .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 570px;
    max-width: 570px;
}

@media (max-width: 767px) {
    .cid-v6o29xEAzN .embla__slide {
        min-width: 100%;
        max-width: 100%;
    }
}

.cid-v6o29xEAzN .embla__slide .slide-content {
    width: 100%;
}

.cid-v6o29xEAzN .embla__slide .slide-content .item-wrapper {
    border-radius: 0.5rem !important;
    position: relative;
    overflow: hidden;
}

.cid-v6o29xEAzN .embla__slide .slide-content .item-wrapper .item-img {
    position: relative;
    z-index: 1;
}

.cid-v6o29xEAzN .embla__slide .slide-content .item-wrapper .item-img img {
    height: 400px;
    object-fit: cover;
}

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

.cid-v6o29xEAzN .embla__button {
    bottom: 0;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 21px;
    background-color: #bca88e !important;
    color: #30d98b;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    display: flex;
}

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

.cid-v6o29xEAzN .embla__button:hover {
    opacity: 0.85 !important;
    color: #9da993 !important;
}

.cid-v6o29xEAzN .embla__button.embla__button--prev {
    left: 32px;
}

.cid-v6o29xEAzN .embla__button.embla__button--next {
    right: 32px;
}

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

.cid-v6o29xEAzN .embla__viewport {
    overflow: hidden;
    width: 100%;
    margin-right: 1rem;
}

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

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

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

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

.cid-v6o29xE7V9 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-image: url("/assets/images/background3.jpg?rnd=1766661124633");
}

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xE7V9 .container {
        padding: 0 24px;
    }
}

.cid-v6o29xESEQ {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    overflow: hidden;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

.cid-v6o29xESEQ .mbr-overlay {
    background: #22090b;
    opacity: 0.4;
}

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

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

.cid-v6o29xESEQ .container-fluid {
    padding: 0 32px;
}

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xESEQ .container {
        padding: 0 24px;
    }
}

.cid-v6o29xESEQ .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 465px;
    max-width: 465px;
}

@media (max-width: 767px) {
    .cid-v6o29xESEQ .embla__slide {
        min-width: 100%;
        max-width: 100%;
    }
}

.cid-v6o29xESEQ .embla__slide .slide-content {
    width: 100%;
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 0.5rem !important;
    height: 100%;
}

@media (max-width: 992px) {
    .cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper {
        padding: 24px;
    }
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-color: #fcf8f8;
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper .item-content {
    position: relative;
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper .item-content .rating-wrapper {
    margin-bottom: 8px;
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper .item-content .rating-wrapper .list {
    display: inline-flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper .item-content .rating-wrapper .list .item-wrap {
    margin: 0 8px 0 0;
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper .item-content .item-title {
    margin-bottom: 8px;
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper .item-content .mbr-name {
    margin-bottom: 8px;
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper .item-content .mbr-text {
    margin-bottom: 0;
}

.cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper .item-content .mbr-number {
    margin: 32px 0 0 0;
}

@media (max-width: 992px) {
    .cid-v6o29xESEQ .embla__slide .slide-content .item-wrapper .item-content .mbr-number {
        margin: 24px 0 0 0;
    }
}

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

.cid-v6o29xESEQ .embla__button {
    bottom: 1rem;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 21px;
    background-color: #bca88e !important;
    color: #30d98b;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    display: none;
}

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

.cid-v6o29xESEQ .embla__button:hover {
    opacity: 0.85 !important;
    color: #9da993 !important;
}

.cid-v6o29xESEQ .embla__button.embla__button--prev {
    left: 32px;
}

.cid-v6o29xESEQ .embla__button.embla__button--next {
    right: 32px;
}

.cid-v6o29xESEQ .embla {
    position: relative;
    width: 100%;
    padding: 32px;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

@media (max-width: 767px) {
    .cid-v6o29xESEQ .embla {
        padding: 24px 0;
    }
}

.cid-v6o29xESEQ .embla__viewport {
    overflow: hidden;
    width: 100%;
    margin-right: 1rem;
}

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

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

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

.cid-v6o29xESEQ .list {
    color: #8AA29E;
}

.cid-v6o29xESEQ .item-title {
    color: #F9F6E0;
}

.cid-v6o29xESEQ .mbr-name {
    color: #E2EFD8;
}

.cid-v6o29xESEQ .item-text {
    color: #FFFFFF;
}

.cid-v6o29xESEQ .mbr-number {
    color: #E0B548;
}

.cid-v6o29xESEQ .list,
.cid-v6o29xESEQ .item-wrap {
    color: #E2EFD8;
}

.cid-v6o29xESEQ .item-title,
.cid-v6o29xESEQ .rating-wrapper {
    color: #FFFFFF;
}

.cid-v6o29xEtTp {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

.cid-v6o29xEtTp .mbr-overlay {
    background: #22090b;
    opacity: 0.4;
}

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

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

.cid-v6o29xEtTp .container-fluid {
    padding: 0 32px;
}

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xEtTp .container {
        padding: 0 24px;
    }
}

.cid-v6o29xEtTp .embla__slide {
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 460px;
    max-width: 460px;
    border-right: 1px solid #ffffff;
    padding: 0 32px;
}

.cid-v6o29xEtTp .embla__slide:last-child {
    border-right: none;
}

@media (max-width: 767px) {
    .cid-v6o29xEtTp .embla__slide {
        min-width: 100%;
        max-width: 100%;
        border: none;
        padding: 0 24px;
    }
}

.cid-v6o29xEtTp .embla__slide .slide-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.cid-v6o29xEtTp .embla__slide .slide-content:hover .item-wrapper .item-img,
.cid-v6o29xEtTp .embla__slide .slide-content:focus .item-wrapper .item-img {
    min-height: 520px;
}

@media (max-width: 767px) {

    .cid-v6o29xEtTp .embla__slide .slide-content:hover .item-wrapper .item-img,
    .cid-v6o29xEtTp .embla__slide .slide-content:focus .item-wrapper .item-img {
        min-height: 400px;
    }
}

.cid-v6o29xEtTp .embla__slide .slide-content:hover .item-wrapper .item-content .item-text,
.cid-v6o29xEtTp .embla__slide .slide-content:focus .item-wrapper .item-content .item-text {
    transform: translateY(0);
    height: auto;
    opacity: 1;
}

.cid-v6o29xEtTp .embla__slide .slide-content:hover .btn-wrap,
.cid-v6o29xEtTp .embla__slide .slide-content:focus .btn-wrap {
    margin-top: 0;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-img {
    overflow: hidden;
    position: relative;
    z-index: 1;
    min-height: 550px;
    margin-bottom: 32px;
    transition: all 0.3s ease-in-out;
    border-radius: 0.5rem;
}

@media (max-width: 767px) {
    .cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-img {
        min-height: 400px;
        margin-bottom: 24px;
    }
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-img img {
    transform: scale(1.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-img .list-wrapper {
    display: block;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 12px;
    list-style-type: none;
    display: inline-flex;
    flex-direction: column;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap {
    background-color: #fcf8f8;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 8px;
    width: fit-content;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap:last-child {
    margin-bottom: 0;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid #ffffff;
    padding-top: 32px;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-content .mbr-date {
    margin-bottom: 0;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-content .title-wrap {
    display: block;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-content .title-wrap:hover .item-title,
.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-content .title-wrap:focus .item-title {
    color: #e2efd8;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
    transition: all 0.3s ease-in-out;
    margin-bottom: 16px;
}

.cid-v6o29xEtTp .embla__slide .slide-content .item-wrapper .item-content .item-text {
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
    opacity: 0;
}

.cid-v6o29xEtTp .embla__slide .slide-content .btn-wrap {
    margin-top: -3rem;
    transition: all 0.3s ease-in-out;
}

.cid-v6o29xEtTp .embla__slide .slide-content .btn-wrap .mbr-section-btn {
    margin-top: 24px;
    z-index: 1;
}

.cid-v6o29xEtTp .embla__slide .slide-content .btn-wrap .mbr-number {
    margin: 16px 0 0 0;
}

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

.cid-v6o29xEtTp .embla__button {
    bottom: 1rem;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 21px;
    background-color: #bca88e !important;
    color: #30d98b;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    display: none;
}

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

.cid-v6o29xEtTp .embla__button:hover {
    opacity: 0.85 !important;
    color: #9da993 !important;
}

.cid-v6o29xEtTp .embla__button.embla__button--prev {
    left: 32px;
}

.cid-v6o29xEtTp .embla__button.embla__button--next {
    right: 32px;
}

.cid-v6o29xEtTp .embla {
    position: relative;
    width: 100%;
    padding: 32px 0;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

@media (max-width: 767px) {
    .cid-v6o29xEtTp .embla {
        padding: 24px 0;
    }
}

.cid-v6o29xEtTp .embla__viewport {
    overflow: hidden;
    width: 100%;
    margin-right: 1rem;
}

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

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

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

.cid-v6o29xEtTp .list {
    color: #000000;
}

.cid-v6o29xEtTp .mbr-date {
    color: #FFFFFF;
}

.cid-v6o29xEtTp .item-title {
    color: #F9F6E0;
}

.cid-v6o29xEtTp .item-text {
    color: #FFFFFF;
}

.cid-v6o29xEtTp .mbr-number {
    color: #E2EFD8;
}

.cid-v6o29xEtTp .list,
.cid-v6o29xEtTp .item-wrap,
.cid-v6o29xEtTp .list-wrapper {
    color: #000000;
}

.cid-v6o29xEtTp .item-title,
.cid-v6o29xEtTp .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xFZft {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    overflow: hidden;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xFZft .container {
        padding: 0 24px;
    }
}

.cid-v6o29xFZft .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xFZft .title-wrapper .mbr-section-title {
        margin-bottom: 24px;
    }
}

.cid-v6o29xFZft .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xGwxp {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xGwxp .container {
        padding: 0 24px;
    }
}

.cid-v6o29xGwxp .row .card {
    padding: 0;
    border-radius: 0 !important;
}

.cid-v6o29xGwxp .row .card:nth-child(2) {
    border-left: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xGwxp .row .card:nth-child(2) {
        margin-bottom: 64px;
    }
}

@media (max-width: 992px) {
    .cid-v6o29xGwxp .row .card {
        padding: 0 16px;
        border: none !important;
    }
}

.cid-v6o29xGwxp .title-wrap {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .cid-v6o29xGwxp .title-wrap {
        display: block;
    }
}

.cid-v6o29xGwxp .title-wrap .mbr-section-title {
    padding: 32px;
    writing-mode: tb;
    transform: rotate(180deg);
    margin: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xGwxp .title-wrap .mbr-section-title {
        transform: rotate(0);
        writing-mode: horizontal-tb;
        padding: 24px;
        border-left: 1px solid #ffffff;
        text-align: left;
    }
}

.cid-v6o29xGwxp .google-map {
    padding: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xGwxp .google-map {
        padding: 24px;
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
    }
}

.cid-v6o29xGwxp .google-map iframe {
    border-radius: 0.5rem !important;
    height: 500px;
    filter: grayscale(100%);
}

@media (max-width: 992px) {
    .cid-v6o29xGwxp .google-map iframe {
        height: 350px;
    }
}

.cid-v6o29xGwxp .mbr-section-title {
    color: #E2EFD8;
    text-align: center;
}

.cid-v6o29xGeLA {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

.cid-v6o29xGeLA .mbr-overlay {
    background: #22090b;
    opacity: 0.4;
}

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xGeLA .container {
        padding: 0 24px;
    }
}

.cid-v6o29xGeLA .card {
    justify-content: center;
}

@media (max-width: 992px) {
    .cid-v6o29xGeLA .title-wrapper {
        margin-bottom: 24px;
    }
}

.cid-v6o29xGeLA .title-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

.cid-v6o29xGeLA .title-wrapper .mbr-text {
    margin-bottom: 0;
}

.cid-v6o29xGeLA .mbr-section-btn {
    text-align: right;
}

@media (max-width: 992px) {
    .cid-v6o29xGeLA .mbr-section-btn {
        text-align: left;
    }
}

.cid-v6o29xGeLA .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xGeLA .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xGeLA .mbr-section-title,
.cid-v6o29xGeLA .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xHarx {
    padding-top: 11rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xHarx .container {
        padding: 0 24px;
    }
}

.cid-v6o29xHarx .image-wrapper {
    padding-right: 80px;
}

@media (max-width: 992px) {
    .cid-v6o29xHarx .image-wrapper {
        padding: 0;
        margin-bottom: 40px;
    }
}

.cid-v6o29xHarx .image-wrapper img {
    height: 600px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-v6o29xHarx .image-wrapper img {
        height: 350px;
    }
}

.cid-v6o29xHarx .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

.cid-v6o29xHarx .content-wrapper .mbr-text {
    margin-bottom: 0;
}

.cid-v6o29xHarx .content-wrapper .mbr-desc {
    margin: 32px 0 0;
}

@media (max-width: 992px) {
    .cid-v6o29xHarx .content-wrapper .mbr-desc {
        margin: 24px 0 0;
    }
}

.cid-v6o29xHarx .content-wrapper .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xHarx .content-wrapper .mbr-section-btn {
        margin-top: 24px;
    }
}

.cid-v6o29xHarx .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xHarx .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xHarx .mbr-desc {
    color: #E2EFD8;
}

.cid-v6o29xHarx .mbr-section-title,
.cid-v6o29xHarx .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xIcmx {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xIcmx .container {
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .cid-v6o29xIcmx .row {
        margin: 0;
    }
}

.cid-v6o29xIcmx .row .card {
    padding: 0;
    border-radius: 0 !important;
}

.cid-v6o29xIcmx .row .card:nth-child(2) {
    border-left: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xIcmx .row .card:nth-child(2) {
        margin-bottom: 64px;
    }
}

.cid-v6o29xIcmx .row .card:nth-child(3) {
    border-top: 1px solid #ffffff;
}

.cid-v6o29xIcmx .row .card:nth-child(4) {
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xIcmx .row .card {
        height: 350px;
        padding: 0 16px;
        border: none !important;
    }
}

.cid-v6o29xIcmx .subtitle-wrap {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .cid-v6o29xIcmx .subtitle-wrap {
        display: block;
    }
}

.cid-v6o29xIcmx .subtitle-wrap .mbr-section-subtitle {
    padding: 32px;
    writing-mode: tb;
    transform: rotate(180deg);
    margin: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xIcmx .subtitle-wrap .mbr-section-subtitle {
        transform: rotate(0);
        writing-mode: horizontal-tb;
        padding: 24px;
        border-left: 1px solid #ffffff;
        text-align: left;
    }
}

.cid-v6o29xIcmx .content-wrapper {
    padding: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xIcmx .content-wrapper {
        padding: 24px;
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
    }
}

.cid-v6o29xIcmx .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

.cid-v6o29xIcmx .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xIcmx .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xIcmx .content-wrapper .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xIcmx .content-wrapper .mbr-section-btn {
        text-align: left;
        margin-top: 24px;
    }
}

.cid-v6o29xIcmx .content-wrapper .list {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xIcmx .content-wrapper .list {
        margin-top: 24px;
    }
}

.cid-v6o29xIcmx .content-wrapper .list .item {
    margin-bottom: 24px;
}

.cid-v6o29xIcmx .content-wrapper .list .item .item-wrapper .card-box .title-wrapper {
    display: inline-flex;
    align-items: center;
}

.cid-v6o29xIcmx .content-wrapper .list .item .item-wrapper .card-box .title-wrapper .card-number {
    margin: 0 24px 0 0;
    color: transparent;
    -webkit-text-stroke: 1px #e2efd8;
    -webkit-background-clip: text;
}

.cid-v6o29xIcmx .content-wrapper .list .item .item-wrapper .card-box .title-wrapper .card-title {
    margin-bottom: 0;
}

.cid-v6o29xIcmx .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xIcmx .mbr-section-subtitle {
    color: #E2EFD8;
    text-align: center;
}

.cid-v6o29xIcmx .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xIcmx .card-text {
    color: #F9F6E0;
}

.cid-v6o29xIcmx .mbr-section-title,
.cid-v6o29xIcmx .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xIcmx .card-text,
.cid-v6o29xIcmx .card-box {
    color: #FFFFFF;
}

.cid-v6o29xICnZ {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xICnZ .container {
        padding: 0 24px;
    }
}

.cid-v6o29xICnZ .row {
    border-top: 1px solid #ffffff;
}

@media (min-width: 992px) {
    .cid-v6o29xICnZ .row {
        margin: 0;
    }
}

.cid-v6o29xICnZ .row:first-child {
    border-top: none;
}

@media (max-width: 992px) {
    .cid-v6o29xICnZ .row {
        border: none;
    }
}

.cid-v6o29xICnZ .row .card {
    height: 350px;
    padding: 0;
    border-radius: 0 !important;
}

.cid-v6o29xICnZ .row .card:nth-child(2) {
    border-left: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xICnZ .row .card:nth-child(2) {
        margin-bottom: 64px;
    }
}

@media (max-width: 992px) {
    .cid-v6o29xICnZ .row .card {
        padding: 0 16px;
        border: none !important;
    }
}

.cid-v6o29xICnZ .subtitle-wrap {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .cid-v6o29xICnZ .subtitle-wrap {
        display: block;
    }
}

.cid-v6o29xICnZ .subtitle-wrap .mbr-section-subtitle {
    padding: 32px;
    writing-mode: tb;
    transform: rotate(180deg);
    margin: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xICnZ .subtitle-wrap .mbr-section-subtitle {
        transform: rotate(0);
        writing-mode: horizontal-tb;
        padding: 24px;
        border-left: 1px solid #ffffff;
        text-align: left;
    }
}

.cid-v6o29xICnZ .content-wrapper {
    padding: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xICnZ .content-wrapper {
        padding: 24px;
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
    }
}

.cid-v6o29xICnZ .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

.cid-v6o29xICnZ .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xICnZ .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xICnZ .content-wrapper .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xICnZ .content-wrapper .mbr-section-btn {
        text-align: left;
        margin-top: 24px;
    }
}

.cid-v6o29xICnZ .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xICnZ .mbr-section-subtitle {
    color: #E2EFD8;
    text-align: center;
}

.cid-v6o29xICnZ .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xICnZ .mbr-section-title,
.cid-v6o29xICnZ .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xIgJ1 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

.cid-v6o29xIgJ1 .mbr-overlay {
    background: #22090b;
    opacity: 0.4;
}

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

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

.cid-v6o29xIgJ1 .grid-container {
    grid-row-gap: 2rem;
}

@media (max-width: 767px) {
    .cid-v6o29xIgJ1 .grid-container {
        grid-row-gap: 1rem;
    }
}

.cid-v6o29xIgJ1 .grid-container-1,
.cid-v6o29xIgJ1 .grid-container-2,
.cid-v6o29xIgJ1 .grid-container-3 {
    gap: 0 2rem;
}

@media (max-width: 767px) {

    .cid-v6o29xIgJ1 .grid-container-1,
    .cid-v6o29xIgJ1 .grid-container-2,
    .cid-v6o29xIgJ1 .grid-container-3 {
        gap: 0 1rem;
    }
}

.cid-v6o29xIgJ1 .mbr-section-title {
    margin-bottom: 32px;
    color: #F9F6E0;
    text-align: center;
}

@media (min-width: 992px) {
    .cid-v6o29xIgJ1 .mbr-section-title {
        margin-bottom: 24px;
    }
}

.cid-v6o29xIgJ1 .content-head {
    max-width: 800px;
}

.cid-v6o29xIgJ1 .container,
.cid-v6o29xIgJ1 .container-fluid {
    overflow: hidden;
}

.cid-v6o29xIgJ1 .grid-container {
    display: grid;
    transform: translate3d(-3rem, 0, 0);
    width: 115vw;
    grid-column-gap: 1rem;
}

.cid-v6o29xIgJ1 .grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem !important;
    position: relative;
    overflow: hidden;
    min-width: 30vw;
    max-width: 100%;
}

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

@media (max-width: 1200px) {
    .cid-v6o29xIgJ1 .grid-item img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .cid-v6o29xIgJ1 .grid-item img {
        min-width: 35vw;
        height: 160px;
    }
}

.cid-v6o29xIgJ1 .grid-container-1,
.cid-v6o29xIgJ1 .grid-container-2,
.cid-v6o29xIgJ1 .grid-container-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
}

.cid-v6o29xIgJ1 .grid-container-1 {
    align-items: flex-end;
}

.cid-v6o29xIgJ1 .grid-container-2 {
    align-items: flex-start;
}

.cid-v6o29xIGTc {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

.cid-v6o29xIGTc .container-fluid {
    padding: 0;
}

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xIGTc .container {
        padding: 0 24px;
    }
}

.cid-v6o29xIGTc .items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cid-v6o29xIGTc .items .item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    margin-left: -1rem;
    border: 1px solid #ffffff;
    border-radius: 100%;
}

@media (max-width: 768px) {
    .cid-v6o29xIGTc .items .item {
        width: 245px;
        height: 245px;
        margin: -1rem 0 0 0;
    }
}

.cid-v6o29xIGTc .items .item:first-child {
    margin-left: 0;
}

.cid-v6o29xIGTc .items .item .item-wrapper .card-box .title-wrapper {
    padding: 0 24px;
}

.cid-v6o29xIGTc .items .item .item-wrapper .card-box .title-wrapper .card-number {
    margin-bottom: 20px;
}

.cid-v6o29xIGTc .items .item .item-wrapper .card-box .title-wrapper .card-title {
    margin-bottom: 0;
}

.cid-v6o29xIGTc .card-number {
    color: #8AA29E;
    text-align: center;
}

.cid-v6o29xIGTc .card-title {
    color: #F9F6E0;
    text-align: center;
}

.cid-v6o29xIGTc .card-number,
.cid-v6o29xIGTc .title-wrapper {
    color: #FFFFFF;
}

.cid-v6o29xIGTc .card-title,
.cid-v6o29xIGTc .title-wrapper {
    color: #FFFFFF;
}

.cid-v6o29xITGQ {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xITGQ .container {
        padding: 0 24px;
    }
}

.cid-v6o29xITGQ .content-wrapper {
    padding: 0px;
}

@media (max-width: 992px) {
    .cid-v6o29xITGQ .content-wrapper {
        padding: 0 24px 24px;
    }
}

.cid-v6o29xITGQ .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

.cid-v6o29xITGQ .content-wrapper .mbr-text {
    margin-bottom: 0;
}

.cid-v6o29xITGQ .items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 992px) {
    .cid-v6o29xITGQ .items {
        display: block;
    }
}

.cid-v6o29xITGQ .item {
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    padding: 32px;
}

.cid-v6o29xITGQ .item:nth-child(3n) {
    border-right: none;
}

@media (max-width: 992px) {
    .cid-v6o29xITGQ .item {
        padding: 24px;
        border-right: none;
        border-left: 1px solid #ffffff;
    }
}

.cid-v6o29xITGQ .item:hover .item-wrapper .item-img img,
.cid-v6o29xITGQ .item:focus .item-wrapper .item-img img {
    transform: scale(1.1);
}

.cid-v6o29xITGQ .item:hover .item-wrapper .item-img .item-content,
.cid-v6o29xITGQ .item:focus .item-wrapper .item-img .item-content {
    transform: translateY(0);
}

.cid-v6o29xITGQ .item .item-wrapper .item-img {
    height: 450px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

@media (max-width: 992px) {
    .cid-v6o29xITGQ .item .item-wrapper .item-img {
        height: 400px;
    }
}

.cid-v6o29xITGQ .item .item-wrapper .item-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.cid-v6o29xITGQ .item .item-wrapper .item-img .item-content {
    position: relative;
    padding: 32px;
    transform: translateY(100%);
    width: 100%;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .cid-v6o29xITGQ .item .item-wrapper .item-img .item-content {
        padding: 24px;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cid-v6o29xITGQ .item .item-wrapper .item-img .item-content {
        transform: translateY(0);
    }
}

.cid-v6o29xITGQ .item .item-wrapper .item-img .item-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-color: #22090b;
}

.cid-v6o29xITGQ .item .item-wrapper .item-img .item-content a {
    position: relative;
    display: block;
}

.cid-v6o29xITGQ .item .item-wrapper .item-img .item-content a:hover .card-name,
.cid-v6o29xITGQ .item .item-wrapper .item-img .item-content a:focus .card-name {
    color: #e2efd8;
}

.cid-v6o29xITGQ .item .item-wrapper .item-img .item-content a .card-name {
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
}

.cid-v6o29xITGQ .item .item-wrapper .item-img .item-content .card-subtitle {
    position: relative;
    margin-bottom: 8px;
}

.cid-v6o29xITGQ .item .item-wrapper .item-img .item-content .card-text {
    position: relative;
    margin-bottom: 0;
}

.cid-v6o29xITGQ .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xITGQ .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xITGQ .card-name {
    color: #FFFFFF;
    text-align: center;
}

.cid-v6o29xITGQ .card-subtitle {
    color: #FFFFFF;
    text-align: center;
}

.cid-v6o29xITGQ .card-text {
    color: #FFFFFF;
    text-align: center;
}

.cid-v6o29xITGQ .mbr-section-title,
.cid-v6o29xITGQ .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xJaD1 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xJaD1 .container {
        padding: 0 24px;
    }
}

.cid-v6o29xJaD1 .row {
    border-top: 1px solid #ffffff;
}

@media (min-width: 992px) {
    .cid-v6o29xJaD1 .row {
        margin: 0;
    }
}

@media (max-width: 992px) {
    .cid-v6o29xJaD1 .row {
        border: none;
    }
}

.cid-v6o29xJaD1 .row .card {
    padding: 0;
    border-radius: 0 !important;
}

@media (max-width: 992px) {
    .cid-v6o29xJaD1 .row .card {
        padding: 0 16px;
    }
}

.cid-v6o29xJaD1 .content-wrapper {
    padding: 32px;
    position: sticky;
    top: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xJaD1 .content-wrapper {
        padding: 24px;
    }
}

.cid-v6o29xJaD1 .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .cid-v6o29xJaD1 .content-wrapper .mbr-section-title {
        text-align: left;
    }
}

.cid-v6o29xJaD1 .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xJaD1 .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xJaD1 .content-wrapper .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xJaD1 .content-wrapper .mbr-section-btn {
        text-align: left;
        margin-top: 24px;
    }
}

.cid-v6o29xJaD1 .panel-group .card {
    padding: 32px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-radius: 0 !important;
}

.cid-v6o29xJaD1 .panel-group .card:first-child {
    border-top: none;
}

@media (max-width: 992px) {
    .cid-v6o29xJaD1 .panel-group .card:first-child {
        border-top: 1px solid #ffffff;
    }
}

@media (max-width: 992px) {
    .cid-v6o29xJaD1 .panel-group .card {
        padding: 24px;
        border-left: none;
    }
}

.cid-v6o29xJaD1 .panel-group .card .card-header {
    padding: 0;
    border: none;
    background-color: transparent;
}

.cid-v6o29xJaD1 .panel-group .card .card-header .panel-title {
    display: block;
}

.cid-v6o29xJaD1 .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
    display: inline;
    padding-left: 24px;
    border-left: 1px solid #e2efd8;
}

.cid-v6o29xJaD1 .panel-group .card .card-header .panel-title .panel-title-edit {
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.cid-v6o29xJaD1 .panel-group .card .panel-collapse .panel-body {
    padding-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xJaD1 .panel-group .card .panel-collapse .panel-body {
        padding-top: 24px;
    }
}

.cid-v6o29xJaD1 .panel-group .card .panel-collapse .panel-body .panel-text {
    margin-bottom: 0;
}

.cid-v6o29xJaD1 .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xJaD1 .mbr-text {
    color: #FFFFFF;
    text-align: right;
}

.cid-v6o29xJaD1 .panel-title-edit {
    color: #E0B548;
}

.cid-v6o29xJaD1 .panel-text {
    color: #FFFFFF;
}

.cid-v6o29xJaD1 .mbr-section-title,
.cid-v6o29xJaD1 .mbr-section-btn {
    text-align: right;
    color: #FFFFFF;
}

.cid-v6o29xJaD1 .panel-title-edit,
.cid-v6o29xJaD1 .panel-title {
    color: #E2EFD8;
}

.cid-v6o29xJrvx {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xJrvx .container {
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .cid-v6o29xJrvx .row {
        margin: 0;
    }
}

.cid-v6o29xJrvx .row .card {
    border-top: 1px solid #ffffff;
    padding: 0;
    border-radius: 0 !important;
}

@media (max-width: 992px) {
    .cid-v6o29xJrvx .row .card {
        padding: 0 16px;
        border: none;
    }
}

.cid-v6o29xJrvx .image-wrapper {
    padding: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xJrvx .image-wrapper {
        padding: 24px;
    }
}

.cid-v6o29xJrvx .image-wrapper img {
    height: 400px;
    object-fit: cover;
}

.cid-v6o29xJrvx .image-wrapper img:first-child {
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xJrvx .image-wrapper img:first-child {
        margin-bottom: 24px;
    }
}

@media (max-width: 992px) {
    .cid-v6o29xJrvx .image-wrapper img {
        height: 350px;
    }
}

.cid-v6o29xJrvx .main-image-wrapper {
    border-left: 1px solid #ffffff;
    padding: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xJrvx .main-image-wrapper {
        padding: 24px;
        border-top: 1px solid #ffffff;
    }
}

.cid-v6o29xJrvx .main-image-wrapper img {
    height: 832px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-v6o29xJrvx .main-image-wrapper img {
        height: 400px;
    }
}

.cid-v6o29xJOAE {
    padding-top: 11rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xJOAE .container {
        padding: 0 24px;
    }
}

.cid-v6o29xJOAE .content-wrapper {
    padding: 32px;
    border-bottom: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xJOAE .content-wrapper {
        padding: 24px;
    }
}

.cid-v6o29xJOAE .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

.cid-v6o29xJOAE .content-wrapper .mbr-text {
    margin-bottom: 0;
}

.cid-v6o29xJOAE .content-wrapper .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xJOAE .content-wrapper .mbr-section-btn {
        margin-top: 24px;
    }
}

.cid-v6o29xJOAE .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xJOAE .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xJOAE .mbr-section-title,
.cid-v6o29xJOAE .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xJtk3 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xJtk3 .container {
        padding: 0 24px;
    }
}

.cid-v6o29xJtk3 .row {
    margin: 0;
}

.cid-v6o29xJtk3 .item {
    padding: 32px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-radius: 0 !important;
}

.cid-v6o29xJtk3 .item:nth-child(3n) {
    border-right: none;
}

@media (max-width: 992px) {
    .cid-v6o29xJtk3 .item {
        padding: 24px;
        border-right: none;
        border-left: 1px solid #ffffff;
    }
}

.cid-v6o29xJtk3 .item .item-wrapper .item-img {
    display: block;
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xJtk3 .item .item-wrapper .item-img {
        margin-bottom: 24px;
    }
}

.cid-v6o29xJtk3 .item .item-wrapper .item-img:hover img,
.cid-v6o29xJtk3 .item .item-wrapper .item-img:focus img {
    transform: scale(0.95);
}

.cid-v6o29xJtk3 .item .item-wrapper .item-img img {
    height: 730px;
    transition: all 0.3s ease-in-out;
    height: 400px;
    object-fit: cover;
    object-position: 50% top;
}

@media (max-width: 992px) {
    .cid-v6o29xJtk3 .item .item-wrapper .item-img img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .cid-v6o29xJtk3 .item .item-wrapper .item-img img {
        max-height: 350px;
    }
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .card-title {
    margin-bottom: 0;
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .title-wrap {
    display: block;
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .title-wrap:hover .card-price,
.cid-v6o29xJtk3 .item .item-wrapper .item-content .title-wrap:focus .card-price {
    color: #e2efd8;
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .title-wrap .card-price {
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .list-wrapper .card-list-title {
    margin-bottom: 8px;
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .list-wrapper .list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .list-wrapper .list .item-wrap {
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .list-wrapper .list .item-wrap::before {
    content: '';
    background-color: #e2efd8;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 45%;
    left: 12px;
    transition: all 0.3s ease-in-out;
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .card-desc {
    margin-bottom: 0;
}

.cid-v6o29xJtk3 .item .item-wrapper .item-content .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xJtk3 .item .item-wrapper .item-content .mbr-section-btn {
        margin-top: 24px;
    }
}

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

.cid-v6o29xJtk3 .card-price {
    color: #FFFFFF;
}

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

.cid-v6o29xJtk3 .list {
    color: #F9F6E0;
}

.cid-v6o29xJtk3 .card-desc {
    color: #F9F6E0;
}

.cid-v6o29xJtk3 .list,
.cid-v6o29xJtk3 .item-wrap {
    color: #FFFFFF;
}

.cid-v6o29xJzwv {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xJzwv .container {
        padding: 0 24px;
    }
}

@media (max-width: 992px) {
    .cid-v6o29xJzwv .row {
        border: none;
    }
}

.cid-v6o29xJzwv .content-wrapper {
    padding: 0px;
}

@media (max-width: 992px) {
    .cid-v6o29xJzwv .content-wrapper {
        padding: 0 24px 24px;
    }
}

.cid-v6o29xJzwv .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .cid-v6o29xJzwv .content-wrapper .mbr-section-title {
        text-align: left;
    }
}

.cid-v6o29xJzwv .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xJzwv .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xJzwv .panel-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 992px) {
    .cid-v6o29xJzwv .panel-group {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .cid-v6o29xJzwv .panel-group {
        display: block;
    }
}

.cid-v6o29xJzwv .panel-group .card {
    padding: 32px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-radius: 0 !important;
    justify-content: center;
    min-height: 300px;
}

.cid-v6o29xJzwv .panel-group .card:nth-child(3n) {
    border-right: none;
}

@media (max-width: 992px) {
    .cid-v6o29xJzwv .panel-group .card {
        padding: 24px;
        border-right: 1px solid #ffffff !important;
    }

    .cid-v6o29xJzwv .panel-group .card:nth-child(2n) {
        border-right: none !important;
    }
}

@media (max-width: 768px) {
    .cid-v6o29xJzwv .panel-group .card {
        min-height: 200px;
        border-right: none !important;
    }
}

.cid-v6o29xJzwv .panel-group .card .card-header {
    padding: 0;
    border: none;
    background-color: transparent;
}

.cid-v6o29xJzwv .panel-group .card .card-header .panel-title {
    display: block;
}

.cid-v6o29xJzwv .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
    color: #e2efd8;
}

.cid-v6o29xJzwv .panel-group .card .card-header .panel-title:hover .panel-title-edit {
    color: #e2efd8;
}

.cid-v6o29xJzwv .panel-group .card .card-header .panel-title .panel-title-edit {
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.cid-v6o29xJzwv .panel-group .card .panel-collapse .panel-body {
    padding-top: 8px;
}

.cid-v6o29xJzwv .panel-group .card .panel-collapse .panel-body .panel-text {
    margin-bottom: 0;
}

.cid-v6o29xJzwv .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xJzwv .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xJzwv .panel-title-edit {
    color: #F9F6E0;
}

.cid-v6o29xJzwv .panel-text {
    color: #FFFFFF;
}

.cid-v6o29xJzwv .mbr-section-title,
.cid-v6o29xJzwv .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xJzwv .panel-title-edit,
.cid-v6o29xJzwv .panel-title {
    color: #FFFFFF;
}

.cid-v6o29xKW9d {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xKW9d .container {
        padding: 0 24px;
    }
}

.cid-v6o29xKW9d .row {
    position: relative;
    padding: 32px;
    margin: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .row {
        padding: 24px;
    }
}

.cid-v6o29xKW9d .row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fcf8f8;
    opacity: 0.1;
    border-radius: 0.5rem;
}

.cid-v6o29xKW9d .row .card {
    padding: 0;
    border-radius: 0 !important;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .row .card {
        border: none;
    }
}

.cid-v6o29xKW9d .content-wrapper {
    padding: 32px 32px 0 0;
    position: sticky;
    top: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .content-wrapper {
        padding: 24px 0;
    }
}

.cid-v6o29xKW9d .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .content-wrapper .mbr-section-title {
        text-align: left;
    }
}

.cid-v6o29xKW9d .content-wrapper .mbr-desc {
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .content-wrapper .mbr-desc {
        margin-bottom: 24px;
        text-align: left;
    }
}

.cid-v6o29xKW9d .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xKW9d .content-wrapper .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .content-wrapper .mbr-section-btn {
        text-align: left;
        margin-top: 24px;
    }
}

.cid-v6o29xKW9d .items {
    border-left: 1px solid #ffffff;
}

.cid-v6o29xKW9d .items .item {
    padding: 32px;
    border-bottom: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .items .item {
        padding: 24px;
    }
}

.cid-v6o29xKW9d .items .item:last-child {
    border: none;
}

.cid-v6o29xKW9d .items .item .item-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .items .item .item-wrapper {
        display: block;
    }
}

.cid-v6o29xKW9d .items .item .item-wrapper .item-img {
    background-color: #fcf8f8;
    border-radius: 0.5rem;
    margin-right: 48px;
}

@media (max-width: 992px) {
    .cid-v6o29xKW9d .items .item .item-wrapper .item-img {
        margin: 0 0 24px 0;
    }
}

.cid-v6o29xKW9d .items .item .item-wrapper .item-img img {
    width: 150px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
}

.cid-v6o29xKW9d .items .item .item-wrapper .item-content .card-title {
    margin-bottom: 8px;
}

.cid-v6o29xKW9d .items .item .item-wrapper .item-content .card-text {
    margin-bottom: 0;
}

.cid-v6o29xKW9d .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xKW9d .mbr-desc {
    color: #E2EFD8;
    text-align: right;
}

.cid-v6o29xKW9d .mbr-text {
    color: #FFFFFF;
    text-align: right;
}

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

.cid-v6o29xKW9d .card-text {
    color: #FFFFFF;
}

.cid-v6o29xKW9d .mbr-section-title,
.cid-v6o29xKW9d .mbr-section-btn {
    text-align: right;
    color: #FFFFFF;
}

.cid-v6o29xKmsV {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

.cid-v6o29xKmsV .mbr-overlay {
    background: #22090b;
    opacity: 0.4;
}

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xKmsV .container {
        padding: 0 24px;
    }
}

.cid-v6o29xKmsV .card {
    justify-content: center;
}

.cid-v6o29xKmsV .title-wrapper {
    padding: 0px;
}

@media (max-width: 992px) {
    .cid-v6o29xKmsV .title-wrapper {
        padding: 0 24px 24px;
    }
}

.cid-v6o29xKmsV .title-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

.cid-v6o29xKmsV .title-wrapper .mbr-desc {
    margin-bottom: 0;
}

.cid-v6o29xKmsV .text-wrapper {
    border-top: 1px solid #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xKmsV .text-wrapper {
        display: block;
        padding: 24px;
    }
}

.cid-v6o29xKmsV .text-wrapper .mbr-text {
    width: 45%;
}

@media (max-width: 992px) {
    .cid-v6o29xKmsV .text-wrapper .mbr-text {
        width: 100%;
        margin-bottom: 24px;
    }

    .cid-v6o29xKmsV .text-wrapper .mbr-text:last-child {
        margin-bottom: 0;
    }
}

.cid-v6o29xKmsV .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xKmsV .mbr-desc {
    color: #FFFFFF;
}

.cid-v6o29xKmsV .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xKmsV .mbr-section-btn {
    text-align: right;
}

.cid-v6o29xKmsV .mbr-section-title,
.cid-v6o29xKmsV .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xKD3P {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xKD3P .container {
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .cid-v6o29xKD3P .row {
        margin: 0;
    }
}

.cid-v6o29xKD3P .row .card {
    border-top: 1px solid #ffffff;
    padding: 0;
    border-radius: 0 !important;
}

@media (max-width: 992px) {
    .cid-v6o29xKD3P .row .card {
        padding: 0 16px;
        border: none;
    }
}

.cid-v6o29xKD3P .content-wrapper {
    padding: 32px;
    position: sticky;
    top: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xKD3P .content-wrapper {
        padding: 24px;
    }
}

.cid-v6o29xKD3P .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .cid-v6o29xKD3P .content-wrapper .mbr-section-title {
        text-align: left;
    }
}

.cid-v6o29xKD3P .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xKD3P .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xKD3P .content-wrapper .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xKD3P .content-wrapper .mbr-section-btn {
        text-align: left;
        margin-top: 24px;
    }
}

.cid-v6o29xKD3P .items {
    border-left: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xKD3P .items {
        border-top: 1px solid #ffffff;
    }
}

.cid-v6o29xKD3P .items .item {
    padding: 32px;
    border-bottom: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xKD3P .items .item {
        padding: 24px;
    }
}

.cid-v6o29xKD3P .items .item:last-child {
    border: none;
}

.cid-v6o29xKD3P .items .item .item-wrapper .card-box .title-wrapper {
    margin-bottom: 8px;
}

.cid-v6o29xKD3P .items .item .item-wrapper .card-box .title-wrapper .title-wrap {
    display: inline-flex;
}

.cid-v6o29xKD3P .items .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
    margin-bottom: 0;
}

.cid-v6o29xKD3P .items .item .item-wrapper .card-box .title-wrapper .title-wrap .card-number {
    margin: 0 0 0 8px;
    min-width: 60px;
}

.cid-v6o29xKD3P .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xKD3P .mbr-text {
    color: #FFFFFF;
    text-align: right;
}

.cid-v6o29xKD3P .card-title {
    color: #F9F6E0;
}

.cid-v6o29xKD3P .card-number {
    color: #E0B548;
}

.cid-v6o29xKD3P .card-text {
    color: #FFFFFF;
}

.cid-v6o29xKD3P .mbr-section-title,
.cid-v6o29xKD3P .mbr-section-btn {
    text-align: right;
    color: #FFFFFF;
}

.cid-v6o29xKD3P .card-title,
.cid-v6o29xKD3P .title-wrapper {
    color: #FFFFFF;
}

.cid-v6o29xKD3P .card-number,
.cid-v6o29xKD3P .title-wrapper {
    color: #E2EFD8;
}

.cid-v6o29xKztP {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xKztP .container {
        padding: 0 10px;
    }
}

@media (min-width: 992px) {
    .cid-v6o29xKztP .row {
        margin: 0;
    }
}

.cid-v6o29xKztP .row .card {
    padding: 0;
    border-radius: 0 !important;
}

@media (max-width: 992px) {
    .cid-v6o29xKztP .row .card {
        padding: 0 16px;
    }
}

.cid-v6o29xKztP .title-wrapper .mbr-section-title {
    padding: 0px;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xKztP .title-wrapper .mbr-section-title {
        padding: 0 24px 24px;
    }
}

.cid-v6o29xKztP .content-wrapper {
    padding: 32px;
    position: sticky;
    top: 0;
    border-top: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xKztP .content-wrapper {
        padding: 24px;
        border-top: none;
    }
}

.cid-v6o29xKztP .content-wrapper .mbr-section-subtitle {
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .cid-v6o29xKztP .content-wrapper .mbr-section-subtitle {
        text-align: left;
    }
}

.cid-v6o29xKztP .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xKztP .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xKztP .items {
    border-left: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xKztP .items {
        border-top: 1px solid #ffffff;
    }
}

.cid-v6o29xKztP .items .item {
    padding: 32px;
    border-bottom: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xKztP .items .item {
        padding: 24px;
    }
}

.cid-v6o29xKztP .items .item:last-child {
    border: none;
}

.cid-v6o29xKztP .items .item .item-wrapper .card-box .card-title {
    margin-bottom: 8px;
}

.cid-v6o29xKztP .items .item .item-wrapper .card-box .card-text {
    margin-bottom: 0;
}

.cid-v6o29xKztP .image-wrapper {
    padding: 32px;
    border-top: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xKztP .image-wrapper {
        padding: 24px;
        border-top: none;
    }
}

.cid-v6o29xKztP .image-wrapper img {
    height: 350px;
    object-fit: cover;
}

.cid-v6o29xKztP .mbr-section-title {
    color: #FFFFFF;
}

.cid-v6o29xKztP .mbr-section-subtitle {
    color: #FFFFFF;
    text-align: right;
}

.cid-v6o29xKztP .mbr-text {
    color: #FFFFFF;
    text-align: right;
}

.cid-v6o29xKztP .card-title {
    color: #F9F6E0;
}

.cid-v6o29xKztP .card-text {
    color: #FFFFFF;
}

.cid-v6o29xKztP .card-title,
.cid-v6o29xKztP .title-wrapper {
    color: #FFFFFF;
}

.cid-v6o29xKQYG {
    background-image: url("/assets/images/abd/home/1/1126.webp");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xKQYG .container {
        padding: 0 24px;
    }
}

.cid-v6o29xLNxD {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xLNxD .container {
        padding: 0 24px;
    }
}

.cid-v6o29xLNxD .row {
    justify-content: center;
    border-top: 1px solid #ffffff;
}

@media (min-width: 992px) {
    .cid-v6o29xLNxD .row {
        margin: 0;
    }
}

@media (max-width: 992px) {
    .cid-v6o29xLNxD .row {
        border: none;
    }
}

.cid-v6o29xLNxD .row .item {
    padding: 0 32px 0 0;
    border-radius: 0 !important;
}

@media (max-width: 992px) {
    .cid-v6o29xLNxD .row .item {
        padding: 0 16px;
    }
}

.cid-v6o29xLNxD .item-wrapper {
    height: 100%;
}

.cid-v6o29xLNxD .item-wrapper .card-box {
    display: flex;
    height: 100%;
}

@media (max-width: 992px) {
    .cid-v6o29xLNxD .item-wrapper .card-box {
        display: block;
    }
}

.cid-v6o29xLNxD .subtitle-wrap {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .cid-v6o29xLNxD .subtitle-wrap {
        display: block;
    }
}

.cid-v6o29xLNxD .subtitle-wrap .mbr-section-subtitle {
    padding: 32px;
    writing-mode: tb;
    transform: rotate(180deg);
    margin: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xLNxD .subtitle-wrap .mbr-section-subtitle {
        transform: rotate(0);
        writing-mode: horizontal-tb;
        padding: 24px;
        border-left: 1px solid #ffffff;
        text-align: left;
    }
}

.cid-v6o29xLNxD .content-wrapper {
    padding: 32px;
    border-left: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xLNxD .content-wrapper {
        padding: 24px;
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
    }
}

.cid-v6o29xLNxD .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

.cid-v6o29xLNxD .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xLNxD .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xLNxD .content-wrapper .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xLNxD .content-wrapper .mbr-section-btn {
        text-align: left;
        margin-top: 24px;
    }
}

.cid-v6o29xLNxD .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xLNxD .mbr-section-subtitle {
    color: #E2EFD8;
    text-align: center;
}

.cid-v6o29xLNxD .mbr-text {
    color: #FFFFFF;
}

.cid-v6o29xLNxD .mbr-section-title,
.cid-v6o29xLNxD .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xLVyv {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

.cid-v6o29xLVyv .mbr-overlay {
    background: #22090b;
    opacity: 0.4;
}

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xLVyv .container {
        padding: 0 24px;
    }
}

.cid-v6o29xLVyv .card {
    justify-content: center;
}

.cid-v6o29xLVyv .image-wrapper {
    border-top: 1px solid #ffffff;
    padding: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xLVyv .image-wrapper {
        display: block;
        padding: 24px;
    }
}

.cid-v6o29xLVyv .image-wrapper img {
    height: 550px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-v6o29xLVyv .image-wrapper img {
        height: 350px;
    }
}

.cid-v6o29xLJWi {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

.cid-v6o29xLJWi .mbr-overlay {
    background: #fcf8f8;
    opacity: 0.2;
}

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

.cid-v6o29xLJWi .container-fluid {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.cid-v6o29xLJWi .item {
    color: #e2efd8;
    min-height: 90px;
}

@media (max-width: 768px) {
    .cid-v6o29xLJWi .item {
        min-height: 45px;
    }
}

.cid-v6o29xLOk4 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xLOk4 .container {
        padding: 0 24px;
    }
}

.cid-v6o29xLOk4 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xLOk4 .content-wrapper .mbr-section-title {
        margin-bottom: 16px;
    }
}

.cid-v6o29xLOk4 .mbr-section-title {
    color: #FFFFFF;
}

.cid-v6o29xLOk4 .mbr-section-title,
.cid-v6o29xLOk4 .mbr-section-btn {
    text-align: center;
    color: #FFFFFF;
}

.cid-v6o29xLoXX {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xLoXX .container {
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .cid-v6o29xLoXX .row {
        margin: 0;
    }
}

.cid-v6o29xLoXX .row .card {
    border-top: 1px solid #ffffff;
    padding: 0;
    border-radius: 0 !important;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .row .card {
        padding: 0 16px;
        border: none;
    }
}

.cid-v6o29xLoXX .content-wrapper {
    padding: 32px;
    position: sticky;
    top: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .content-wrapper {
        padding: 24px;
    }
}

.cid-v6o29xLoXX .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .content-wrapper .mbr-section-title {
        text-align: left;
    }
}

.cid-v6o29xLoXX .content-wrapper .mbr-text {
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .content-wrapper .mbr-text {
        margin-bottom: 24px;
        text-align: left;
    }
}

.cid-v6o29xLoXX .content-wrapper .nav.nav-tabs {
    position: relative;
    display: block;
    border: none;
}

.cid-v6o29xLoXX .content-wrapper .nav.nav-tabs .nav-item {
    position: relative;
    z-index: 1;
}

.cid-v6o29xLoXX .content-wrapper .nav.nav-tabs .nav-item .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    margin-bottom: 32px;
    border: 1px solid #ffffff;
    border-radius: 0.375rem !important;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .content-wrapper .nav.nav-tabs .nav-item .nav-link {
        margin-bottom: 24px;
    }
}

.cid-v6o29xLoXX .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
    border: 1px solid #e2efd8;
    background-color: #e2efd8;
    color: #000000;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .content-wrapper .mbr-section-btn {
        text-align: left;
    }
}

.cid-v6o29xLoXX .tab-content {
    height: 100%;
}

.cid-v6o29xLoXX .tab-content .tab-pane {
    height: 100%;
}

.cid-v6o29xLoXX .tab-content .tab-pane .items {
    height: 100%;
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item {
    padding: 32px;
    border-left: 1px solid #ffffff;
    border-right: none;
    border-top: none;
    height: 100%;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .tab-content .tab-pane .items .item {
        padding: 24px;
        border-top: 1px solid #ffffff !important;
        border-left: 1px solid #ffffff !important;
        border-right: none !important;
    }
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item .item-wrapper {
    display: flex;
    flex-direction: column-reverse;
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item .item-wrapper .item-content {
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .tab-content .tab-pane .items .item .item-wrapper .item-content {
        margin-bottom: 24px;
    }
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item .item-wrapper .item-img {
    margin-bottom: 0;
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-img {
    display: block;
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-img {
        margin-bottom: 24px;
    }
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-img:hover img,
.cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-img:focus img {
    transform: scale(0.95);
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-img img {
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-img img {
        height: 350px;
    }
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-content a {
    display: block;
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-content a:hover .card-title,
.cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-content a:focus .card-title {
    color: #e2efd8;
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-content a .card-title {
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
}

.cid-v6o29xLoXX .tab-content .tab-pane .items .item-wrapper .item-content .card-text {
    margin-bottom: 0;
}

.cid-v6o29xLoXX .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xLoXX .mbr-text {
    color: #FFFFFF;
    text-align: right;
}

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

.cid-v6o29xLoXX .card-text {
    color: #FFFFFF;
}

.cid-v6o29xLoXX .mbr-section-title,
.cid-v6o29xLoXX .mbr-section-btn,
.cid-v6o29xLoXX .nav-item {
    text-align: right;
    color: #FFFFFF;
}

.cid-v6o29xLAKN {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xLAKN .container {
        padding: 0 24px;
    }
}

.cid-v6o29xLAKN .main-row {
    margin: 0;
}

.cid-v6o29xLAKN .main-row .card {
    padding: 0;
    border-radius: 0 !important;
    border-top: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xLAKN .main-row .card {
        padding: 0;
    }
}

.cid-v6o29xLAKN .content-wrapper {
    padding: 32px;
    position: sticky;
    top: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xLAKN .content-wrapper {
        padding: 24px;
    }
}

.cid-v6o29xLAKN .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .cid-v6o29xLAKN .content-wrapper .mbr-section-title {
        text-align: left;
    }
}

.cid-v6o29xLAKN .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xLAKN .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xLAKN .form-wrapper {
    border-left: 1px solid #ffffff;
    padding: 32px !important;
}

@media (max-width: 992px) {
    .cid-v6o29xLAKN .form-wrapper {
        padding: 24px !important;
    }
}

.cid-v6o29xLAKN .dragArea.row .mbr-section-title {
    margin-bottom: 24px !important;
}

.cid-v6o29xLAKN .dragArea.row .form-group {
    margin-bottom: 24px !important;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .cid-v6o29xLAKN .dragArea.row .form-group {
        display: block;
    }
}

.cid-v6o29xLAKN .dragArea.row .form-group .form-control {
    background-color: transparent;
    padding: 16px 20px;
    box-shadow: none;
    border: 1px solid #ffffff !important;
    border-bottom: 1px solid transparent !important;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
    color: #e2efd8;
}

.cid-v6o29xLAKN .dragArea.row .form-group .form-control::placeholder {
    color: #e2efd8;
}

.cid-v6o29xLAKN .dragArea.row .form-group .form-control:hover,
.cid-v6o29xLAKN .dragArea.row .form-group .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid #ffffff !important;
}

.cid-v6o29xLAKN .dragArea.row .form-group .form-control-label {
    margin-left: 48px;
}

@media (max-width: 992px) {
    .cid-v6o29xLAKN .dragArea.row .form-group .form-control-label {
        margin-left: 24px;
    }
}

.cid-v6o29xLAKN .dragArea.row .form-group .form-check {
    padding-left: 2.1em;
    margin-left: 48px;
}

@media (max-width: 992px) {
    .cid-v6o29xLAKN .dragArea.row .form-group .form-check {
        margin-left: 24px;
    }
}

.cid-v6o29xLAKN .dragArea.row .form-group .form-check .form-check-input {
    background-color: #e2efd8;
    border-color: #e2efd8;
}

.cid-v6o29xLAKN .dragArea.row .form-group textarea {
    min-height: 270px;
}

.cid-v6o29xLAKN .dragArea.row .mbr-section-btn {
    margin-top: 32px;
    width: 100%;
}

@media (max-width: 992px) {
    .cid-v6o29xLAKN .dragArea.row .mbr-section-btn {
        margin-top: 24px;
    }
}

.cid-v6o29xLAKN .mbr-section-title {
    color: #FFFFFF;
    text-align: right;
}

.cid-v6o29xLAKN .mbr-text {
    color: #FFFFFF;
    text-align: right;
}

.cid-v6o29xLAKN label {
    color: #F9F6E0;
}

.cid-v6o29xMFvD {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

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

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

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xMFvD .container {
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .cid-v6o29xMFvD .row {
        margin: 0;
    }
}

.cid-v6o29xMFvD .row .card {
    padding: 0;
    border-radius: 0 !important;
}

@media (max-width: 992px) {
    .cid-v6o29xMFvD .row .card {
        padding: 0 16px;
    }
}

.cid-v6o29xMFvD .content-wrapper {
    border-top: 1px solid #ffffff;
    padding: 32px;
    position: sticky;
    top: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xMFvD .content-wrapper {
        padding: 24px;
        border: none;
    }
}

.cid-v6o29xMFvD .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .cid-v6o29xMFvD .content-wrapper .mbr-section-title {
        text-align: left;
    }
}

.cid-v6o29xMFvD .content-wrapper .mbr-text {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cid-v6o29xMFvD .content-wrapper .mbr-text {
        text-align: left;
    }
}

.cid-v6o29xMFvD .items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid #ffffff;
}

@media (max-width: 992px) {
    .cid-v6o29xMFvD .items {
        display: block;
    }
}

.cid-v6o29xMFvD .items .item {
    padding: 32px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

.cid-v6o29xMFvD .items .item:nth-child(2n) {
    border-right: none;
}

@media (max-width: 992px) {
    .cid-v6o29xMFvD .items .item {
        padding: 24px;
        border-right: none !important;
    }
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .card-title {
    margin-bottom: 8px;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .card-text {
    margin-bottom: 0;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .mbr-section-btn {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xMFvD .items .item .item-wrapper .card-box .mbr-section-btn {
        margin-top: 24px;
    }
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap {
    margin-bottom: 16px;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap:last-child {
    margin-bottom: 0;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .card-title {
    margin-bottom: 8px;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .card-text {
    margin-bottom: 0;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .list {
    margin: 16px 0 0 0;
    padding: 0;
    list-style-type: none;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .list .item-wrap {
    margin-bottom: 16px;
    transition: all 0.3s ease-in-out;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .list .item-wrap:last-child {
    margin-bottom: 0;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .list .item-wrap:hover,
.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .list .item-wrap:focus {
    color: #e2efd8;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .link-wrap {
    display: block;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .link-wrap:hover .card-link,
.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .link-wrap:focus .card-link {
    color: #e2efd8;
}

.cid-v6o29xMFvD .items .item .item-wrapper .card-box .contact-wrap .link-wrap .card-link {
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.cid-v6o29xMFvD .mbr-section-title {
    color: #FFFFFF;
    text-align: right;
}

.cid-v6o29xMFvD .mbr-text {
    color: #FFFFFF;
    text-align: right;
}

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

.cid-v6o29xMFvD .list {
    color: #E0B548;
}

.cid-v6o29xMFvD .card-link {
    color: #FFFFFF;
}

.cid-v6o29xMFvD .card-text {
    color: #FFFFFF;
}

.cid-v6o29xMFvD .card-title,
.cid-v6o29xMFvD .mbr-section-btn {
    color: #FFFFFF;
}

.cid-v6o29xMlmD {
    padding: 2rem;
    background-image: url("/assets/images/background1.jpg?rnd=1766661124632");
}

.cid-v6o29xMlmD .mbr-overlay {
    background: #22090b;
    opacity: 0.4;
}

@media (max-width: 992px) and (max-width: 992px) {
    .cid-v6o29xMlmD .container {
        padding: 0 24px;
    }
}

.cid-v6o29xMlmD .row {
    justify-content: space-between;
    justify-content: center;
}

.cid-v6o29xMlmD .logo-wrapper {
    display: flex;
    justify-content: center;
}

.cid-v6o29xMlmD .logo-wrapper .logo-wrap img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px !important;
}

.cid-v6o29xMlmD .logo-wrapper .border-wrap {
    width: 100%;
    border-bottom: 1px solid #72716b;
}

.cid-v6o29xMlmD .content-wrapper {
    padding: 32px 0 0 32px;
    padding: 32px 32px 0 0;
}

@media (max-width: 992px) {
    .cid-v6o29xMlmD .content-wrapper {
        padding: 24px 0;
    }
}

@media (max-width: 992px) {
    .cid-v6o29xMlmD .content-wrapper {
        padding: 24px 0;
    }
}

.cid-v6o29xMlmD .content-wrapper .list {
    margin-bottom: 24px;
    padding: 0;
    list-style-type: none;
    line-height: 1.5;
}

.cid-v6o29xMlmD .content-wrapper .list .item-wrap {
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
}

.cid-v6o29xMlmD .content-wrapper .list .item-wrap:hover,
.cid-v6o29xMlmD .content-wrapper .list .item-wrap:focus {
    color: #e0b548;
}

.cid-v6o29xMlmD .content-wrapper .list .item-wrap:last-child {
    margin-bottom: 0;
}

.cid-v6o29xMlmD .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
}

.cid-v6o29xMlmD .content-wrapper .mbr-copy {
    margin-bottom: 0;
    line-height: 1.5;
}

.cid-v6o29xMlmD .nav-list {
    padding: 0 32px 0 0;
    line-height: 1.5;
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 32px;
}

@media (max-width: 992px) {
    .cid-v6o29xMlmD .nav-list {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .cid-v6o29xMlmD .nav-list {
        padding: 0;
    }
}

.cid-v6o29xMlmD .nav-list .item-wrap {
    position: relative;
    border-left: 1px solid #72716b;
    border-bottom: 1px solid #72716b;
    padding: 12px 32px;
    transition: all 0.3s ease-in-out;
    border-left: none;
    border-right: 1px solid #72716b;
}

.cid-v6o29xMlmD .nav-list .item-wrap:hover,
.cid-v6o29xMlmD .nav-list .item-wrap:focus {
    color: #e0b548;
}

.cid-v6o29xMlmD .nav-list .item-wrap:hover::before,
.cid-v6o29xMlmD .nav-list .item-wrap:focus::before {
    opacity: 1;
}

.cid-v6o29xMlmD .nav-list .item-wrap:last-child {
    border-bottom: none;
}

.cid-v6o29xMlmD .nav-list .item-wrap::before {
    content: '';
    background-color: #e0b548;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 45%;
    left: 13px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.cid-v6o29xMlmD .mbr-section-title {
    color: #F9F6E0;
}

.cid-v6o29xMlmD .list {
    color: #F9F6E0;
}

.cid-v6o29xMlmD .mbr-copy {
    color: #FFFFFF;
    text-align: center;
}

#hero-2-v6o29xJOAE {
    background: url('/assets/images/abd/about/banner/286.webp') center / cover;
}


.materials-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.actionmetalsrecyclers.com/wp-content/uploads/2023/03/shutterstock_1976224004.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.materials-hero .mbr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.materials-hero .subtitle-wrap {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
}

.materials-hero .mbr-section-title {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease forwards;
}

.materials-hero .mbr-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.5s ease forwards;
}

.materials-hero .mbr-section-btn .btn {
    margin: 0 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.materials-hero .mbr-section-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Floating image */
.hero-floating {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 250px;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* Hero section background */
#hero-industries {
    position: relative;
    min-height: 90vh;
    background-image: url('/assets/images/abd/industrie/banner/324.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* Overlay for contrast */
#hero-industries .mbr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Content styling */
#hero-industries .content-wrapper {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

#hero-industries .hero-title {
    animation: fadeInDown 1.2s ease forwards;
}

#hero-industries .hero-text {
    margin-top: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 1.5s ease forwards;
}

/* Buttons hover */
#hero-industries .mbr-section-btn .btn {
    margin-right: 10px;
    transition: all 0.3s ease;
}

#hero-industries .mbr-section-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Floating hero image effect */
#hero-industries .hero-image {
    width: 100%;
    border-radius: 10px;
    animation: floatImage 4s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* CTA Image styling */
#call-to-action-1-v6o29xLOk4 .cta-image {
    width: 100%;
    border-radius: 10px;
    animation: floatCTA 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatCTA {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* CTA section adjustments */
#call-to-action-1-v6o29xLOk4 .content-wrapper {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

/* Optional: Add slight fade-in for text */
#call-to-action-1-v6o29xLOk4 h2,
#call-to-action-1-v6o29xLOk4 p {
    animation: fadeInCTA 1.5s ease forwards;
}

@keyframes fadeInCTA {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Creative Materials Section */
#materials-creative .mbr-parallax-background {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#materials-creative .mbr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#materials-creative .text-white {
    color: #fff;
}
 

.menu01 {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: top 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.menu01.hide {
    top: -100px;
    /* Slide up */
    opacity: 0;
    /* Fade out */
    pointer-events: none;
    /* Prevent clicks when hidden */
}

#hero-contact {
    background-image: url('/assets/images/contact-banner.webp');
    background-size: cover;
    background-position: center;
}



/* navbar */
/* Keep all your existing CSS above */

/* Add this to your CSS file or in a style tag */
.menu01 {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: top 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    opacity: 1;
}

/* Hide state - slides up and fades out */
.menu01.hide {
    top: -100px;
    opacity: 0;
    pointer-events: none;
}

/* Show state with background when scrolled */
.menu01.scrolled {
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth transition for navbar when showing/hiding */
.navbar {
    transition: all 0.3s ease;
}

/* Enhanced hover effects for nav items */
.cid-v6o29xD10f .nav-item .nav-link {
    position: relative;
    padding: 12px 0;
    color: #FFFFFF;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Active state */
.cid-v6o29xD10f .nav-item.active .nav-link {
    color: #e2efd8 !important;
}

/* Modern underline animation */
.cid-v6o29xD10f .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 2px;
    background-color: #e2efd8;
    transform: translateX(-100px);
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    opacity: 0;
}

/* Show underline on active */
.cid-v6o29xD10f .nav-item.active .nav-link::after {
    transform: translateX(0);
    opacity: 1;
}

/* Hover effect */
.cid-v6o29xD10f .nav-item .nav-link:hover {
    color: #e2efd8 !important;
}

.cid-v6o29xD10f .nav-item .nav-link:hover::after {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.3s ease;
}

/* Mobile version adjustments */
@media (max-width: 991px) {
    .cid-v6o29xD10f .nav-item .nav-link {
        padding: 8px 0;
    }

    .cid-v6o29xD10f .nav-item .nav-link::after {
        height: 2px;
    }

}


.subtitle-wrap {
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    /* make text visible on dark images */
}

/* Optional: different background for specific subtitles */
.subtitle-wrap.bg1 {
    background-image: url('/assets/images/abd/service/4/3491305.webp');
}

.subtitle-wrap.bg2 {
    background-image: url('https://vention.io/cdn-cgi/image/quality=70,width=1000/https://assets.vention.io/images/000/008/171/original/advanced-manufacturing-team-blog.jpg?1695043508');
}

.subtitle-wrap.bg3 {
    background-image: url('https://st3.depositphotos.com/15601592/18791/i/450/depositphotos_187913846-stock-photo-multi-ethnic-team-workers-wearing.jpg');
}

.video-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-size: 32px;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s ease, background 0.2s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

/* LEFT CONTENT */
.services-hero {
    position: relative;
    height: 100%;
    background-image: url('/assets/images/abd/service/banneer/19468649.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    /* 🔥 SAME AS MATERIAL HERO */
    padding-bottom: 60px;
    overflow: hidden;
}



/* EXACT SAME STRUCTURE AS MATERIAL HERO */
.services-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left {
    color: #fff;
}

.hero-left .mbr-section-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-left .mbr-text {
    font-size: 1.25rem;
    max-width: 520px;
}

/* Glass card */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-glass-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-glass-card li {
    margin-bottom: 12px;
}

/* Buttons */
.services-hero .btn {
    transition: all 0.3s ease;
}

.services-hero .btn:hover {
    transform: translateY(-3px);
}

/* Mobile fix */
@media (max-width: 991px) {
    .services-hero {
        background-attachment: scroll;
        padding-bottom: 50px;
    }

    .hero-left .mbr-section-title {
        font-size: 2.6rem;
    }
}

.materials-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    /* Align content towards the bottom */
    justify-content: center;
    background-image: url('/assets/images/abd/material/banner/1486.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Make background fixed */
    overflow: hidden;
    padding-bottom: 50px;
    /* Space from the bottom */
}

.materials-hero .mbr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(34, 9, 11, 0.6);
    /* Keep overlay color and opacity */
}

.materials-hero .subtitle-wrap {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
    /* Optional: limit width for better readability */
    text-align: center;
}

.materials-hero .mbr-section-title {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease forwards;
}

.materials-hero .mbr-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.5s ease forwards;
}

.materials-hero .mbr-section-btn .btn {
    margin: 0 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.materials-hero .mbr-section-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Optional: fadeIn animations if you want to include them */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* RIGHT GLASS CARD */
.hero-glass-card {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2.5rem 3rem;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-glass-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-glass-card ul li {
    margin-bottom: 0.9rem;
}

/* ================= HERO ================= */
.creative-welcome {
    position: relative;
    min-height: 100vh;
    background: url('/assets/images/background1.jpg') center/cover fixed;
    overflow: hidden;
}

/* Dark overlay (balanced) */
.creative-welcome::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}


/* Container */
.welcome-container {
    position: relative;
    z-index: 3;
    padding: 2rem;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
    padding-left: 2rem !important;
    padding-left: 2rem !important;
}

/* Layout */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left */
.text-side {
    padding-top: 40px;
}

.badge-welcome {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 40px;
    border: 1px solid var(--primary);
    background: rgba(226, 168, 79, 0.15);
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.main-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 560px;
}

/* Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.pill {
    padding: 10px 22px;
    border-radius: 40px;
    border: 1px solid rgba(226, 168, 79, 0.4);
    background: rgba(226, 168, 79, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* CTA */
.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.btn-primary-custom {
    padding: 15px 38px;
    background: var(--primary);
    border-radius: 40px;
    border: none;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 30px rgba(226, 168, 79, 0.35);
}

.btn-secondary-custom {
    padding: 15px 38px;
    background: transparent;
    border-radius: 40px;
    border: 2px solid var(--accent);
    color: var(--light);
}

/* ================= CARDS ================= */
.cards-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 32px;
    border: 1px solid rgba(226, 168, 79, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform .4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.card-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #f5c46b;
}

.card-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    text-transform: uppercase;
}




/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .split-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.6rem;
    }

    .cards-side {
        grid-template-columns: 1fr;
    }
}