.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2rem;
}
.display-5 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'Noto Sans', sans-serif;
  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 == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #232323 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #d8342c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff9600 !important;
  border-color: #ff9600 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a86300 !important;
  border-color: #a86300 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a86300 !important;
  border-color: #a86300 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #d8342c !important;
  border-color: #d8342c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #92211b !important;
  border-color: #92211b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #92211b !important;
  border-color: #92211b !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff9600;
  color: #ff9600;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a86300 !important;
  background-color: transparent!important;
  border-color: #a86300 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9600 !important;
  border-color: #ff9600 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #d8342c;
  color: #d8342c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #92211b !important;
  background-color: transparent!important;
  border-color: #92211b !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #d8342c !important;
  border-color: #d8342c !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: #232323 !important;
}
.text-secondary {
  color: #ff9600 !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #d8342c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #995a00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #851e19 !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: #232323;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #d8342c;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #232323;
  border-color: #232323;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #232323;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f8dad8;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
.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: #232323 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #232323;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #232323;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #232323;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #232323 !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: #ff9600 !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='%23232323' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tB0YZQqaCG .navbar-dropdown {
  position: relative !important;
}
.cid-tB0YZQqaCG .navbar-dropdown {
  position: absolute !important;
}
.cid-tB0YZQqaCG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB0YZQqaCG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tB0YZQqaCG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tB0YZQqaCG .dropdown-item:hover,
.cid-tB0YZQqaCG .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-tB0YZQqaCG .dropdown-item:hover span {
  color: white;
}
.cid-tB0YZQqaCG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tB0YZQqaCG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tB0YZQqaCG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tB0YZQqaCG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tB0YZQqaCG .nav-link {
  position: relative;
}
.cid-tB0YZQqaCG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB0YZQqaCG .container {
    flex-wrap: wrap;
  }
}
.cid-tB0YZQqaCG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB0YZQqaCG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tB0YZQqaCG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tB0YZQqaCG .dropdown-menu,
.cid-tB0YZQqaCG .navbar.opened {
  background: #ffffff !important;
}
.cid-tB0YZQqaCG .nav-item:focus,
.cid-tB0YZQqaCG .nav-link:focus {
  outline: none;
}
.cid-tB0YZQqaCG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tB0YZQqaCG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tB0YZQqaCG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tB0YZQqaCG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB0YZQqaCG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tB0YZQqaCG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tB0YZQqaCG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-tB0YZQqaCG .navbar.opened {
  transition: all 0.3s;
}
.cid-tB0YZQqaCG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tB0YZQqaCG .navbar .navbar-logo img {
  width: auto;
}
.cid-tB0YZQqaCG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tB0YZQqaCG .navbar.collapsed {
  justify-content: center;
}
.cid-tB0YZQqaCG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tB0YZQqaCG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tB0YZQqaCG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tB0YZQqaCG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tB0YZQqaCG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tB0YZQqaCG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tB0YZQqaCG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tB0YZQqaCG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tB0YZQqaCG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tB0YZQqaCG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tB0YZQqaCG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tB0YZQqaCG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tB0YZQqaCG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tB0YZQqaCG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tB0YZQqaCG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tB0YZQqaCG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tB0YZQqaCG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tB0YZQqaCG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tB0YZQqaCG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tB0YZQqaCG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tB0YZQqaCG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tB0YZQqaCG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tB0YZQqaCG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tB0YZQqaCG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tB0YZQqaCG .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-tB0YZQqaCG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tB0YZQqaCG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tB0YZQqaCG .dropdown-item.active,
.cid-tB0YZQqaCG .dropdown-item:active {
  background-color: transparent;
}
.cid-tB0YZQqaCG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tB0YZQqaCG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tB0YZQqaCG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tB0YZQqaCG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tB0YZQqaCG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tB0YZQqaCG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tB0YZQqaCG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tB0YZQqaCG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tB0YZQqaCG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tB0YZQqaCG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b52525;
}
.cid-tB0YZQqaCG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tB0YZQqaCG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB0YZQqaCG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB0YZQqaCG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tB0YZQqaCG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB0YZQqaCG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tB0YZQqaCG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tB0YZQqaCG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB0YZQqaCG .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tB0YZQqaCG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tB0YZQqaCG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tB0YZQqaCG .navbar {
    height: 70px;
  }
  .cid-tB0YZQqaCG .navbar.opened {
    height: auto;
  }
  .cid-tB0YZQqaCG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQFSkPF5Hl {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f1f8ea;
}
.cid-uQFSkPF5Hl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQFSkPF5Hl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQFSkPF5Hl .row {
  flex-direction: row-reverse;
}
.cid-uQFSkPF5Hl .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uQFSkPF5Hl .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uQFSkPF5Hl .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uQFSkPF5Hl .mbr-section-title {
  text-align: center;
}
.cid-uQFSkPF5Hl .mbr-text,
.cid-uQFSkPF5Hl .mbr-section-btn {
  text-align: center;
}
.cid-tB9ez4cVTX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tB9ez4cVTX img,
.cid-tB9ez4cVTX .item-img {
  width: 100%;
}
.cid-tB9ez4cVTX .item:focus,
.cid-tB9ez4cVTX span:focus {
  outline: none;
}
.cid-tB9ez4cVTX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tB9ez4cVTX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fcfdf4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tB9ez4cVTX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tB9ez4cVTX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tB9ez4cVTX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tB9ez4cVTX .mbr-section-title {
  color: #000000;
}
.cid-tB9ez4cVTX .mbr-text,
.cid-tB9ez4cVTX .mbr-section-btn {
  text-align: center;
}
.cid-tB9ez4cVTX .item-title {
  text-align: center;
}
.cid-tB9ez4cVTX .item-subtitle {
  text-align: center;
}
.cid-tB83YwBUMj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-tB83YwBUMj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB83YwBUMj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB83YwBUMj .mbr-section-subtitle {
  color: #000000;
}
.cid-u77Ug2nXIe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQFULNuv8a {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-uQFULNuv8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQFULNuv8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQFULNuv8a .mbr-section-subtitle {
  color: #000000;
}
.cid-uZrDeQ5IGl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uZrDeQ5IGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZrDeQ5IGl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZrDeQ5IGl .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uZrDeQ5IGl .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uZrDeQ5IGl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uZrDeQ5IGl .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uZrDeQ5IGl .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uZrDeQ5IGl .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uZrDeQ5IGl .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZrDeQ5IGl .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uZrDeQ5IGl .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uZrDeQ5IGl .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uAek98ZGR5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAek98ZGR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAek98ZGR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAek98ZGR5 .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uAek98ZGR5 .currentcost {
  color: #e43f3f;
}
.cid-uAek98ZGR5 .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-uAek98ZGR5 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uAek98ZGR5 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAek98ZGR5 .text-box {
    padding: 1rem;
  }
}
.cid-uAek98ZGR5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uAek98ZGR5 .mbr-text,
.cid-uAek98ZGR5 .cost,
.cid-uAek98ZGR5 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tB85bPoWQz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-tB85bPoWQz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB85bPoWQz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB85bPoWQz .mbr-section-subtitle {
  color: #000000;
}
.cid-uQFViHET3F {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u70F8vcdGD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-u70F8vcdGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70F8vcdGD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70F8vcdGD .mbr-section-subtitle {
  color: #000000;
}
.cid-tPOyKLFyGI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tPOyKLFyGI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPOyKLFyGI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tPOyKLFyGI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tPOyKLFyGI .row {
  flex-direction: row-reverse;
}
.cid-tPOyKLFyGI img {
  width: 100%;
}
.cid-tB85MvgqdZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-tB85MvgqdZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB85MvgqdZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB85MvgqdZ .mbr-section-subtitle {
  color: #000000;
}
.cid-tB1AZH7rno {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u786FTkKMt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-u786FTkKMt .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-u786FTkKMt .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-u786FTkKMt .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #08943c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-u786FTkKMt .mbr-text {
  color: #000000;
}
.cid-u781lKjrGA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-u781lKjrGA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u781lKjrGA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u781lKjrGA .mbr-section-subtitle {
  color: #000000;
}
.cid-tB737Xejsa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tB737Xejsa .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tB737Xejsa .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tB737Xejsa .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0hTbwuTVv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0hTbwuTVv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0hTbwuTVv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0hTbwuTVv ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0hTbwuTVv li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0hTbwuTVv ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #15963c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0hTbwuTVv .list {
  color: #000000;
}
.cid-u70BmNYOFb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-u70BmNYOFb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70BmNYOFb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70BmNYOFb .mbr-section-subtitle {
  color: #000000;
}
.cid-tPOHAOO1qi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tPOHAOO1qi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPOHAOO1qi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tPOHAOO1qi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tPOHAOO1qi .row {
  flex-direction: row-reverse;
}
.cid-tPOHAOO1qi img {
  width: 100%;
}
.cid-uAeknBI1yR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAeknBI1yR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAeknBI1yR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAeknBI1yR .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uAeknBI1yR .card-wrapper {
  background-color: #fcfdf4;
  border-radius: 4px;
}
.cid-uAeknBI1yR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uAeknBI1yR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uAeknBI1yR .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uAeknBI1yR .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uAeknBI1yR .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uAeknBI1yR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uAeknBI1yR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAeknBI1yR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uAeknBI1yR .card-title {
  color: #000000;
}
.cid-uAeknBI1yR .mbr-text,
.cid-uAeknBI1yR .social-row {
  color: #000000;
}
.cid-uRAuJq5MM7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-uRAuJq5MM7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRAuJq5MM7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRAuJq5MM7 .mbr-section-subtitle {
  color: #000000;
}
.cid-uAewDGoVSS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAewDGoVSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAewDGoVSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAewDGoVSS .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uAewDGoVSS .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAewDGoVSS .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-uAewDGoVSS .panel-body,
.cid-uAewDGoVSS .card-header {
  padding: 1rem 0;
}
.cid-uAewDGoVSS .panel-title-edit {
  color: #000000;
}
.cid-uQFYjmeKkt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQFYjmeKkt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQFYjmeKkt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQFYjmeKkt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uQFYjmeKkt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQFYjmeKkt .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-uQFYjmeKkt .panel-body,
.cid-uQFYjmeKkt .card-header {
  padding: 1rem 0;
}
.cid-uQFYjmeKkt .panel-title-edit {
  color: #000000;
}
.cid-tB7b1ZT912 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tB7b1ZT912 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB7b1ZT912 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB7b1ZT912 .oldcost {
  text-decoration: line-through;
  color: #000000;
  text-align: center;
}
.cid-tB7b1ZT912 .currentcost {
  color: #000000;
  text-align: left;
}
.cid-tB7b1ZT912 .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-tB7b1ZT912 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tB7b1ZT912 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tB7b1ZT912 .text-box {
    padding: 1rem;
  }
}
.cid-tB7b1ZT912 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tB7b1ZT912 H5 {
  color: #232323;
  text-align: left;
}
.cid-tB7b1ZT912 .mbr-text,
.cid-tB7b1ZT912 .cost,
.cid-tB7b1ZT912 .mbr-section-btn {
  color: #ffffff;
}
.cid-tB7ggl8pAB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tB7Yu884tX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tB7Yu884tX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB7Yu884tX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB7Yu884tX ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tB7Yu884tX li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tB7Yu884tX ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tB7Yu884tX .list {
  color: #ffffff;
}
.cid-tB7Zpny08V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tB7Zpny08V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB7Zpny08V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB7Zpny08V .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tB7Zpny08V .mbr-section-title {
  color: #ffffff;
}
.cid-uQFRSrRbcl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uQFRSrRbcl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQFRSrRbcl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQFRSrRbcl .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uQFRSrRbcl .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uQFRSrRbcl .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uQFRSrRbcl .bg-pinterest:hover {
  background: #b3001b;
}
.cid-uQFRSrRbcl .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-uQFRSrRbcl .bg-instagram:hover {
  background: #bd005c;
}
.cid-uQFRSrRbcl .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-uQFRSrRbcl [class^="socicon-"]:before,
.cid-uQFRSrRbcl [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uQFRSrRbcl .mbr-section-title,
.cid-uQFRSrRbcl .social-list {
  color: #ffffff;
}
.cid-tBuMPzdHFY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBuMPzdHFY .mbr-section-title {
  text-align: center;
}
.cid-tBuMj9hDkk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBuMj9hDkk .mbr-section-title {
  text-align: center;
}
.cid-tBuOj1XZ1f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBuOj1XZ1f .mbr-section-title {
  text-align: center;
}
.cid-v0m4WOCwOf .navbar-dropdown {
  position: relative !important;
}
.cid-v0m4WOCwOf .navbar-dropdown {
  position: absolute !important;
}
.cid-v0m4WOCwOf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0m4WOCwOf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0m4WOCwOf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0m4WOCwOf .dropdown-item:hover,
.cid-v0m4WOCwOf .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-v0m4WOCwOf .dropdown-item:hover span {
  color: white;
}
.cid-v0m4WOCwOf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0m4WOCwOf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0m4WOCwOf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0m4WOCwOf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0m4WOCwOf .nav-link {
  position: relative;
}
.cid-v0m4WOCwOf .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0m4WOCwOf .container {
    flex-wrap: wrap;
  }
}
.cid-v0m4WOCwOf .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0m4WOCwOf .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0m4WOCwOf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0m4WOCwOf .dropdown-menu,
.cid-v0m4WOCwOf .navbar.opened {
  background: #ffffff !important;
}
.cid-v0m4WOCwOf .nav-item:focus,
.cid-v0m4WOCwOf .nav-link:focus {
  outline: none;
}
.cid-v0m4WOCwOf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0m4WOCwOf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0m4WOCwOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0m4WOCwOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0m4WOCwOf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0m4WOCwOf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0m4WOCwOf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v0m4WOCwOf .navbar.opened {
  transition: all 0.3s;
}
.cid-v0m4WOCwOf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0m4WOCwOf .navbar .navbar-logo img {
  width: auto;
}
.cid-v0m4WOCwOf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0m4WOCwOf .navbar.collapsed {
  justify-content: center;
}
.cid-v0m4WOCwOf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0m4WOCwOf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0m4WOCwOf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v0m4WOCwOf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0m4WOCwOf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0m4WOCwOf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0m4WOCwOf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0m4WOCwOf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0m4WOCwOf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0m4WOCwOf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0m4WOCwOf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0m4WOCwOf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0m4WOCwOf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0m4WOCwOf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0m4WOCwOf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0m4WOCwOf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0m4WOCwOf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0m4WOCwOf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0m4WOCwOf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0m4WOCwOf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0m4WOCwOf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0m4WOCwOf .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0m4WOCwOf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0m4WOCwOf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0m4WOCwOf .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-v0m4WOCwOf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0m4WOCwOf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0m4WOCwOf .dropdown-item.active,
.cid-v0m4WOCwOf .dropdown-item:active {
  background-color: transparent;
}
.cid-v0m4WOCwOf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0m4WOCwOf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0m4WOCwOf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0m4WOCwOf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0m4WOCwOf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0m4WOCwOf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0m4WOCwOf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0m4WOCwOf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0m4WOCwOf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0m4WOCwOf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b52525;
}
.cid-v0m4WOCwOf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0m4WOCwOf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0m4WOCwOf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0m4WOCwOf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0m4WOCwOf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0m4WOCwOf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0m4WOCwOf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0m4WOCwOf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0m4WOCwOf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v0m4WOCwOf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0m4WOCwOf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0m4WOCwOf .navbar {
    height: 70px;
  }
  .cid-v0m4WOCwOf .navbar.opened {
    height: auto;
  }
  .cid-v0m4WOCwOf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0m4WOYSLM {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f1f8ea;
}
.cid-v0m4WOYSLM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WOYSLM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WOYSLM .row {
  flex-direction: row-reverse;
}
.cid-v0m4WOYSLM .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0m4WOYSLM .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v0m4WOYSLM .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v0m4WOYSLM .mbr-section-title {
  text-align: center;
}
.cid-v0m4WOYSLM .mbr-text,
.cid-v0m4WOYSLM .mbr-section-btn {
  text-align: center;
}
.cid-v0m4WPgA4d {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0m4WPgA4d img,
.cid-v0m4WPgA4d .item-img {
  width: 100%;
}
.cid-v0m4WPgA4d .item:focus,
.cid-v0m4WPgA4d span:focus {
  outline: none;
}
.cid-v0m4WPgA4d .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v0m4WPgA4d .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fcfdf4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v0m4WPgA4d .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0m4WPgA4d .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v0m4WPgA4d .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v0m4WPgA4d .mbr-section-title {
  color: #000000;
}
.cid-v0m4WPgA4d .mbr-text,
.cid-v0m4WPgA4d .mbr-section-btn {
  text-align: center;
}
.cid-v0m4WPgA4d .item-title {
  text-align: center;
}
.cid-v0m4WPgA4d .item-subtitle {
  text-align: center;
}
.cid-v0m4WPJHnw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0m4WPJHnw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WPJHnw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WPJHnw .mbr-section-subtitle {
  color: #000000;
}
.cid-v0m4WPZ2cp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0m4WQabd6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0m4WQabd6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WQabd6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WQabd6 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0m4WQqtuI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0m4WQqtuI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WQqtuI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WQqtuI .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0m4WQqtuI .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v0m4WQqtuI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0m4WQqtuI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0m4WQqtuI .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0m4WQqtuI .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0m4WQqtuI .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0m4WQqtuI .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0m4WQqtuI .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0m4WQqtuI .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0m4WQVP9J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0m4WQVP9J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WQVP9J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WQVP9J .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-v0m4WQVP9J .currentcost {
  color: #e43f3f;
}
.cid-v0m4WQVP9J .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0m4WQVP9J .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0m4WQVP9J .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0m4WQVP9J .text-box {
    padding: 1rem;
  }
}
.cid-v0m4WQVP9J .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0m4WQVP9J .mbr-text,
.cid-v0m4WQVP9J .cost,
.cid-v0m4WQVP9J .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-v0m4WRdP60 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0m4WRdP60 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WRdP60 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WRdP60 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0m4WRtlFK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0m4WRLABN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0m4WRLABN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WRLABN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WRLABN .mbr-section-subtitle {
  color: #000000;
}
.cid-v0m4WS1NYO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0m4WS1NYO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WS1NYO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0m4WS1NYO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0m4WS1NYO .row {
  flex-direction: row-reverse;
}
.cid-v0m4WS1NYO img {
  width: 100%;
}
.cid-v0m4WSg2dV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0m4WSg2dV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WSg2dV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WSg2dV .mbr-section-subtitle {
  color: #000000;
}
.cid-v0m4WSz2AG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v0m4WSLOKx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0m4WSLOKx .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0m4WSLOKx .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0m4WSLOKx .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #08943c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0m4WSLOKx .mbr-text {
  color: #000000;
}
.cid-v0m4WSZTt1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0m4WSZTt1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WSZTt1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WSZTt1 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0m4WTeSsH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0m4WTeSsH .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0m4WTeSsH .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0m4WTeSsH .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0m4WTv1oJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0m4WTv1oJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WTv1oJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WTv1oJ ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0m4WTv1oJ li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0m4WTv1oJ ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #15963c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0m4WTv1oJ .list {
  color: #000000;
}
.cid-v0m4WTPEyF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0m4WTPEyF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WTPEyF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WTPEyF .mbr-section-subtitle {
  color: #000000;
}
.cid-v0m4WU5Ym4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0m4WU5Ym4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WU5Ym4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0m4WU5Ym4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0m4WU5Ym4 .row {
  flex-direction: row-reverse;
}
.cid-v0m4WU5Ym4 img {
  width: 100%;
}
.cid-v0m4WUlj7C {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0m4WUlj7C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WUlj7C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WUlj7C .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0m4WUlj7C .card-wrapper {
  background-color: #fcfdf4;
  border-radius: 4px;
}
.cid-v0m4WUlj7C .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0m4WUlj7C .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0m4WUlj7C .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0m4WUlj7C .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0m4WUlj7C .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0m4WUlj7C .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0m4WUlj7C .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0m4WUlj7C .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0m4WUlj7C .card-title {
  color: #000000;
}
.cid-v0m4WUlj7C .mbr-text,
.cid-v0m4WUlj7C .social-row {
  color: #000000;
}
.cid-v0m4WUXgvX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0m4WUXgvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WUXgvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WUXgvX .mbr-section-subtitle {
  color: #000000;
}
.cid-v0m4WVfHTn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0m4WVfHTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WVfHTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WVfHTn .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0m4WVfHTn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0m4WVfHTn .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0m4WVfHTn .panel-body,
.cid-v0m4WVfHTn .card-header {
  padding: 1rem 0;
}
.cid-v0m4WVfHTn .panel-title-edit {
  color: #000000;
}
.cid-v0m4WVEpaH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0m4WVEpaH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WVEpaH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WVEpaH .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0m4WVEpaH .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0m4WVEpaH .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0m4WVEpaH .panel-body,
.cid-v0m4WVEpaH .card-header {
  padding: 1rem 0;
}
.cid-v0m4WVEpaH .panel-title-edit {
  color: #000000;
}
.cid-v0m4WVZ2wP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0m4WVZ2wP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WVZ2wP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WVZ2wP .oldcost {
  text-decoration: line-through;
  color: #000000;
  text-align: center;
}
.cid-v0m4WVZ2wP .currentcost {
  color: #000000;
  text-align: left;
}
.cid-v0m4WVZ2wP .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0m4WVZ2wP .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0m4WVZ2wP .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0m4WVZ2wP .text-box {
    padding: 1rem;
  }
}
.cid-v0m4WVZ2wP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0m4WVZ2wP H5 {
  color: #232323;
  text-align: left;
}
.cid-v0m4WVZ2wP .mbr-text,
.cid-v0m4WVZ2wP .cost,
.cid-v0m4WVZ2wP .mbr-section-btn {
  color: #ffffff;
}
.cid-v0m4WWkL96 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0m4WWFOmy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0m4WWFOmy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WWFOmy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WWFOmy ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0m4WWFOmy li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0m4WWFOmy ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0m4WWFOmy .list {
  color: #ffffff;
}
.cid-v0m4WX0bSl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0m4WX0bSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WX0bSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WX0bSl .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0m4WX0bSl .mbr-section-title {
  color: #ffffff;
}
.cid-v0m4WXiFgQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0m4WXiFgQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0m4WXiFgQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0m4WXiFgQ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v0m4WXiFgQ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-v0m4WXiFgQ .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v0m4WXiFgQ .bg-pinterest:hover {
  background: #b3001b;
}
.cid-v0m4WXiFgQ .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-v0m4WXiFgQ .bg-instagram:hover {
  background: #bd005c;
}
.cid-v0m4WXiFgQ .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-v0m4WXiFgQ [class^="socicon-"]:before,
.cid-v0m4WXiFgQ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-v0m4WXiFgQ .mbr-section-title,
.cid-v0m4WXiFgQ .social-list {
  color: #ffffff;
}
.cid-v0mcR5DI6a .navbar-dropdown {
  position: relative !important;
}
.cid-v0mcR5DI6a .navbar-dropdown {
  position: absolute !important;
}
.cid-v0mcR5DI6a .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0mcR5DI6a .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0mcR5DI6a .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0mcR5DI6a .dropdown-item:hover,
.cid-v0mcR5DI6a .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-v0mcR5DI6a .dropdown-item:hover span {
  color: white;
}
.cid-v0mcR5DI6a .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0mcR5DI6a .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0mcR5DI6a .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0mcR5DI6a .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0mcR5DI6a .nav-link {
  position: relative;
}
.cid-v0mcR5DI6a .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0mcR5DI6a .container {
    flex-wrap: wrap;
  }
}
.cid-v0mcR5DI6a .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0mcR5DI6a .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0mcR5DI6a .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0mcR5DI6a .dropdown-menu,
.cid-v0mcR5DI6a .navbar.opened {
  background: #ffffff !important;
}
.cid-v0mcR5DI6a .nav-item:focus,
.cid-v0mcR5DI6a .nav-link:focus {
  outline: none;
}
.cid-v0mcR5DI6a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0mcR5DI6a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0mcR5DI6a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0mcR5DI6a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0mcR5DI6a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0mcR5DI6a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0mcR5DI6a .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v0mcR5DI6a .navbar.opened {
  transition: all 0.3s;
}
.cid-v0mcR5DI6a .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0mcR5DI6a .navbar .navbar-logo img {
  width: auto;
}
.cid-v0mcR5DI6a .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0mcR5DI6a .navbar.collapsed {
  justify-content: center;
}
.cid-v0mcR5DI6a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0mcR5DI6a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0mcR5DI6a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v0mcR5DI6a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0mcR5DI6a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0mcR5DI6a .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0mcR5DI6a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0mcR5DI6a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0mcR5DI6a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0mcR5DI6a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0mcR5DI6a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0mcR5DI6a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0mcR5DI6a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0mcR5DI6a .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0mcR5DI6a .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0mcR5DI6a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0mcR5DI6a .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0mcR5DI6a .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0mcR5DI6a .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0mcR5DI6a .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0mcR5DI6a .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0mcR5DI6a .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0mcR5DI6a .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0mcR5DI6a .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0mcR5DI6a .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-v0mcR5DI6a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0mcR5DI6a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0mcR5DI6a .dropdown-item.active,
.cid-v0mcR5DI6a .dropdown-item:active {
  background-color: transparent;
}
.cid-v0mcR5DI6a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0mcR5DI6a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0mcR5DI6a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0mcR5DI6a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0mcR5DI6a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0mcR5DI6a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0mcR5DI6a ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0mcR5DI6a .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0mcR5DI6a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0mcR5DI6a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b52525;
}
.cid-v0mcR5DI6a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0mcR5DI6a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mcR5DI6a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mcR5DI6a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0mcR5DI6a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mcR5DI6a nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0mcR5DI6a nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0mcR5DI6a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mcR5DI6a .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v0mcR5DI6a a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0mcR5DI6a .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0mcR5DI6a .navbar {
    height: 70px;
  }
  .cid-v0mcR5DI6a .navbar.opened {
    height: auto;
  }
  .cid-v0mcR5DI6a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0mcR5XCuS {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f1f8ea;
}
.cid-v0mcR5XCuS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR5XCuS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcR5XCuS .row {
  flex-direction: row-reverse;
}
.cid-v0mcR5XCuS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0mcR5XCuS .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mcR5XCuS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v0mcR5XCuS .mbr-section-title {
  text-align: center;
}
.cid-v0mcR5XCuS .mbr-text,
.cid-v0mcR5XCuS .mbr-section-btn {
  text-align: center;
}
.cid-v0mcR6cT9T {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mcR6cT9T img,
.cid-v0mcR6cT9T .item-img {
  width: 100%;
}
.cid-v0mcR6cT9T .item:focus,
.cid-v0mcR6cT9T span:focus {
  outline: none;
}
.cid-v0mcR6cT9T .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v0mcR6cT9T .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fcfdf4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v0mcR6cT9T .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mcR6cT9T .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v0mcR6cT9T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v0mcR6cT9T .mbr-section-title {
  color: #000000;
}
.cid-v0mcR6cT9T .mbr-text,
.cid-v0mcR6cT9T .mbr-section-btn {
  text-align: center;
}
.cid-v0mcR6cT9T .item-title {
  text-align: center;
}
.cid-v0mcR6cT9T .item-subtitle {
  text-align: center;
}
.cid-v0mcR6F8l0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mcR6F8l0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR6F8l0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcR6F8l0 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mcR6T5d4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mcR73Ii1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mcR73Ii1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR73Ii1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcR73Ii1 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mcR7iFAZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0mcR7iFAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR7iFAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcR7iFAZ .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0mcR7iFAZ .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v0mcR7iFAZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mcR7iFAZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0mcR7iFAZ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0mcR7iFAZ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0mcR7iFAZ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0mcR7iFAZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0mcR7iFAZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mcR7iFAZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0mcR7MHGJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mcR7MHGJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR7MHGJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcR7MHGJ .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-v0mcR7MHGJ .currentcost {
  color: #e43f3f;
}
.cid-v0mcR7MHGJ .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0mcR7MHGJ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mcR7MHGJ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0mcR7MHGJ .text-box {
    padding: 1rem;
  }
}
.cid-v0mcR7MHGJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mcR7MHGJ .mbr-text,
.cid-v0mcR7MHGJ .cost,
.cid-v0mcR7MHGJ .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-v0mcR84zJy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mcR84zJy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR84zJy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcR84zJy .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mcR8iAdJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mcR8woyZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mcR8woyZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR8woyZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcR8woyZ .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mcR8K3kP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mcR8K3kP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR8K3kP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0mcR8K3kP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0mcR8K3kP .row {
  flex-direction: row-reverse;
}
.cid-v0mcR8K3kP img {
  width: 100%;
}
.cid-v0mcR8Yosy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mcR8Yosy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR8Yosy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcR8Yosy .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mcR9jd45 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v0mcR9vmn0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0mcR9vmn0 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0mcR9vmn0 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0mcR9vmn0 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #08943c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0mcR9vmn0 .mbr-text {
  color: #000000;
}
.cid-v0mcR9H6RP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mcR9H6RP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcR9H6RP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcR9H6RP .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mcR9X44w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mcR9X44w .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0mcR9X44w .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0mcR9X44w .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0mcRaaaRf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0mcRaaaRf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRaaaRf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRaaaRf ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0mcRaaaRf li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0mcRaaaRf ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #15963c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0mcRaaaRf .list {
  color: #000000;
}
.cid-v0mcRappSj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mcRappSj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRappSj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRappSj .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mcRaSZsA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mcRaSZsA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRaSZsA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0mcRaSZsA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0mcRaSZsA .row {
  flex-direction: row-reverse;
}
.cid-v0mcRaSZsA img {
  width: 100%;
}
.cid-v0mcRbeCfB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mcRbeCfB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRbeCfB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRbeCfB .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0mcRbeCfB .card-wrapper {
  background-color: #fcfdf4;
  border-radius: 4px;
}
.cid-v0mcRbeCfB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mcRbeCfB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0mcRbeCfB .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0mcRbeCfB .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0mcRbeCfB .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0mcRbeCfB .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0mcRbeCfB .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mcRbeCfB .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0mcRbeCfB .card-title {
  color: #000000;
}
.cid-v0mcRbeCfB .mbr-text,
.cid-v0mcRbeCfB .social-row {
  color: #000000;
}
.cid-v0mcRbTjZC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mcRbTjZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRbTjZC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRbTjZC .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mcRcbq21 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mcRcbq21 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRcbq21 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRcbq21 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0mcRcbq21 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0mcRcbq21 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0mcRcbq21 .panel-body,
.cid-v0mcRcbq21 .card-header {
  padding: 1rem 0;
}
.cid-v0mcRcbq21 .panel-title-edit {
  color: #000000;
}
.cid-v0mcRcufSl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mcRcufSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRcufSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRcufSl .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0mcRcufSl .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0mcRcufSl .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0mcRcufSl .panel-body,
.cid-v0mcRcufSl .card-header {
  padding: 1rem 0;
}
.cid-v0mcRcufSl .panel-title-edit {
  color: #000000;
}
.cid-v0mcRcOBh4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0mcRcOBh4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRcOBh4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRcOBh4 .oldcost {
  text-decoration: line-through;
  color: #000000;
  text-align: center;
}
.cid-v0mcRcOBh4 .currentcost {
  color: #000000;
  text-align: left;
}
.cid-v0mcRcOBh4 .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0mcRcOBh4 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mcRcOBh4 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0mcRcOBh4 .text-box {
    padding: 1rem;
  }
}
.cid-v0mcRcOBh4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mcRcOBh4 H5 {
  color: #232323;
  text-align: left;
}
.cid-v0mcRcOBh4 .mbr-text,
.cid-v0mcRcOBh4 .cost,
.cid-v0mcRcOBh4 .mbr-section-btn {
  color: #ffffff;
}
.cid-v0mcRd8hW6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mcRdlvHV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0mcRdlvHV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRdlvHV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRdlvHV ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0mcRdlvHV li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0mcRdlvHV ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0mcRdlvHV .list {
  color: #ffffff;
}
.cid-v0mcRdDFMC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0mcRdDFMC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRdDFMC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRdDFMC .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0mcRdDFMC .mbr-section-title {
  color: #ffffff;
}
.cid-v0mcRdTFCh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0mcRdTFCh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mcRdTFCh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mcRdTFCh .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v0mcRdTFCh .bg-facebook:hover {
  background: #0b60cb;
}
.cid-v0mcRdTFCh .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v0mcRdTFCh .bg-pinterest:hover {
  background: #b3001b;
}
.cid-v0mcRdTFCh .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-v0mcRdTFCh .bg-instagram:hover {
  background: #bd005c;
}
.cid-v0mcRdTFCh .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-v0mcRdTFCh [class^="socicon-"]:before,
.cid-v0mcRdTFCh [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-v0mcRdTFCh .mbr-section-title,
.cid-v0mcRdTFCh .social-list {
  color: #ffffff;
}
.cid-v0mdo7jddQ .navbar-dropdown {
  position: relative !important;
}
.cid-v0mdo7jddQ .navbar-dropdown {
  position: absolute !important;
}
.cid-v0mdo7jddQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0mdo7jddQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0mdo7jddQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0mdo7jddQ .dropdown-item:hover,
.cid-v0mdo7jddQ .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-v0mdo7jddQ .dropdown-item:hover span {
  color: white;
}
.cid-v0mdo7jddQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0mdo7jddQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0mdo7jddQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0mdo7jddQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0mdo7jddQ .nav-link {
  position: relative;
}
.cid-v0mdo7jddQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0mdo7jddQ .container {
    flex-wrap: wrap;
  }
}
.cid-v0mdo7jddQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0mdo7jddQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0mdo7jddQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0mdo7jddQ .dropdown-menu,
.cid-v0mdo7jddQ .navbar.opened {
  background: #ffffff !important;
}
.cid-v0mdo7jddQ .nav-item:focus,
.cid-v0mdo7jddQ .nav-link:focus {
  outline: none;
}
.cid-v0mdo7jddQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0mdo7jddQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0mdo7jddQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0mdo7jddQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0mdo7jddQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0mdo7jddQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0mdo7jddQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v0mdo7jddQ .navbar.opened {
  transition: all 0.3s;
}
.cid-v0mdo7jddQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0mdo7jddQ .navbar .navbar-logo img {
  width: auto;
}
.cid-v0mdo7jddQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0mdo7jddQ .navbar.collapsed {
  justify-content: center;
}
.cid-v0mdo7jddQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0mdo7jddQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0mdo7jddQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v0mdo7jddQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0mdo7jddQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0mdo7jddQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0mdo7jddQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0mdo7jddQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0mdo7jddQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0mdo7jddQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0mdo7jddQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0mdo7jddQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0mdo7jddQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0mdo7jddQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0mdo7jddQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0mdo7jddQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0mdo7jddQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0mdo7jddQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0mdo7jddQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0mdo7jddQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0mdo7jddQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0mdo7jddQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0mdo7jddQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0mdo7jddQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0mdo7jddQ .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-v0mdo7jddQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0mdo7jddQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0mdo7jddQ .dropdown-item.active,
.cid-v0mdo7jddQ .dropdown-item:active {
  background-color: transparent;
}
.cid-v0mdo7jddQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0mdo7jddQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0mdo7jddQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0mdo7jddQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0mdo7jddQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0mdo7jddQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0mdo7jddQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0mdo7jddQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0mdo7jddQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0mdo7jddQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b52525;
}
.cid-v0mdo7jddQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0mdo7jddQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mdo7jddQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mdo7jddQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0mdo7jddQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mdo7jddQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0mdo7jddQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0mdo7jddQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mdo7jddQ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v0mdo7jddQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0mdo7jddQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0mdo7jddQ .navbar {
    height: 70px;
  }
  .cid-v0mdo7jddQ .navbar.opened {
    height: auto;
  }
  .cid-v0mdo7jddQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0mdo7Efw1 {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f1f8ea;
}
.cid-v0mdo7Efw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdo7Efw1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdo7Efw1 .row {
  flex-direction: row-reverse;
}
.cid-v0mdo7Efw1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0mdo7Efw1 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mdo7Efw1 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v0mdo7Efw1 .mbr-section-title {
  text-align: center;
}
.cid-v0mdo7Efw1 .mbr-text,
.cid-v0mdo7Efw1 .mbr-section-btn {
  text-align: center;
}
.cid-v0mdo7XR5h {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mdo7XR5h img,
.cid-v0mdo7XR5h .item-img {
  width: 100%;
}
.cid-v0mdo7XR5h .item:focus,
.cid-v0mdo7XR5h span:focus {
  outline: none;
}
.cid-v0mdo7XR5h .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v0mdo7XR5h .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fcfdf4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v0mdo7XR5h .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mdo7XR5h .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v0mdo7XR5h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v0mdo7XR5h .mbr-section-title {
  color: #000000;
}
.cid-v0mdo7XR5h .mbr-text,
.cid-v0mdo7XR5h .mbr-section-btn {
  text-align: center;
}
.cid-v0mdo7XR5h .item-title {
  text-align: center;
}
.cid-v0mdo7XR5h .item-subtitle {
  text-align: center;
}
.cid-v0mdo8iRjz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdo8iRjz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdo8iRjz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdo8iRjz .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdo8vEPu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdo8IUxE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdo8IUxE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdo8IUxE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdo8IUxE .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdo8V60M {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0mdo8V60M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdo8V60M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdo8V60M .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0mdo8V60M .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v0mdo8V60M .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdo8V60M .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0mdo8V60M .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0mdo8V60M .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0mdo8V60M .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0mdo8V60M .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0mdo8V60M .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mdo8V60M .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0mdo9rbsl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdo9rbsl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdo9rbsl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdo9rbsl .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-v0mdo9rbsl .currentcost {
  color: #e43f3f;
}
.cid-v0mdo9rbsl .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0mdo9rbsl .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mdo9rbsl .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0mdo9rbsl .text-box {
    padding: 1rem;
  }
}
.cid-v0mdo9rbsl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdo9rbsl .mbr-text,
.cid-v0mdo9rbsl .cost,
.cid-v0mdo9rbsl .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-v0mdo9Hrgu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdo9Hrgu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdo9Hrgu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdo9Hrgu .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdo9Wsk8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdoa7sa1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdoa7sa1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdoa7sa1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdoa7sa1 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdoaky8y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdoaky8y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdoaky8y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0mdoaky8y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0mdoaky8y .row {
  flex-direction: row-reverse;
}
.cid-v0mdoaky8y img {
  width: 100%;
}
.cid-v0mdoaBm1y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdoaBm1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdoaBm1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdoaBm1y .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdoaPi1l {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v0mdob1GVg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0mdob1GVg .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0mdob1GVg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0mdob1GVg .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #08943c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0mdob1GVg .mbr-text {
  color: #000000;
}
.cid-v0mdobduqJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdobduqJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdobduqJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdobduqJ .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdobrc6s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdobrc6s .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0mdobrc6s .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0mdobrc6s .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0mdobEbLR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0mdobEbLR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdobEbLR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdobEbLR ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0mdobEbLR li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0mdobEbLR ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #15963c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0mdobEbLR .list {
  color: #000000;
}
.cid-v0mdobXAKQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdobXAKQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdobXAKQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdobXAKQ .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdocfVHb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdocfVHb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdocfVHb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0mdocfVHb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0mdocfVHb .row {
  flex-direction: row-reverse;
}
.cid-v0mdocfVHb img {
  width: 100%;
}
.cid-v0mdoctj4k {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdoctj4k .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdoctj4k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdoctj4k .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0mdoctj4k .card-wrapper {
  background-color: #fcfdf4;
  border-radius: 4px;
}
.cid-v0mdoctj4k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdoctj4k .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0mdoctj4k .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0mdoctj4k .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0mdoctj4k .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0mdoctj4k .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0mdoctj4k .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mdoctj4k .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0mdoctj4k .card-title {
  color: #000000;
}
.cid-v0mdoctj4k .mbr-text,
.cid-v0mdoctj4k .social-row {
  color: #000000;
}
.cid-v0mdocZeM5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdocZeM5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdocZeM5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdocZeM5 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdodhkch {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mdodhkch .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdodhkch .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdodhkch .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0mdodhkch .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0mdodhkch .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0mdodhkch .panel-body,
.cid-v0mdodhkch .card-header {
  padding: 1rem 0;
}
.cid-v0mdodhkch .panel-title-edit {
  color: #000000;
}
.cid-v0mdodD8a9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdodD8a9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdodD8a9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdodD8a9 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0mdodD8a9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0mdodD8a9 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0mdodD8a9 .panel-body,
.cid-v0mdodD8a9 .card-header {
  padding: 1rem 0;
}
.cid-v0mdodD8a9 .panel-title-edit {
  color: #000000;
}
.cid-v0mdoe0kZk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0mdoe0kZk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdoe0kZk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdoe0kZk .oldcost {
  text-decoration: line-through;
  color: #000000;
  text-align: center;
}
.cid-v0mdoe0kZk .currentcost {
  color: #000000;
  text-align: left;
}
.cid-v0mdoe0kZk .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0mdoe0kZk .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mdoe0kZk .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0mdoe0kZk .text-box {
    padding: 1rem;
  }
}
.cid-v0mdoe0kZk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdoe0kZk H5 {
  color: #232323;
  text-align: left;
}
.cid-v0mdoe0kZk .mbr-text,
.cid-v0mdoe0kZk .cost,
.cid-v0mdoe0kZk .mbr-section-btn {
  color: #ffffff;
}
.cid-v0mdoejBjZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mdoeDD0A {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0mdoeDD0A .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdoeDD0A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdoeDD0A ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0mdoeDD0A li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0mdoeDD0A ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0mdoeDD0A .list {
  color: #ffffff;
}
.cid-v0mdoeYKJG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0mdoeYKJG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdoeYKJG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdoeYKJG .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0mdoeYKJG .mbr-section-title {
  color: #ffffff;
}
.cid-v0mdoffwvh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0mdoffwvh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdoffwvh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdoffwvh .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v0mdoffwvh .bg-facebook:hover {
  background: #0b60cb;
}
.cid-v0mdoffwvh .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v0mdoffwvh .bg-pinterest:hover {
  background: #b3001b;
}
.cid-v0mdoffwvh .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-v0mdoffwvh .bg-instagram:hover {
  background: #bd005c;
}
.cid-v0mdoffwvh .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-v0mdoffwvh [class^="socicon-"]:before,
.cid-v0mdoffwvh [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-v0mdoffwvh .mbr-section-title,
.cid-v0mdoffwvh .social-list {
  color: #ffffff;
}
.cid-v0mdGCWS7C .navbar-dropdown {
  position: relative !important;
}
.cid-v0mdGCWS7C .navbar-dropdown {
  position: absolute !important;
}
.cid-v0mdGCWS7C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0mdGCWS7C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0mdGCWS7C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0mdGCWS7C .dropdown-item:hover,
.cid-v0mdGCWS7C .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-v0mdGCWS7C .dropdown-item:hover span {
  color: white;
}
.cid-v0mdGCWS7C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0mdGCWS7C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0mdGCWS7C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0mdGCWS7C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0mdGCWS7C .nav-link {
  position: relative;
}
.cid-v0mdGCWS7C .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0mdGCWS7C .container {
    flex-wrap: wrap;
  }
}
.cid-v0mdGCWS7C .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0mdGCWS7C .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0mdGCWS7C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0mdGCWS7C .dropdown-menu,
.cid-v0mdGCWS7C .navbar.opened {
  background: #ffffff !important;
}
.cid-v0mdGCWS7C .nav-item:focus,
.cid-v0mdGCWS7C .nav-link:focus {
  outline: none;
}
.cid-v0mdGCWS7C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0mdGCWS7C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0mdGCWS7C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0mdGCWS7C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0mdGCWS7C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0mdGCWS7C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0mdGCWS7C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v0mdGCWS7C .navbar.opened {
  transition: all 0.3s;
}
.cid-v0mdGCWS7C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0mdGCWS7C .navbar .navbar-logo img {
  width: auto;
}
.cid-v0mdGCWS7C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0mdGCWS7C .navbar.collapsed {
  justify-content: center;
}
.cid-v0mdGCWS7C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0mdGCWS7C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0mdGCWS7C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v0mdGCWS7C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0mdGCWS7C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0mdGCWS7C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0mdGCWS7C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0mdGCWS7C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0mdGCWS7C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0mdGCWS7C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0mdGCWS7C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0mdGCWS7C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0mdGCWS7C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0mdGCWS7C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0mdGCWS7C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0mdGCWS7C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0mdGCWS7C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0mdGCWS7C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0mdGCWS7C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0mdGCWS7C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0mdGCWS7C .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0mdGCWS7C .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0mdGCWS7C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0mdGCWS7C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0mdGCWS7C .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-v0mdGCWS7C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0mdGCWS7C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0mdGCWS7C .dropdown-item.active,
.cid-v0mdGCWS7C .dropdown-item:active {
  background-color: transparent;
}
.cid-v0mdGCWS7C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0mdGCWS7C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0mdGCWS7C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0mdGCWS7C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0mdGCWS7C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0mdGCWS7C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0mdGCWS7C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0mdGCWS7C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0mdGCWS7C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0mdGCWS7C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b52525;
}
.cid-v0mdGCWS7C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0mdGCWS7C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mdGCWS7C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mdGCWS7C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0mdGCWS7C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mdGCWS7C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0mdGCWS7C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0mdGCWS7C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mdGCWS7C .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v0mdGCWS7C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0mdGCWS7C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0mdGCWS7C .navbar {
    height: 70px;
  }
  .cid-v0mdGCWS7C .navbar.opened {
    height: auto;
  }
  .cid-v0mdGCWS7C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0mdGDgTUq {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f1f8ea;
}
.cid-v0mdGDgTUq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGDgTUq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGDgTUq .row {
  flex-direction: row-reverse;
}
.cid-v0mdGDgTUq .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0mdGDgTUq .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mdGDgTUq .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v0mdGDgTUq .mbr-section-title {
  text-align: center;
}
.cid-v0mdGDgTUq .mbr-text,
.cid-v0mdGDgTUq .mbr-section-btn {
  text-align: center;
}
.cid-v0mdGDvqn3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mdGDvqn3 img,
.cid-v0mdGDvqn3 .item-img {
  width: 100%;
}
.cid-v0mdGDvqn3 .item:focus,
.cid-v0mdGDvqn3 span:focus {
  outline: none;
}
.cid-v0mdGDvqn3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v0mdGDvqn3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fcfdf4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v0mdGDvqn3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mdGDvqn3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v0mdGDvqn3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v0mdGDvqn3 .mbr-section-title {
  color: #000000;
}
.cid-v0mdGDvqn3 .mbr-text,
.cid-v0mdGDvqn3 .mbr-section-btn {
  text-align: center;
}
.cid-v0mdGDvqn3 .item-title {
  text-align: center;
}
.cid-v0mdGDvqn3 .item-subtitle {
  text-align: center;
}
.cid-v0mdGDQJAU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdGDQJAU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGDQJAU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGDQJAU .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdGE3Vdj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdGEfGFZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdGEfGFZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGEfGFZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGEfGFZ .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdGEwFGw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0mdGEwFGw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGEwFGw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGEwFGw .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0mdGEwFGw .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v0mdGEwFGw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdGEwFGw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0mdGEwFGw .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0mdGEwFGw .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0mdGEwFGw .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0mdGEwFGw .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0mdGEwFGw .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mdGEwFGw .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0mdGF2evN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdGF2evN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGF2evN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGF2evN .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-v0mdGF2evN .currentcost {
  color: #e43f3f;
}
.cid-v0mdGF2evN .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0mdGF2evN .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mdGF2evN .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0mdGF2evN .text-box {
    padding: 1rem;
  }
}
.cid-v0mdGF2evN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdGF2evN .mbr-text,
.cid-v0mdGF2evN .cost,
.cid-v0mdGF2evN .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-v0mdGFhImj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdGFhImj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGFhImj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGFhImj .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdGFvBBK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdGFIWD4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdGFIWD4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGFIWD4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGFIWD4 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdGFZyDs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdGFZyDs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGFZyDs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0mdGFZyDs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0mdGFZyDs .row {
  flex-direction: row-reverse;
}
.cid-v0mdGFZyDs img {
  width: 100%;
}
.cid-v0mdGGcGIj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdGGcGIj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGGcGIj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGGcGIj .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdGGqcr9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v0mdGGDJA4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0mdGGDJA4 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0mdGGDJA4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0mdGGDJA4 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #08943c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0mdGGDJA4 .mbr-text {
  color: #000000;
}
.cid-v0mdGGRHdL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdGGRHdL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGGRHdL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGGRHdL .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdGH73ex {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdGH73ex .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0mdGH73ex .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0mdGH73ex .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0mdGHnYg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0mdGHnYg6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGHnYg6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGHnYg6 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0mdGHnYg6 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0mdGHnYg6 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #15963c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0mdGHnYg6 .list {
  color: #000000;
}
.cid-v0mdGHDFBx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdGHDFBx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGHDFBx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGHDFBx .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdGHStGj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdGHStGj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGHStGj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0mdGHStGj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0mdGHStGj .row {
  flex-direction: row-reverse;
}
.cid-v0mdGHStGj img {
  width: 100%;
}
.cid-v0mdGI9f4Z {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdGI9f4Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGI9f4Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGI9f4Z .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0mdGI9f4Z .card-wrapper {
  background-color: #fcfdf4;
  border-radius: 4px;
}
.cid-v0mdGI9f4Z .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdGI9f4Z .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0mdGI9f4Z .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0mdGI9f4Z .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0mdGI9f4Z .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0mdGI9f4Z .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0mdGI9f4Z .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mdGI9f4Z .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0mdGI9f4Z .card-title {
  color: #000000;
}
.cid-v0mdGI9f4Z .mbr-text,
.cid-v0mdGI9f4Z .social-row {
  color: #000000;
}
.cid-v0mdGIHZh1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdGIHZh1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGIHZh1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGIHZh1 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdGIYGyx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mdGIYGyx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGIYGyx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGIYGyx .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0mdGIYGyx .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0mdGIYGyx .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0mdGIYGyx .panel-body,
.cid-v0mdGIYGyx .card-header {
  padding: 1rem 0;
}
.cid-v0mdGIYGyx .panel-title-edit {
  color: #000000;
}
.cid-v0mdGJjph4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdGJjph4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGJjph4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGJjph4 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0mdGJjph4 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0mdGJjph4 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0mdGJjph4 .panel-body,
.cid-v0mdGJjph4 .card-header {
  padding: 1rem 0;
}
.cid-v0mdGJjph4 .panel-title-edit {
  color: #000000;
}
.cid-v0mdGJEEww {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0mdGJEEww .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGJEEww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGJEEww .oldcost {
  text-decoration: line-through;
  color: #000000;
  text-align: center;
}
.cid-v0mdGJEEww .currentcost {
  color: #000000;
  text-align: left;
}
.cid-v0mdGJEEww .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0mdGJEEww .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mdGJEEww .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0mdGJEEww .text-box {
    padding: 1rem;
  }
}
.cid-v0mdGJEEww .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdGJEEww H5 {
  color: #232323;
  text-align: left;
}
.cid-v0mdGJEEww .mbr-text,
.cid-v0mdGJEEww .cost,
.cid-v0mdGJEEww .mbr-section-btn {
  color: #ffffff;
}
.cid-v0mdGK9FZ8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mdGKxzOA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0mdGKxzOA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGKxzOA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGKxzOA ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0mdGKxzOA li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0mdGKxzOA ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0mdGKxzOA .list {
  color: #ffffff;
}
.cid-v0mdGL19tZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0mdGL19tZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGL19tZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGL19tZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0mdGL19tZ .mbr-section-title {
  color: #ffffff;
}
.cid-v0mdGLtaRL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0mdGLtaRL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdGLtaRL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdGLtaRL .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v0mdGLtaRL .bg-facebook:hover {
  background: #0b60cb;
}
.cid-v0mdGLtaRL .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v0mdGLtaRL .bg-pinterest:hover {
  background: #b3001b;
}
.cid-v0mdGLtaRL .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-v0mdGLtaRL .bg-instagram:hover {
  background: #bd005c;
}
.cid-v0mdGLtaRL .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-v0mdGLtaRL [class^="socicon-"]:before,
.cid-v0mdGLtaRL [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-v0mdGLtaRL .mbr-section-title,
.cid-v0mdGLtaRL .social-list {
  color: #ffffff;
}
.cid-v0mdWKBfxk .navbar-dropdown {
  position: relative !important;
}
.cid-v0mdWKBfxk .navbar-dropdown {
  position: absolute !important;
}
.cid-v0mdWKBfxk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0mdWKBfxk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0mdWKBfxk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0mdWKBfxk .dropdown-item:hover,
.cid-v0mdWKBfxk .dropdown-item:focus {
  background: #232323 !important;
  color: white !important;
}
.cid-v0mdWKBfxk .dropdown-item:hover span {
  color: white;
}
.cid-v0mdWKBfxk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0mdWKBfxk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0mdWKBfxk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0mdWKBfxk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0mdWKBfxk .nav-link {
  position: relative;
}
.cid-v0mdWKBfxk .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0mdWKBfxk .container {
    flex-wrap: wrap;
  }
}
.cid-v0mdWKBfxk .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0mdWKBfxk .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0mdWKBfxk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0mdWKBfxk .dropdown-menu,
.cid-v0mdWKBfxk .navbar.opened {
  background: #ffffff !important;
}
.cid-v0mdWKBfxk .nav-item:focus,
.cid-v0mdWKBfxk .nav-link:focus {
  outline: none;
}
.cid-v0mdWKBfxk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0mdWKBfxk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0mdWKBfxk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0mdWKBfxk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0mdWKBfxk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0mdWKBfxk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0mdWKBfxk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v0mdWKBfxk .navbar.opened {
  transition: all 0.3s;
}
.cid-v0mdWKBfxk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0mdWKBfxk .navbar .navbar-logo img {
  width: auto;
}
.cid-v0mdWKBfxk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0mdWKBfxk .navbar.collapsed {
  justify-content: center;
}
.cid-v0mdWKBfxk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0mdWKBfxk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0mdWKBfxk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v0mdWKBfxk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0mdWKBfxk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0mdWKBfxk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0mdWKBfxk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0mdWKBfxk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0mdWKBfxk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0mdWKBfxk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0mdWKBfxk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0mdWKBfxk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0mdWKBfxk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0mdWKBfxk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0mdWKBfxk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0mdWKBfxk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0mdWKBfxk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0mdWKBfxk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0mdWKBfxk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0mdWKBfxk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0mdWKBfxk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0mdWKBfxk .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0mdWKBfxk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0mdWKBfxk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0mdWKBfxk .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-v0mdWKBfxk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0mdWKBfxk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0mdWKBfxk .dropdown-item.active,
.cid-v0mdWKBfxk .dropdown-item:active {
  background-color: transparent;
}
.cid-v0mdWKBfxk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0mdWKBfxk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0mdWKBfxk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0mdWKBfxk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0mdWKBfxk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0mdWKBfxk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0mdWKBfxk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0mdWKBfxk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0mdWKBfxk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0mdWKBfxk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b52525;
}
.cid-v0mdWKBfxk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0mdWKBfxk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mdWKBfxk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0mdWKBfxk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0mdWKBfxk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mdWKBfxk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0mdWKBfxk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0mdWKBfxk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0mdWKBfxk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v0mdWKBfxk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0mdWKBfxk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0mdWKBfxk .navbar {
    height: 70px;
  }
  .cid-v0mdWKBfxk .navbar.opened {
    height: auto;
  }
  .cid-v0mdWKBfxk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0mdWL04yn {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f1f8ea;
}
.cid-v0mdWL04yn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWL04yn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWL04yn .row {
  flex-direction: row-reverse;
}
.cid-v0mdWL04yn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0mdWL04yn .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mdWL04yn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v0mdWL04yn .mbr-section-title {
  text-align: center;
}
.cid-v0mdWL04yn .mbr-text,
.cid-v0mdWL04yn .mbr-section-btn {
  text-align: center;
}
.cid-v0mdWLgRCd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mdWLgRCd img,
.cid-v0mdWLgRCd .item-img {
  width: 100%;
}
.cid-v0mdWLgRCd .item:focus,
.cid-v0mdWLgRCd span:focus {
  outline: none;
}
.cid-v0mdWLgRCd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v0mdWLgRCd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fcfdf4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v0mdWLgRCd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mdWLgRCd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v0mdWLgRCd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v0mdWLgRCd .mbr-section-title {
  color: #000000;
}
.cid-v0mdWLgRCd .mbr-text,
.cid-v0mdWLgRCd .mbr-section-btn {
  text-align: center;
}
.cid-v0mdWLgRCd .item-title {
  text-align: center;
}
.cid-v0mdWLgRCd .item-subtitle {
  text-align: center;
}
.cid-v0mdWLDHI8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdWLDHI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWLDHI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWLDHI8 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdWLQqKJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdWM4k47 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdWM4k47 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWM4k47 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWM4k47 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdWMigaQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0mdWMigaQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWMigaQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWMigaQ .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0mdWMigaQ .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v0mdWMigaQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdWMigaQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0mdWMigaQ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0mdWMigaQ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0mdWMigaQ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0mdWMigaQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0mdWMigaQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mdWMigaQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0mdWMNFpT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdWMNFpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWMNFpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWMNFpT .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-v0mdWMNFpT .currentcost {
  color: #e43f3f;
}
.cid-v0mdWMNFpT .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0mdWMNFpT .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mdWMNFpT .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0mdWMNFpT .text-box {
    padding: 1rem;
  }
}
.cid-v0mdWMNFpT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdWMNFpT .mbr-text,
.cid-v0mdWMNFpT .cost,
.cid-v0mdWMNFpT .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-v0mdWN3uXO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdWN3uXO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWN3uXO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWN3uXO .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdWNhIgP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdWNA5d1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdWNA5d1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWNA5d1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWNA5d1 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdWNPhBV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdWNPhBV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWNPhBV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0mdWNPhBV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0mdWNPhBV .row {
  flex-direction: row-reverse;
}
.cid-v0mdWNPhBV img {
  width: 100%;
}
.cid-v0mdWO21ZH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdWO21ZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWO21ZH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWO21ZH .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdWOgLyb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v0mdWOsoHP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v0mdWOsoHP .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0mdWOsoHP .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0mdWOsoHP .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #08943c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0mdWOsoHP .mbr-text {
  color: #000000;
}
.cid-v0mdWOFJ1C {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdWOFJ1C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWOFJ1C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWOFJ1C .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdWOWNnj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdWOWNnj .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0mdWOWNnj .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0mdWOWNnj .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v0mdWP9C1s {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0mdWP9C1s .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWP9C1s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWP9C1s ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0mdWP9C1s li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0mdWP9C1s ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #15963c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0mdWP9C1s .list {
  color: #000000;
}
.cid-v0mdWPpS5A {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdWPpS5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWPpS5A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWPpS5A .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdWPFv3R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdWPFv3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWPFv3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0mdWPFv3R .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0mdWPFv3R .row {
  flex-direction: row-reverse;
}
.cid-v0mdWPFv3R img {
  width: 100%;
}
.cid-v0mdWPWK24 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdWPWK24 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWPWK24 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWPWK24 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v0mdWPWK24 .card-wrapper {
  background-color: #fcfdf4;
  border-radius: 4px;
}
.cid-v0mdWPWK24 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdWPWK24 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0mdWPWK24 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v0mdWPWK24 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0mdWPWK24 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0mdWPWK24 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v0mdWPWK24 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0mdWPWK24 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v0mdWPWK24 .card-title {
  color: #000000;
}
.cid-v0mdWPWK24 .mbr-text,
.cid-v0mdWPWK24 .social-row {
  color: #000000;
}
.cid-v0mdWQyrn8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f1f8ea;
}
.cid-v0mdWQyrn8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWQyrn8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWQyrn8 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0mdWQS3yQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mdWQS3yQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWQS3yQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWQS3yQ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0mdWQS3yQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0mdWQS3yQ .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0mdWQS3yQ .panel-body,
.cid-v0mdWQS3yQ .card-header {
  padding: 1rem 0;
}
.cid-v0mdWQS3yQ .panel-title-edit {
  color: #000000;
}
.cid-v0mdWRegID {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0mdWRegID .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWRegID .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWRegID .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0mdWRegID .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v0mdWRegID .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #232323;
}
.cid-v0mdWRegID .panel-body,
.cid-v0mdWRegID .card-header {
  padding: 1rem 0;
}
.cid-v0mdWRegID .panel-title-edit {
  color: #000000;
}
.cid-v0mdWRDaij {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0mdWRDaij .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWRDaij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWRDaij .oldcost {
  text-decoration: line-through;
  color: #000000;
  text-align: center;
}
.cid-v0mdWRDaij .currentcost {
  color: #000000;
  text-align: left;
}
.cid-v0mdWRDaij .card-wrapper {
  border-radius: 4px;
  background: #fcfdf4;
}
@media (min-width: 992px) {
  .cid-v0mdWRDaij .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0mdWRDaij .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0mdWRDaij .text-box {
    padding: 1rem;
  }
}
.cid-v0mdWRDaij .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0mdWRDaij H5 {
  color: #232323;
  text-align: left;
}
.cid-v0mdWRDaij .mbr-text,
.cid-v0mdWRDaij .cost,
.cid-v0mdWRDaij .mbr-section-btn {
  color: #ffffff;
}
.cid-v0mdWRVXC4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0mdWSqHJB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0mdWSqHJB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWSqHJB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWSqHJB ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v0mdWSqHJB li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v0mdWSqHJB ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v0mdWSqHJB .list {
  color: #ffffff;
}
.cid-v0mdWSPZRk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v0mdWSPZRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWSPZRk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWSPZRk .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0mdWSPZRk .mbr-section-title {
  color: #ffffff;
}
.cid-v0mdWT9zfd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0mdWT9zfd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0mdWT9zfd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0mdWT9zfd .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v0mdWT9zfd .bg-facebook:hover {
  background: #0b60cb;
}
.cid-v0mdWT9zfd .bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v0mdWT9zfd .bg-pinterest:hover {
  background: #b3001b;
}
.cid-v0mdWT9zfd .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-v0mdWT9zfd .bg-instagram:hover {
  background: #bd005c;
}
.cid-v0mdWT9zfd .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-v0mdWT9zfd [class^="socicon-"]:before,
.cid-v0mdWT9zfd [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-v0mdWT9zfd .mbr-section-title,
.cid-v0mdWT9zfd .social-list {
  color: #ffffff;
}
