body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.72rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.38rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #0b4d3e !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0b4d3e !important;
  border-color: #0b4d3e !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: #000101 !important;
  border-color: #000101 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000101 !important;
  border-color: #000101 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !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: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !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: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0b4d3e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000101 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0b4d3e !important;
  border-color: #0b4d3e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0b4d3e !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !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: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !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: #ff5500 !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: #0b4d3e;
}
.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: #ff9966;
}
.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: #0b4d3e;
  border-color: #0b4d3e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0b4d3e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #57e7c6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #0b4d3e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #0b4d3e;
}
/* 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: #0b4d3e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0b4d3e;
}
.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: #0b4d3e;
  border-bottom-color: #0b4d3e;
}
.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: #0b4d3e !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: #ff6666 !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='%230b4d3e' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-v9eTm6w3cq {
  z-index: 1000;
  width: 100%;
}
.cid-v9eTm6w3cq .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;
}
@media (max-width: 767px) {
  .cid-v9eTm6w3cq .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v9eTm6w3cq .navbar-nav {
  margin: auto;
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-v9eTm6w3cq .navbar-nav {
    max-width: 45%;
  }
}
.cid-v9eTm6w3cq .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v9eTm6w3cq .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v9eTm6w3cq .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v9eTm6w3cq .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v9eTm6w3cq .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v9eTm6w3cq .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v9eTm6w3cq .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v9eTm6w3cq .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v9eTm6w3cq .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9eTm6w3cq .navbar-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .cid-v9eTm6w3cq .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v9eTm6w3cq .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: auto !important;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9eTm6w3cq .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v9eTm6w3cq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9eTm6w3cq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9eTm6w3cq .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v9eTm6w3cq .navbar-caption {
  padding-left: 2rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v9eTm6w3cq .navbar-caption {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9eTm6w3cq .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v9eTm6w3cq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v9eTm6w3cq .container {
  display: flex;
  height: 90px;
  position: relative;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: #ffffff !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-v9eTm6w3cq .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v9eTm6w3cq .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v9eTm6w3cq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v9eTm6w3cq .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v9eTm6w3cq .nav-item:focus,
.cid-v9eTm6w3cq .nav-link:focus {
  outline: none;
}
.cid-v9eTm6w3cq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9eTm6w3cq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9eTm6w3cq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9eTm6w3cq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9eTm6w3cq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9eTm6w3cq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9eTm6w3cq .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v9eTm6w3cq .navbar.opened {
  transition: all 0.3s;
}
.cid-v9eTm6w3cq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9eTm6w3cq .navbar .navbar-logo img {
  width: auto;
}
.cid-v9eTm6w3cq .navbar .navbar-collapse {
  justify-content: flex-end;
}
.cid-v9eTm6w3cq .navbar.collapsed {
  justify-content: center;
}
.cid-v9eTm6w3cq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9eTm6w3cq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9eTm6w3cq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-v9eTm6w3cq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9eTm6w3cq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9eTm6w3cq .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-v9eTm6w3cq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9eTm6w3cq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9eTm6w3cq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v9eTm6w3cq .navbar {
    min-height: 72px;
  }
  .cid-v9eTm6w3cq .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v9eTm6w3cq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9eTm6w3cq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9eTm6w3cq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9eTm6w3cq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9eTm6w3cq .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-v9eTm6w3cq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9eTm6w3cq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v9eTm6w3cq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9eTm6w3cq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v9eTm6w3cq .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v9eTm6w3cq .dropdown-item.active,
.cid-v9eTm6w3cq .dropdown-item:active {
  background-color: transparent;
}
.cid-v9eTm6w3cq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9eTm6w3cq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9eTm6w3cq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9eTm6w3cq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9eTm6w3cq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v9eTm6w3cq .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v9eTm6w3cq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9eTm6w3cq .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v9eTm6w3cq .navbar-buttons {
    text-align: left;
  }
}
.cid-v9eTm6w3cq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9eTm6w3cq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9eTm6w3cq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9eTm6w3cq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9eTm6w3cq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9eTm6w3cq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9eTm6w3cq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9eTm6w3cq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9eTm6w3cq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9eTm6w3cq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9eTm6w3cq .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v9eTm6w3cq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9eTm6w3cq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v9eTm6w3cq .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9eTm6w3cq .navbar {
    height: 70px;
  }
  .cid-v9eTm6w3cq .navbar.opened {
    height: auto;
  }
  .cid-v9eTm6w3cq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v9eTm6w3cq .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v9eTm6w3cq .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v9eTm6w3cq .navbar-brand {
    margin-right: auto;
  }
  .cid-v9eTm6w3cq .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: #ffffff !important;
    background: #ffffff !important;
    backdrop-filter: blur(8px);
  }
  .cid-v9eTm6w3cq .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v9eTm6w3cq .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v9eTm6w3cq .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9eTm6w3cq .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v9eTm6w3cq .navbar-collapse {
  justify-content: flex-end !important;
}
@media (max-width: 575px) {
  .cid-v9eTm6w3cq .navbar-collapse {
    padding: 1rem;
  }
}
.cid-v9eTm6w3cq .menu3,
.cid-v9eTm6w3cq .menu3 .navbar,
.cid-v9eTm6w3cq .menu3 .navbar-dropdown {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
.cid-v9eTm6w3cq .menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
  background: inherit;
}
@media (min-width: 992px) {
  .cid-v9eTm6w3cq .menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .cid-v9eTm6w3cq section.menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 768px) {
  .cid-v9eTm6w3cq .menu3 .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }
  .cid-v9eTm6w3cq section.menu3,
  .cid-v9eTm6w3cq section.menu3 .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9eTm6w3cq section.menu3 .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .cid-v9eTm6w3cq .navbar.navbar-dropdown,
  .cid-v9eTm6w3cq .navbar.navbar-dropdown > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9eTm6w3cq .navbar.navbar-dropdown > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.cid-v9eTm6w3cq .menu3,
.cid-v9eTm6w3cq .menu3 .navbar,
.cid-v9eTm6w3cq .menu3 .btn,
.cid-v9eTm6w3cq .menu3 .nav-link,
.cid-v9eTm6w3cq .menu3 .dropdown-menu,
.cid-v9eTm6w3cq .menu3 .dropdown-item,
.cid-v9eTm6w3cq .menu3 .navbar-brand img {
  border-radius: 0 !important;
}
.cid-v9eTm6w3cq .menu3 .navbar {
  background: transparent !important;
}
.cid-v9eTm6w3cq .menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9eTm6w3cq .menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9eTm6w3cq section.menu3,
.cid-v9eTm6w3cq section.menu3 > nav,
.cid-v9eTm6w3cq section.menu3 .navbar,
.cid-v9eTm6w3cq section.menu3 .navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9eTm6w3cq section.menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
}
.cid-v9eTm6w3cq section.menu3 .container,
.cid-v9eTm6w3cq section.menu3 .navbar,
.cid-v9eTm6w3cq section.menu3 .nav-link,
.cid-v9eTm6w3cq section.menu3 .dropdown-menu,
.cid-v9eTm6w3cq section.menu3 .dropdown-item,
.cid-v9eTm6w3cq section.menu3 .btn,
.cid-v9eTm6w3cq section.menu3 img {
  border-radius: 0 !important;
}
.cid-v9eTm6w3cq section.menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9eTm6w3cq section.menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9eTm6w3cq .navbar.navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9eTm6w3cq .navbar.navbar-dropdown > .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  border-radius: 0 !important;
}
.cid-v9eTm6w3cq .navbar,
.cid-v9eTm6w3cq .navbar * {
  border-radius: 0 !important;
}
.cid-v9eTm6w3cq .navbar .nav-link,
.cid-v9eTm6w3cq .navbar .dropdown-menu,
.cid-v9eTm6w3cq .navbar .dropdown-item,
.cid-v9eTm6w3cq .navbar .btn {
  border-radius: 0 !important;
}
.cid-v9eFSx5yIJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v9eFSx5yIJ .carousel {
    max-height: 800px;
  }
  .cid-v9eFSx5yIJ .carousel img {
    height: 800px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v9eFSx5yIJ .carousel {
    min-height: 520px;
  }
  .cid-v9eFSx5yIJ .carousel img {
    height: 520px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-v9eFSx5yIJ .carousel {
    min-height: 440px;
  }
  .cid-v9eFSx5yIJ .carousel img {
    height: 440px;
    object-fit: cover;
  }
  .cid-v9eFSx5yIJ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v9eFSx5yIJ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v9eFSx5yIJ .carousel,
.cid-v9eFSx5yIJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v9eFSx5yIJ .item-wrapper {
  width: 100%;
}
.cid-v9eFSx5yIJ .item-menu-overlay {
  border-radius: 2rem;
}
.cid-v9eFSx5yIJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v9eFSx5yIJ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v9eFSx5yIJ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v9eFSx5yIJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v9eFSx5yIJ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v9eFSx5yIJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9eFSx5yIJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v9eFSx5yIJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v9eFSx5yIJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v9eFSx5yIJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v9eFSx5yIJ .carousel-indicators li.active,
.cid-v9eFSx5yIJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v9eFSx5yIJ .carousel-indicators li::after,
.cid-v9eFSx5yIJ .carousel-indicators li::before {
  content: none;
}
.cid-v9eFSx5yIJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v9eFSx5yIJ .carousel-indicators {
    display: none !important;
  }
}
.cid-v99b2C1VpY {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/backgroundparallax-1920x1800.webp");
}
.cid-v99b2C1VpY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v99b2C1VpY .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-v99b2C1VpY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v99b2C1VpY .row {
  flex-direction: row-reverse;
}
.cid-v99b2C1VpY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v99b2C1VpY .text-wrapper {
    padding: 2rem;
  }
}
.cid-v9cyWoGZlc .counter-section {
  width: 100%;
  padding: 60px 20px;
}
.cid-v9cyWoGZlc .counter-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.cid-v9cyWoGZlc .counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-v9cyWoGZlc .counter-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cid-v9cyWoGZlc .counter-number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: #111;
}
.cid-v9cyWoGZlc .counter-icon i {
  font-size: 34px;
  color: #0f5132;
}
.cid-v9cyWoGZlc .counter-label {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
@media (max-width: 992px) {
  .cid-v9cyWoGZlc .counter-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .cid-v9cyWoGZlc .counter-wrap {
    grid-template-columns: 1fr;
  }
  .cid-v9cyWoGZlc .counter-number {
    font-size: 48px;
  }
}
.cid-v99eCXAx3M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v99eCXAx3M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v99eCXAx3M .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-v99eCXAx3M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v99eCXAx3M .row {
  flex-direction: row-reverse;
}
.cid-v99eCXAx3M img {
  width: 100%;
}
.cid-v99eCXAx3M .mbr-description {
  text-align: left;
}
.cid-v99dCNU5p9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v99dCNU5p9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v99dCNU5p9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v99dCNU5p9 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-v99dCNU5p9 .item {
    margin-bottom: 4rem;
  }
}
.cid-v99dCNU5p9 .item:last-child .icon-box:before {
  display: none;
}
.cid-v99dCNU5p9 .item.last .icon-box:before {
  display: none;
}
.cid-v99dCNU5p9 .icon-box {
  background: #0b4d3e;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-v99dCNU5p9 .icon-box {
    margin-right: 1rem;
  }
}
.cid-v99dCNU5p9 .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #0b4d3e;
  transform: translate(-50%, 0);
}
.cid-v99dCNU5p9 span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v99dCNU5p9 .card {
    margin-bottom: 2rem;
  }
  .cid-v99dCNU5p9 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-v99dCNU5p9 .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-v99dCNU5p9 .icon-box::before {
    top: 114%;
  }
}
.cid-v99dCNU5p9 .card-title,
.cid-v99dCNU5p9 .card-box {
  color: #3a3a3a;
}
.cid-v99hT3FJVP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v99hT3FJVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v99hT3FJVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v99hT3FJVP .container {
    max-width: 1400px;
  }
}
.cid-v99hT3FJVP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0b4d3e;
  margin-bottom: 2rem;
}
.cid-v99hT3FJVP .row {
  justify-content: center;
}
.cid-v99hT3FJVP .card-text {
  color: #565656;
}
.cid-v99p6UONkT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/unicarepabrikmaklon-2000x1622.webp");
}
.cid-v99p6UONkT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v99p6UONkT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v99p6UONkT .mbr-text,
.cid-v99p6UONkT .mbr-section-btn {
  color: #232323;
}
.cid-v99p6UONkT .card-title,
.cid-v99p6UONkT .card-box {
  color: #ffffff;
}
.cid-v99p6UONkT .mbr-text,
.cid-v99p6UONkT .link-wrap {
  color: #ffffff;
}
.cid-v9cdc0e3AD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/backgroundparallax-1920x1800.webp");
}
.cid-v9cdc0e3AD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9cdc0e3AD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9cdc0e3AD .row {
  flex-direction: row-reverse;
}
.cid-v9cdc0e3AD .container-fluid {
  padding: 0;
}
.cid-v9cdc0e3AD .text-wrapper {
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .cid-v9cdc0e3AD .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9cdc0e3AD .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v9cdc0e3AD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v9cdc0e3AD .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-v9cdc0e3AD .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v9cdc0e3AD .mbr-text,
.cid-v9cdc0e3AD .mbr-section-btn {
  text-align: center;
}
.cid-v9cdc0e3AD .mbr-section-title DIV {
  text-align: center;
}
.cid-v9cdc0e3AD .mbr-section-title {
  text-align: center;
}
.cid-v9f0lDCwRs {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #07362b;
}
.cid-v9f0lDCwRs .item:focus,
.cid-v9f0lDCwRs span:focus {
  outline: none;
}
.cid-v9f0lDCwRs .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-v9f0lDCwRs .content-head {
  max-width: 800px;
}
.cid-v9f0lDCwRs .item {
  color: #ffffff;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-v9f0lDCwRs .item {
    min-height: 45px;
  }
}
.cid-v9fvjFAHcf {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9fvjFAHcf .line {
  background-color: #013b28;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9fvjFAHcf .mbr-text {
  color: #232323;
}
.cid-v9crtCLOR3 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v9crtCLOR3 img,
.cid-v9crtCLOR3 .item-img {
  width: 100%;
}
.cid-v9crtCLOR3 .item:focus,
.cid-v9crtCLOR3 span:focus {
  outline: none;
}
.cid-v9crtCLOR3 .item-wrapper {
  position: relative;
}
.cid-v9crtCLOR3 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9crtCLOR3 .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v9crtCLOR3 .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9crtCLOR3 .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v9crtCLOR3 .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v9crtCLOR3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9crtCLOR3 .mbr-section-title {
  color: #232323;
}
.cid-v9crtCLOR3 .mbr-text,
.cid-v9crtCLOR3 .mbr-section-btn {
  text-align: left;
}
.cid-v9crtCLOR3 .item-title {
  text-align: left;
}
.cid-v9crtCLOR3 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v9crtCLOR3 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-v9crtCLOR3 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v9crtCLOR3 .embla__button--next,
.cid-v9crtCLOR3 .embla__button--prev {
  display: flex;
}
.cid-v9crtCLOR3 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-v9crtCLOR3 .embla__button {
    display: none;
  }
}
.cid-v9crtCLOR3 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v9crtCLOR3 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v9crtCLOR3 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9crtCLOR3 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v9crtCLOR3 .embla__button {
    top: auto;
  }
}
.cid-v9crtCLOR3 .embla {
  position: relative;
  width: 100%;
}
.cid-v9crtCLOR3 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v9crtCLOR3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v9crtCLOR3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v9crtCLOR3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-v9crtCLOR3 .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-v9crtCLOR3 .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-v9crtCLOR3 .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-v9crtCLOR3 .mbr-section-subtitle {
  text-align: center;
}
.cid-v9e5adgPvX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/skincarewithunicare-2000x1125.webp");
}
.cid-v9e5adgPvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9e5adgPvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9e5adgPvX .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9e5adgPvX .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-v9e5adgPvX .mbr-section-title {
  color: #ffffff;
}
.cid-v9e5adgPvX .mbr-text,
.cid-v9e5adgPvX .mbr-section-btn {
  color: #ffffff;
}
.cid-v9f8aGaZxe .whatsapp-wrapper {
  position: fixed;
  bottom: 19px;
  right: 32px;
  z-index: 9999;
}
.cid-v9f8aGaZxe .whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease;
  width: auto;
  height: auto;
  min-width: calc(60px);
  min-height: calc(60px);
}
.cid-v9f8aGaZxe .whatsapp-button:hover {
  transform: scale(1.1);
}
.cid-v9f8aGaZxe .whatsapp-button::after {
  content: attr(data-tooltip);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cid-v9f8aGaZxe .whatsapp-button:hover::after {
  opacity: 1;
}
.cid-v9f8aGaZxe .tooltip-top::after {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v9f8aGaZxe .tooltip-bottom::after {
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v9f8aGaZxe .tooltip-left::after {
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
}
.cid-v9f8aGaZxe .tooltip-right::after {
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .cid-v9f8aGaZxe .whatsapp-button::after {
    display: none;
  }
}
.cid-v9f8aGaZxe DIV {
  color: #ffffff;
}
.cid-v9f8aGaZxe p {
  color: #000;
}
.cid-v9f8aGaZxe .hidden {
  display: none;
}
.cid-v9fgxgeCEc {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9fgxgeCEc .item-subtitle {
  line-height: 1.2;
  color: #000000;
  text-align: left;
}
.cid-v9fgxgeCEc img,
.cid-v9fgxgeCEc .item-img {
  width: 100%;
}
.cid-v9fgxgeCEc .item:focus,
.cid-v9fgxgeCEc span:focus {
  outline: none;
}
.cid-v9fgxgeCEc .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v9fgxgeCEc .item {
    margin-bottom: 1rem;
  }
}
.cid-v9fgxgeCEc .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v9fgxgeCEc .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-v9fgxgeCEc .item-content .item-footer {
  margin-top: auto;
}
.cid-v9fgxgeCEc .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-v9fgxgeCEc .mbr-text,
.cid-v9fgxgeCEc .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9fgxgeCEc .item-title {
  color: #000000;
  text-align: left;
}
.cid-v9fgxgeCEc .content-head {
  max-width: 800px;
}
.cid-v9fgxgeCEc .mbr-section-subtitle {
  text-align: left;
}
.cid-v9ceBJkRhG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-v9ceBJkRhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ceBJkRhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9ceBJkRhG .google-map {
  height: 30rem;
  position: relative;
}
.cid-v9ceBJkRhG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v9ceBJkRhG .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v9ceBJkRhG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v9ceBJkRhG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v9ceBJkRhG .mbr-section-title {
  color: #ffffff;
}
.cid-v9emLsKmCb {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #07362b;
}
.cid-v9emLsKmCb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9emLsKmCb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9emLsKmCb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v9emLsKmCb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9emLsKmCb .row {
    text-align: center;
  }
  .cid-v9emLsKmCb .row > div {
    margin: auto;
  }
  .cid-v9emLsKmCb .social-row {
    justify-content: center;
  }
}
.cid-v9emLsKmCb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v9emLsKmCb .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v9emLsKmCb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v9emLsKmCb .list {
    margin-bottom: 0rem;
  }
}
.cid-v9emLsKmCb .mbr-text {
  color: #bbbbbb;
}
.cid-v9emLsKmCb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v9emLsKmCb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v9emLsKmCb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v9gugj2ARz {
  z-index: 1000;
  width: 100%;
}
.cid-v9gugj2ARz .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;
}
@media (max-width: 767px) {
  .cid-v9gugj2ARz .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v9gugj2ARz .navbar-nav {
  margin: auto;
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-v9gugj2ARz .navbar-nav {
    max-width: 45%;
  }
}
.cid-v9gugj2ARz .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v9gugj2ARz .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v9gugj2ARz .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v9gugj2ARz .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v9gugj2ARz .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v9gugj2ARz .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v9gugj2ARz .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v9gugj2ARz .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v9gugj2ARz .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9gugj2ARz .navbar-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .cid-v9gugj2ARz .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v9gugj2ARz .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: auto !important;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9gugj2ARz .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v9gugj2ARz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9gugj2ARz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9gugj2ARz .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v9gugj2ARz .navbar-caption {
  padding-left: 2rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v9gugj2ARz .navbar-caption {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9gugj2ARz .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v9gugj2ARz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v9gugj2ARz .container {
  display: flex;
  height: 90px;
  position: relative;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: #ffffff !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-v9gugj2ARz .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v9gugj2ARz .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v9gugj2ARz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v9gugj2ARz .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v9gugj2ARz .nav-item:focus,
.cid-v9gugj2ARz .nav-link:focus {
  outline: none;
}
.cid-v9gugj2ARz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9gugj2ARz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9gugj2ARz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9gugj2ARz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9gugj2ARz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9gugj2ARz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9gugj2ARz .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v9gugj2ARz .navbar.opened {
  transition: all 0.3s;
}
.cid-v9gugj2ARz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9gugj2ARz .navbar .navbar-logo img {
  width: auto;
}
.cid-v9gugj2ARz .navbar .navbar-collapse {
  justify-content: flex-end;
}
.cid-v9gugj2ARz .navbar.collapsed {
  justify-content: center;
}
.cid-v9gugj2ARz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9gugj2ARz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9gugj2ARz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-v9gugj2ARz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9gugj2ARz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9gugj2ARz .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-v9gugj2ARz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9gugj2ARz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9gugj2ARz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v9gugj2ARz .navbar {
    min-height: 72px;
  }
  .cid-v9gugj2ARz .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v9gugj2ARz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9gugj2ARz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9gugj2ARz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9gugj2ARz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9gugj2ARz .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-v9gugj2ARz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9gugj2ARz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v9gugj2ARz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9gugj2ARz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v9gugj2ARz .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v9gugj2ARz .dropdown-item.active,
.cid-v9gugj2ARz .dropdown-item:active {
  background-color: transparent;
}
.cid-v9gugj2ARz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9gugj2ARz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9gugj2ARz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9gugj2ARz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9gugj2ARz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v9gugj2ARz .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v9gugj2ARz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9gugj2ARz .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v9gugj2ARz .navbar-buttons {
    text-align: left;
  }
}
.cid-v9gugj2ARz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9gugj2ARz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9gugj2ARz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9gugj2ARz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9gugj2ARz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9gugj2ARz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9gugj2ARz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9gugj2ARz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9gugj2ARz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9gugj2ARz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9gugj2ARz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v9gugj2ARz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9gugj2ARz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v9gugj2ARz .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9gugj2ARz .navbar {
    height: 70px;
  }
  .cid-v9gugj2ARz .navbar.opened {
    height: auto;
  }
  .cid-v9gugj2ARz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v9gugj2ARz .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v9gugj2ARz .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v9gugj2ARz .navbar-brand {
    margin-right: auto;
  }
  .cid-v9gugj2ARz .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: #ffffff !important;
    background: #ffffff !important;
    backdrop-filter: blur(8px);
  }
  .cid-v9gugj2ARz .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v9gugj2ARz .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v9gugj2ARz .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9gugj2ARz .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v9gugj2ARz .navbar-collapse {
  justify-content: flex-end !important;
}
@media (max-width: 575px) {
  .cid-v9gugj2ARz .navbar-collapse {
    padding: 1rem;
  }
}
.cid-v9gugj2ARz .menu3,
.cid-v9gugj2ARz .menu3 .navbar,
.cid-v9gugj2ARz .menu3 .navbar-dropdown {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
.cid-v9gugj2ARz .menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
  background: inherit;
}
@media (min-width: 992px) {
  .cid-v9gugj2ARz .menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .cid-v9gugj2ARz section.menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 768px) {
  .cid-v9gugj2ARz .menu3 .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }
  .cid-v9gugj2ARz section.menu3,
  .cid-v9gugj2ARz section.menu3 .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9gugj2ARz section.menu3 .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .cid-v9gugj2ARz .navbar.navbar-dropdown,
  .cid-v9gugj2ARz .navbar.navbar-dropdown > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9gugj2ARz .navbar.navbar-dropdown > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.cid-v9gugj2ARz .menu3,
.cid-v9gugj2ARz .menu3 .navbar,
.cid-v9gugj2ARz .menu3 .btn,
.cid-v9gugj2ARz .menu3 .nav-link,
.cid-v9gugj2ARz .menu3 .dropdown-menu,
.cid-v9gugj2ARz .menu3 .dropdown-item,
.cid-v9gugj2ARz .menu3 .navbar-brand img {
  border-radius: 0 !important;
}
.cid-v9gugj2ARz .menu3 .navbar {
  background: transparent !important;
}
.cid-v9gugj2ARz .menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9gugj2ARz .menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9gugj2ARz section.menu3,
.cid-v9gugj2ARz section.menu3 > nav,
.cid-v9gugj2ARz section.menu3 .navbar,
.cid-v9gugj2ARz section.menu3 .navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9gugj2ARz section.menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
}
.cid-v9gugj2ARz section.menu3 .container,
.cid-v9gugj2ARz section.menu3 .navbar,
.cid-v9gugj2ARz section.menu3 .nav-link,
.cid-v9gugj2ARz section.menu3 .dropdown-menu,
.cid-v9gugj2ARz section.menu3 .dropdown-item,
.cid-v9gugj2ARz section.menu3 .btn,
.cid-v9gugj2ARz section.menu3 img {
  border-radius: 0 !important;
}
.cid-v9gugj2ARz section.menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9gugj2ARz section.menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9gugj2ARz .navbar.navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9gugj2ARz .navbar.navbar-dropdown > .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  border-radius: 0 !important;
}
.cid-v9gugj2ARz .navbar,
.cid-v9gugj2ARz .navbar * {
  border-radius: 0 !important;
}
.cid-v9gugj2ARz .navbar .nav-link,
.cid-v9gugj2ARz .navbar .dropdown-menu,
.cid-v9gugj2ARz .navbar .dropdown-item,
.cid-v9gugj2ARz .navbar .btn {
  border-radius: 0 !important;
}
.cid-v9gughs37y {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/unicarepabrikmaklonparallax-2000x1086.webp");
}
.cid-v9gughs37y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gughs37y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9gughs37y .mbr-text,
.cid-v9gughs37y .mbr-section-btn {
  color: #232323;
}
.cid-v9gughs37y .card-title,
.cid-v9gughs37y .card-box {
  color: #ffffff;
}
.cid-v9gughs37y .mbr-text,
.cid-v9gughs37y .link-wrap {
  color: #ffffff;
}
.cid-v9gugi030h {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9gugi030h .mbr-text {
  color: #000000;
}
.cid-v9gugi030h .mbr-section-subtitle {
  color: #000000;
}
.cid-v9gugi030h .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v9gugi030h .mbr-text,
.cid-v9gugi030h .item .mbr-section-btn {
  text-align: left;
}
.cid-v9gugi030h .text-content {
  background: #ffffff;
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v9gugi030h .text-content {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v9gugi030h .text-content {
    padding: 2rem 1.5rem;
  }
}
.cid-v9gugi030h .item-wrapper {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v9gugi030h .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9gugi030h .card-wrapper {
  background: #ffffff;
}
.cid-v9gugi92aI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gugi92aI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gugi92aI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v9gugi92aI .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-v9gugi92aI .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gugi92aI .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-v9gugi92aI .card-wrapper {
  background: #ffffff;
}
.cid-v9gugi92aI .mbr-text,
.cid-v9gugi92aI .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9gugi92aI .card-title,
.cid-v9gugi92aI .card-box {
  text-align: left;
  color: #000000;
}
.cid-v9gugi92aI .image-wrapper img {
  width: 100%;
}
.cid-v9gugivwt6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gugivwt6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gugivwt6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9gugivwt6 .card-wrapper {
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-v9gugivwt6 .card-wrapper {
    padding: 1.5rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v9gugivwt6 .card-wrapper {
    padding: 2.25rem;
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gugivwt6 .card-wrapper {
    padding: 4rem;
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
.cid-v9gugivwt6 .wrap {
  background: url("../../../assets/images/maklon-kosmetik-unicare-beauty-4.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cid-v9gugivwt6 .wrap .inner-wrap {
  padding: 40px;
}
.cid-v9gugivwt6 .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9gugivwt6 .mbr-text {
  color: #000000;
}
.cid-v9gugivwt6 .mbr-text,
.cid-v9gugivwt6 .mbr-section-btn {
  color: #ffffff;
}
.cid-v9gviuRCt4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gviuRCt4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gviuRCt4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v9gviuRCt4 .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-v9gviuRCt4 .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gviuRCt4 .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-v9gviuRCt4 .card-wrapper {
  background: #ffffff;
}
.cid-v9gviuRCt4 .mbr-text,
.cid-v9gviuRCt4 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9gviuRCt4 .card-title,
.cid-v9gviuRCt4 .card-box {
  text-align: left;
  color: #000000;
}
.cid-v9gviuRCt4 .image-wrapper img {
  width: 100%;
}
.cid-v9gxJwFoWZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gxJwFoWZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gxJwFoWZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9gxJwFoWZ .card-wrapper {
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-v9gxJwFoWZ .card-wrapper {
    padding: 1.5rem;
    padding-top: 13.5rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v9gxJwFoWZ .card-wrapper {
    padding: 2.25rem;
    padding-top: 27rem;
    padding-bottom: 12rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gxJwFoWZ .card-wrapper {
    padding: 4rem;
    padding-top: 27rem;
    padding-bottom: 12rem;
  }
}
.cid-v9gxJwFoWZ .wrap {
  background: url("../../../assets/images/unicare-beauty-kosmetindo.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cid-v9gxJwFoWZ .wrap .inner-wrap {
  padding: 40px;
}
.cid-v9gxJwFoWZ .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9gxJwFoWZ .mbr-text {
  color: #000000;
}
.cid-v9gxJwFoWZ .mbr-text,
.cid-v9gxJwFoWZ .mbr-section-btn {
  color: #ffffff;
}
.cid-v9gvQFUI4u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gvQFUI4u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gvQFUI4u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v9gvQFUI4u .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-v9gvQFUI4u .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gvQFUI4u .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-v9gvQFUI4u .card-wrapper {
  background: #ffffff;
}
.cid-v9gvQFUI4u .mbr-text,
.cid-v9gvQFUI4u .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9gvQFUI4u .card-title,
.cid-v9gvQFUI4u .card-box {
  text-align: left;
  color: #000000;
}
.cid-v9gvQFUI4u .image-wrapper img {
  width: 100%;
}
.cid-v9gwrMvzE1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gwrMvzE1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gwrMvzE1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v9gwrMvzE1 .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-v9gwrMvzE1 .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gwrMvzE1 .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-v9gwrMvzE1 .card-wrapper {
  background: #ffffff;
}
.cid-v9gwrMvzE1 .mbr-text,
.cid-v9gwrMvzE1 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9gwrMvzE1 .card-title,
.cid-v9gwrMvzE1 .card-box {
  text-align: left;
  color: #000000;
}
.cid-v9gwrMvzE1 .image-wrapper img {
  width: 100%;
}
.cid-v9gugiVgdN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gugiVgdN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gugiVgdN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9gugiVgdN .card-wrapper {
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-v9gugiVgdN .card-wrapper {
    padding: 1.5rem;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v9gugiVgdN .card-wrapper {
    padding: 2.25rem;
    padding-top: 15rem;
    padding-bottom: 9rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gugiVgdN .card-wrapper {
    padding: 4rem;
    padding-top: 15rem;
    padding-bottom: 9rem;
  }
}
.cid-v9gugiVgdN .wrap {
  background: url("../../../assets/images/maklon-kosmetik-indonesia.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cid-v9gugiVgdN .wrap .inner-wrap {
  padding: 40px;
}
.cid-v9gugiVgdN .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9gugiVgdN .mbr-text {
  color: #000000;
}
.cid-v9gugiVgdN .mbr-text,
.cid-v9gugiVgdN .mbr-section-btn {
  color: #ffffff;
}
.cid-v9gugjoBQb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #07362b;
}
.cid-v9gugjoBQb .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9gugjoBQb .mbr-text {
  color: #ffffff;
}
.cid-v9gugjyn7w {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9gugjyn7w .item-subtitle {
  line-height: 1.2;
  color: #000000;
  text-align: left;
}
.cid-v9gugjyn7w img,
.cid-v9gugjyn7w .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-v9gugjyn7w .item:focus,
.cid-v9gugjyn7w span:focus {
  outline: none;
}
.cid-v9gugjyn7w .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v9gugjyn7w .item {
    margin-bottom: 1rem;
  }
}
.cid-v9gugjyn7w .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v9gugjyn7w .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-v9gugjyn7w .item-content .item-footer {
  margin-top: auto;
}
.cid-v9gugjyn7w .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-v9gugjyn7w .mbr-text,
.cid-v9gugjyn7w .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9gugjyn7w .item-title {
  color: #000000;
  text-align: left;
}
.cid-v9gugjyn7w .content-head {
  max-width: 800px;
}
.cid-v9gugjyn7w .mbr-section-subtitle {
  text-align: left;
}
.cid-v9gugjJJzH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/skincarewithunicare-2000x1125.webp");
}
.cid-v9gugjJJzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gugjJJzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9gugjJJzH .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9gugjJJzH .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-v9gugjJJzH .mbr-section-title {
  color: #ffffff;
}
.cid-v9gugjJJzH .mbr-text,
.cid-v9gugjJJzH .mbr-section-btn {
  color: #ffffff;
}
.cid-v9gugjSTbh {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #07362b;
}
.cid-v9gugjSTbh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gugjSTbh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9gugjSTbh .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v9gugjSTbh .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9gugjSTbh .row {
    text-align: center;
  }
  .cid-v9gugjSTbh .row > div {
    margin: auto;
  }
  .cid-v9gugjSTbh .social-row {
    justify-content: center;
  }
}
.cid-v9gugjSTbh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v9gugjSTbh .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v9gugjSTbh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gugjSTbh .list {
    margin-bottom: 0rem;
  }
}
.cid-v9gugjSTbh .mbr-text {
  color: #bbbbbb;
}
.cid-v9gugjSTbh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v9gugjSTbh .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v9gugjSTbh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v9g2yo7fOR {
  z-index: 1000;
  width: 100%;
}
.cid-v9g2yo7fOR .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;
}
@media (max-width: 767px) {
  .cid-v9g2yo7fOR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v9g2yo7fOR .navbar-nav {
  margin: auto;
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-v9g2yo7fOR .navbar-nav {
    max-width: 45%;
  }
}
.cid-v9g2yo7fOR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v9g2yo7fOR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v9g2yo7fOR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v9g2yo7fOR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v9g2yo7fOR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v9g2yo7fOR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v9g2yo7fOR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v9g2yo7fOR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v9g2yo7fOR .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9g2yo7fOR .navbar-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .cid-v9g2yo7fOR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v9g2yo7fOR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: auto !important;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9g2yo7fOR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v9g2yo7fOR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9g2yo7fOR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9g2yo7fOR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v9g2yo7fOR .navbar-caption {
  padding-left: 2rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v9g2yo7fOR .navbar-caption {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9g2yo7fOR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v9g2yo7fOR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v9g2yo7fOR .container {
  display: flex;
  height: 90px;
  position: relative;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: #ffffff !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-v9g2yo7fOR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v9g2yo7fOR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v9g2yo7fOR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v9g2yo7fOR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v9g2yo7fOR .nav-item:focus,
.cid-v9g2yo7fOR .nav-link:focus {
  outline: none;
}
.cid-v9g2yo7fOR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9g2yo7fOR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9g2yo7fOR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9g2yo7fOR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9g2yo7fOR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9g2yo7fOR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9g2yo7fOR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v9g2yo7fOR .navbar.opened {
  transition: all 0.3s;
}
.cid-v9g2yo7fOR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9g2yo7fOR .navbar .navbar-logo img {
  width: auto;
}
.cid-v9g2yo7fOR .navbar .navbar-collapse {
  justify-content: flex-end;
}
.cid-v9g2yo7fOR .navbar.collapsed {
  justify-content: center;
}
.cid-v9g2yo7fOR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9g2yo7fOR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9g2yo7fOR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-v9g2yo7fOR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9g2yo7fOR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9g2yo7fOR .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-v9g2yo7fOR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9g2yo7fOR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9g2yo7fOR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v9g2yo7fOR .navbar {
    min-height: 72px;
  }
  .cid-v9g2yo7fOR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v9g2yo7fOR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9g2yo7fOR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9g2yo7fOR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9g2yo7fOR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9g2yo7fOR .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-v9g2yo7fOR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9g2yo7fOR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v9g2yo7fOR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9g2yo7fOR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v9g2yo7fOR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v9g2yo7fOR .dropdown-item.active,
.cid-v9g2yo7fOR .dropdown-item:active {
  background-color: transparent;
}
.cid-v9g2yo7fOR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9g2yo7fOR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9g2yo7fOR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9g2yo7fOR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9g2yo7fOR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v9g2yo7fOR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v9g2yo7fOR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9g2yo7fOR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v9g2yo7fOR .navbar-buttons {
    text-align: left;
  }
}
.cid-v9g2yo7fOR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9g2yo7fOR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9g2yo7fOR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9g2yo7fOR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9g2yo7fOR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9g2yo7fOR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9g2yo7fOR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9g2yo7fOR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9g2yo7fOR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9g2yo7fOR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9g2yo7fOR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v9g2yo7fOR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9g2yo7fOR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v9g2yo7fOR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9g2yo7fOR .navbar {
    height: 70px;
  }
  .cid-v9g2yo7fOR .navbar.opened {
    height: auto;
  }
  .cid-v9g2yo7fOR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v9g2yo7fOR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v9g2yo7fOR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v9g2yo7fOR .navbar-brand {
    margin-right: auto;
  }
  .cid-v9g2yo7fOR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: #ffffff !important;
    background: #ffffff !important;
    backdrop-filter: blur(8px);
  }
  .cid-v9g2yo7fOR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v9g2yo7fOR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v9g2yo7fOR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9g2yo7fOR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v9g2yo7fOR .navbar-collapse {
  justify-content: flex-end !important;
}
@media (max-width: 575px) {
  .cid-v9g2yo7fOR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-v9g2yo7fOR .menu3,
.cid-v9g2yo7fOR .menu3 .navbar,
.cid-v9g2yo7fOR .menu3 .navbar-dropdown {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
.cid-v9g2yo7fOR .menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
  background: inherit;
}
@media (min-width: 992px) {
  .cid-v9g2yo7fOR .menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .cid-v9g2yo7fOR section.menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 768px) {
  .cid-v9g2yo7fOR .menu3 .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }
  .cid-v9g2yo7fOR section.menu3,
  .cid-v9g2yo7fOR section.menu3 .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9g2yo7fOR section.menu3 .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .cid-v9g2yo7fOR .navbar.navbar-dropdown,
  .cid-v9g2yo7fOR .navbar.navbar-dropdown > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9g2yo7fOR .navbar.navbar-dropdown > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.cid-v9g2yo7fOR .menu3,
.cid-v9g2yo7fOR .menu3 .navbar,
.cid-v9g2yo7fOR .menu3 .btn,
.cid-v9g2yo7fOR .menu3 .nav-link,
.cid-v9g2yo7fOR .menu3 .dropdown-menu,
.cid-v9g2yo7fOR .menu3 .dropdown-item,
.cid-v9g2yo7fOR .menu3 .navbar-brand img {
  border-radius: 0 !important;
}
.cid-v9g2yo7fOR .menu3 .navbar {
  background: transparent !important;
}
.cid-v9g2yo7fOR .menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9g2yo7fOR .menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9g2yo7fOR section.menu3,
.cid-v9g2yo7fOR section.menu3 > nav,
.cid-v9g2yo7fOR section.menu3 .navbar,
.cid-v9g2yo7fOR section.menu3 .navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9g2yo7fOR section.menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
}
.cid-v9g2yo7fOR section.menu3 .container,
.cid-v9g2yo7fOR section.menu3 .navbar,
.cid-v9g2yo7fOR section.menu3 .nav-link,
.cid-v9g2yo7fOR section.menu3 .dropdown-menu,
.cid-v9g2yo7fOR section.menu3 .dropdown-item,
.cid-v9g2yo7fOR section.menu3 .btn,
.cid-v9g2yo7fOR section.menu3 img {
  border-radius: 0 !important;
}
.cid-v9g2yo7fOR section.menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9g2yo7fOR section.menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9g2yo7fOR .navbar.navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9g2yo7fOR .navbar.navbar-dropdown > .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  border-radius: 0 !important;
}
.cid-v9g2yo7fOR .navbar,
.cid-v9g2yo7fOR .navbar * {
  border-radius: 0 !important;
}
.cid-v9g2yo7fOR .navbar .nav-link,
.cid-v9g2yo7fOR .navbar .dropdown-menu,
.cid-v9g2yo7fOR .navbar .dropdown-item,
.cid-v9g2yo7fOR .navbar .btn {
  border-radius: 0 !important;
}
.cid-v9gfw4F5w9 {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/unicarepabrikmaklonparallax-2000x1086.webp");
}
.cid-v9gfw4F5w9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gfw4F5w9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9gfw4F5w9 .mbr-text,
.cid-v9gfw4F5w9 .mbr-section-btn {
  color: #232323;
}
.cid-v9gfw4F5w9 .card-title,
.cid-v9gfw4F5w9 .card-box {
  color: #ffffff;
}
.cid-v9gfw4F5w9 .mbr-text,
.cid-v9gfw4F5w9 .link-wrap {
  color: #ffffff;
}
.cid-v9ghpWtCoj {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9ghpWtCoj .mbr-text {
  color: #000000;
}
.cid-v9ghpWtCoj .mbr-section-subtitle {
  color: #000000;
}
.cid-v9ghpWtCoj .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v9ghpWtCoj .mbr-text,
.cid-v9ghpWtCoj .item .mbr-section-btn {
  text-align: left;
}
.cid-v9ghpWtCoj .text-content {
  background: #ffffff;
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v9ghpWtCoj .text-content {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v9ghpWtCoj .text-content {
    padding: 2rem 1.5rem;
  }
}
.cid-v9ghpWtCoj .item-wrapper {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v9ghpWtCoj .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9ghpWtCoj .card-wrapper {
  background: #ffffff;
}
.cid-v9gd7jFEN8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gd7jFEN8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gd7jFEN8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v9gd7jFEN8 .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-v9gd7jFEN8 .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gd7jFEN8 .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-v9gd7jFEN8 .card-wrapper {
  background: #ffffff;
}
.cid-v9gd7jFEN8 .mbr-text,
.cid-v9gd7jFEN8 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9gd7jFEN8 .card-title,
.cid-v9gd7jFEN8 .card-box {
  text-align: left;
  color: #000000;
}
.cid-v9gd7jFEN8 .image-wrapper img {
  width: 100%;
}
.cid-v9gkxpkfu9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gkxpkfu9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gkxpkfu9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v9gkxpkfu9 .card-content-text {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-v9gkxpkfu9 .card-content-text {
    padding: 2.25rem 2.25rem 0 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gkxpkfu9 .card-content-text {
    padding: 4rem 4rem 1rem 4rem;
  }
}
.cid-v9gkxpkfu9 .card-wrapper {
  background: #ffffff;
}
.cid-v9gkxpkfu9 .mbr-text,
.cid-v9gkxpkfu9 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9gkxpkfu9 .card-title,
.cid-v9gkxpkfu9 .card-box {
  text-align: left;
  color: #000000;
}
.cid-v9gkxpkfu9 .image-wrapper img {
  width: 100%;
}
.cid-v9gffD4MEG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gffD4MEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gffD4MEG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9gffD4MEG .card-wrapper {
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-v9gffD4MEG .card-wrapper {
    padding: 1.5rem;
    padding-top: 7.5rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v9gffD4MEG .card-wrapper {
    padding: 2.25rem;
    padding-top: 15rem;
    padding-bottom: 12rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gffD4MEG .card-wrapper {
    padding: 4rem;
    padding-top: 15rem;
    padding-bottom: 12rem;
  }
}
.cid-v9gffD4MEG .wrap {
  background: url("../../../assets/images/jasa-maklon-skincare-unicare-copy.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cid-v9gffD4MEG .wrap .inner-wrap {
  padding: 40px;
}
.cid-v9gffD4MEG .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9gffD4MEG .mbr-text {
  color: #000000;
}
.cid-v9gffD4MEG .mbr-text,
.cid-v9gffD4MEG .mbr-section-btn {
  color: #ffffff;
}
.cid-v9ghE61yNt {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v9ghE61yNt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ghE61yNt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v9ghE61yNt .card-content-text {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-v9ghE61yNt .card-content-text {
    padding: 2.25rem 2.25rem 0 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v9ghE61yNt .card-content-text {
    padding: 4rem 4rem 1rem 4rem;
  }
}
.cid-v9ghE61yNt .card-wrapper {
  background: #ffffff;
}
.cid-v9ghE61yNt .mbr-text,
.cid-v9ghE61yNt .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9ghE61yNt .card-title,
.cid-v9ghE61yNt .card-box {
  text-align: left;
  color: #000000;
}
.cid-v9ghE61yNt .image-wrapper img {
  width: 100%;
}
.cid-v9gd9El3Cd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v9gd9El3Cd .mbr-text {
  color: #000000;
}
.cid-v9gd9El3Cd .mbr-section-subtitle {
  color: #000000;
}
.cid-v9gd9El3Cd .mbr-section-title {
  color: #000000;
}
.cid-v9gn6wsLLX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9gn6wsLLX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9gn6wsLLX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9gn6wsLLX .card-wrapper {
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-v9gn6wsLLX .card-wrapper {
    padding: 1.5rem;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v9gn6wsLLX .card-wrapper {
    padding: 2.25rem;
    padding-top: 15rem;
    padding-bottom: 9rem;
  }
}
@media (min-width: 992px) {
  .cid-v9gn6wsLLX .card-wrapper {
    padding: 4rem;
    padding-top: 15rem;
    padding-bottom: 9rem;
  }
}
.cid-v9gn6wsLLX .wrap {
  background: url("../../../assets/images/maklon-kosmetik-indonesia.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cid-v9gn6wsLLX .wrap .inner-wrap {
  padding: 40px;
}
.cid-v9gn6wsLLX .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9gn6wsLLX .mbr-text {
  color: #000000;
}
.cid-v9gn6wsLLX .mbr-text,
.cid-v9gn6wsLLX .mbr-section-btn {
  color: #ffffff;
}
.cid-v9gudr94Nj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #07362b;
}
.cid-v9gudr94Nj .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9gudr94Nj .mbr-text {
  color: #ffffff;
}
.cid-v9gtFGFAy0 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9gtFGFAy0 .item-subtitle {
  line-height: 1.2;
  color: #000000;
  text-align: left;
}
.cid-v9gtFGFAy0 img,
.cid-v9gtFGFAy0 .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-v9gtFGFAy0 .item:focus,
.cid-v9gtFGFAy0 span:focus {
  outline: none;
}
.cid-v9gtFGFAy0 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v9gtFGFAy0 .item {
    margin-bottom: 1rem;
  }
}
.cid-v9gtFGFAy0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v9gtFGFAy0 .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-v9gtFGFAy0 .item-content .item-footer {
  margin-top: auto;
}
.cid-v9gtFGFAy0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-v9gtFGFAy0 .mbr-text,
.cid-v9gtFGFAy0 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9gtFGFAy0 .item-title {
  color: #000000;
  text-align: left;
}
.cid-v9gtFGFAy0 .content-head {
  max-width: 800px;
}
.cid-v9gtFGFAy0 .mbr-section-subtitle {
  text-align: left;
}
.cid-v9g2ypqZyY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/skincarewithunicare-2000x1125.webp");
}
.cid-v9g2ypqZyY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9g2ypqZyY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9g2ypqZyY .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9g2ypqZyY .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-v9g2ypqZyY .mbr-section-title {
  color: #ffffff;
}
.cid-v9g2ypqZyY .mbr-text,
.cid-v9g2ypqZyY .mbr-section-btn {
  color: #ffffff;
}
.cid-v9g2ypIAUt {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #07362b;
}
.cid-v9g2ypIAUt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9g2ypIAUt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9g2ypIAUt .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v9g2ypIAUt .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9g2ypIAUt .row {
    text-align: center;
  }
  .cid-v9g2ypIAUt .row > div {
    margin: auto;
  }
  .cid-v9g2ypIAUt .social-row {
    justify-content: center;
  }
}
.cid-v9g2ypIAUt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v9g2ypIAUt .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v9g2ypIAUt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v9g2ypIAUt .list {
    margin-bottom: 0rem;
  }
}
.cid-v9g2ypIAUt .mbr-text {
  color: #bbbbbb;
}
.cid-v9g2ypIAUt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v9g2ypIAUt .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v9g2ypIAUt div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v9g2v2gvvc {
  z-index: 1000;
  width: 100%;
}
.cid-v9g2v2gvvc .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;
}
@media (max-width: 767px) {
  .cid-v9g2v2gvvc .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v9g2v2gvvc .navbar-nav {
  margin: auto;
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-v9g2v2gvvc .navbar-nav {
    max-width: 45%;
  }
}
.cid-v9g2v2gvvc .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v9g2v2gvvc .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v9g2v2gvvc .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v9g2v2gvvc .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v9g2v2gvvc .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v9g2v2gvvc .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v9g2v2gvvc .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v9g2v2gvvc .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v9g2v2gvvc .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9g2v2gvvc .navbar-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .cid-v9g2v2gvvc .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v9g2v2gvvc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: auto !important;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9g2v2gvvc .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v9g2v2gvvc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9g2v2gvvc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9g2v2gvvc .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v9g2v2gvvc .navbar-caption {
  padding-left: 2rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v9g2v2gvvc .navbar-caption {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9g2v2gvvc .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v9g2v2gvvc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v9g2v2gvvc .container {
  display: flex;
  height: 90px;
  position: relative;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: #ffffff !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-v9g2v2gvvc .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v9g2v2gvvc .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v9g2v2gvvc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v9g2v2gvvc .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v9g2v2gvvc .nav-item:focus,
.cid-v9g2v2gvvc .nav-link:focus {
  outline: none;
}
.cid-v9g2v2gvvc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9g2v2gvvc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9g2v2gvvc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9g2v2gvvc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9g2v2gvvc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9g2v2gvvc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9g2v2gvvc .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v9g2v2gvvc .navbar.opened {
  transition: all 0.3s;
}
.cid-v9g2v2gvvc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9g2v2gvvc .navbar .navbar-logo img {
  width: auto;
}
.cid-v9g2v2gvvc .navbar .navbar-collapse {
  justify-content: flex-end;
}
.cid-v9g2v2gvvc .navbar.collapsed {
  justify-content: center;
}
.cid-v9g2v2gvvc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9g2v2gvvc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9g2v2gvvc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-v9g2v2gvvc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9g2v2gvvc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9g2v2gvvc .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-v9g2v2gvvc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9g2v2gvvc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9g2v2gvvc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v9g2v2gvvc .navbar {
    min-height: 72px;
  }
  .cid-v9g2v2gvvc .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v9g2v2gvvc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9g2v2gvvc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9g2v2gvvc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9g2v2gvvc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9g2v2gvvc .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-v9g2v2gvvc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9g2v2gvvc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v9g2v2gvvc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9g2v2gvvc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v9g2v2gvvc .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v9g2v2gvvc .dropdown-item.active,
.cid-v9g2v2gvvc .dropdown-item:active {
  background-color: transparent;
}
.cid-v9g2v2gvvc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9g2v2gvvc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9g2v2gvvc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9g2v2gvvc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9g2v2gvvc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v9g2v2gvvc .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v9g2v2gvvc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9g2v2gvvc .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v9g2v2gvvc .navbar-buttons {
    text-align: left;
  }
}
.cid-v9g2v2gvvc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9g2v2gvvc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9g2v2gvvc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9g2v2gvvc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9g2v2gvvc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9g2v2gvvc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9g2v2gvvc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9g2v2gvvc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9g2v2gvvc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9g2v2gvvc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9g2v2gvvc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v9g2v2gvvc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9g2v2gvvc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v9g2v2gvvc .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9g2v2gvvc .navbar {
    height: 70px;
  }
  .cid-v9g2v2gvvc .navbar.opened {
    height: auto;
  }
  .cid-v9g2v2gvvc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v9g2v2gvvc .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v9g2v2gvvc .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v9g2v2gvvc .navbar-brand {
    margin-right: auto;
  }
  .cid-v9g2v2gvvc .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: #ffffff !important;
    background: #ffffff !important;
    backdrop-filter: blur(8px);
  }
  .cid-v9g2v2gvvc .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v9g2v2gvvc .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v9g2v2gvvc .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9g2v2gvvc .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v9g2v2gvvc .navbar-collapse {
  justify-content: flex-end !important;
}
@media (max-width: 575px) {
  .cid-v9g2v2gvvc .navbar-collapse {
    padding: 1rem;
  }
}
.cid-v9g2v2gvvc .menu3,
.cid-v9g2v2gvvc .menu3 .navbar,
.cid-v9g2v2gvvc .menu3 .navbar-dropdown {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
.cid-v9g2v2gvvc .menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
  background: inherit;
}
@media (min-width: 992px) {
  .cid-v9g2v2gvvc .menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .cid-v9g2v2gvvc section.menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 768px) {
  .cid-v9g2v2gvvc .menu3 .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }
  .cid-v9g2v2gvvc section.menu3,
  .cid-v9g2v2gvvc section.menu3 .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9g2v2gvvc section.menu3 .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .cid-v9g2v2gvvc .navbar.navbar-dropdown,
  .cid-v9g2v2gvvc .navbar.navbar-dropdown > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9g2v2gvvc .navbar.navbar-dropdown > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.cid-v9g2v2gvvc .menu3,
.cid-v9g2v2gvvc .menu3 .navbar,
.cid-v9g2v2gvvc .menu3 .btn,
.cid-v9g2v2gvvc .menu3 .nav-link,
.cid-v9g2v2gvvc .menu3 .dropdown-menu,
.cid-v9g2v2gvvc .menu3 .dropdown-item,
.cid-v9g2v2gvvc .menu3 .navbar-brand img {
  border-radius: 0 !important;
}
.cid-v9g2v2gvvc .menu3 .navbar {
  background: transparent !important;
}
.cid-v9g2v2gvvc .menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9g2v2gvvc .menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9g2v2gvvc section.menu3,
.cid-v9g2v2gvvc section.menu3 > nav,
.cid-v9g2v2gvvc section.menu3 .navbar,
.cid-v9g2v2gvvc section.menu3 .navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9g2v2gvvc section.menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
}
.cid-v9g2v2gvvc section.menu3 .container,
.cid-v9g2v2gvvc section.menu3 .navbar,
.cid-v9g2v2gvvc section.menu3 .nav-link,
.cid-v9g2v2gvvc section.menu3 .dropdown-menu,
.cid-v9g2v2gvvc section.menu3 .dropdown-item,
.cid-v9g2v2gvvc section.menu3 .btn,
.cid-v9g2v2gvvc section.menu3 img {
  border-radius: 0 !important;
}
.cid-v9g2v2gvvc section.menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9g2v2gvvc section.menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9g2v2gvvc .navbar.navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9g2v2gvvc .navbar.navbar-dropdown > .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  border-radius: 0 !important;
}
.cid-v9g2v2gvvc .navbar,
.cid-v9g2v2gvvc .navbar * {
  border-radius: 0 !important;
}
.cid-v9g2v2gvvc .navbar .nav-link,
.cid-v9g2v2gvvc .navbar .dropdown-menu,
.cid-v9g2v2gvvc .navbar .dropdown-item,
.cid-v9g2v2gvvc .navbar .btn {
  border-radius: 0 !important;
}
.cid-v9g4pQfz92 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9g4pQfz92 .row {
  flex-direction: row-reverse;
}
.cid-v9g4pQfz92 .justify-content-center {
  align-items: center;
}
.cid-v9g4pQfz92 .mbr-section-title {
  text-align: left;
}
.cid-v9g4pQfz92 .mbr-text,
.cid-v9g4pQfz92 .mbr-section-btn {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-v9g4pQfz92 .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v9g4pQfz92 .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v9g4pQfz92 .item-wrapper {
    padding: 4rem;
  }
}
.cid-v9g4pQfz92 .mbr-section-subtitle {
  text-align: justify;
}
.cid-v9g4qOl2uT {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-v9g4qOl2uT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9g4qOl2uT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v9g4qOl2uT .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v9g4qOl2uT .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-v9g4qOl2uT .google-map {
  height: 100%;
  position: relative;
}
.cid-v9g4qOl2uT .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v9g4qOl2uT .google-map iframe {
    min-height: 350px;
  }
}
.cid-v9g4qOl2uT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v9g4qOl2uT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v9g4qOl2uT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v9g4qOl2uT .card-wrapper {
  padding: 2.25rem;
  background: #1a7f68;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v9g4qOl2uT .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v9g4qOl2uT .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-v9g4qOl2uT ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v9g4qOl2uT .content-head {
  max-width: 800px;
}
.cid-v9g4qOl2uT .list,
.cid-v9g4qOl2uT .item-wrap {
  color: #ffffff;
}
.cid-v9g4qOl2uT .cardTitle {
  color: #ffffff;
}
.cid-v9g4qOl2uT .mbr-section-title {
  color: #ffffff;
}
.cid-v9g4sgpAVv {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v9g4sgpAVv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9g4sgpAVv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9g4sgpAVv .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  border-radius: 0 !important;
}
@media (max-width: 767px) {
  .cid-v9g4sgpAVv .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9g4sgpAVv .mbr-iconfont {
  font-size: 3rem;
  color: #1a7f68;
  padding-right: 2rem;
}
.cid-v9g4sgpAVv .content-head {
  max-width: 800px;
}
.cid-v9g2v40E3v .whatsapp-wrapper {
  position: fixed;
  bottom: 19px;
  right: 32px;
  z-index: 9999;
}
.cid-v9g2v40E3v .whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease;
  width: auto;
  height: auto;
  min-width: calc(60px);
  min-height: calc(60px);
}
.cid-v9g2v40E3v .whatsapp-button:hover {
  transform: scale(1.1);
}
.cid-v9g2v40E3v .whatsapp-button::after {
  content: attr(data-tooltip);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cid-v9g2v40E3v .whatsapp-button:hover::after {
  opacity: 1;
}
.cid-v9g2v40E3v .tooltip-top::after {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v9g2v40E3v .tooltip-bottom::after {
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v9g2v40E3v .tooltip-left::after {
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
}
.cid-v9g2v40E3v .tooltip-right::after {
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .cid-v9g2v40E3v .whatsapp-button::after {
    display: none;
  }
}
.cid-v9g2v40E3v DIV {
  color: #ffffff;
}
.cid-v9g2v40E3v p {
  color: #000;
}
.cid-v9g2v40E3v .hidden {
  display: none;
}
.cid-v9g2v4hlUW {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #07362b;
}
.cid-v9g2v4hlUW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9g2v4hlUW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9g2v4hlUW .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v9g2v4hlUW .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9g2v4hlUW .row {
    text-align: center;
  }
  .cid-v9g2v4hlUW .row > div {
    margin: auto;
  }
  .cid-v9g2v4hlUW .social-row {
    justify-content: center;
  }
}
.cid-v9g2v4hlUW .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v9g2v4hlUW .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v9g2v4hlUW .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v9g2v4hlUW .list {
    margin-bottom: 0rem;
  }
}
.cid-v9g2v4hlUW .mbr-text {
  color: #bbbbbb;
}
.cid-v9g2v4hlUW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v9g2v4hlUW .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v9g2v4hlUW div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v9fUtDxCLf {
  z-index: 1000;
  width: 100%;
}
.cid-v9fUtDxCLf .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;
}
@media (max-width: 767px) {
  .cid-v9fUtDxCLf .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v9fUtDxCLf .navbar-nav {
  margin: auto;
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-v9fUtDxCLf .navbar-nav {
    max-width: 45%;
  }
}
.cid-v9fUtDxCLf .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v9fUtDxCLf .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v9fUtDxCLf .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v9fUtDxCLf .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v9fUtDxCLf .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v9fUtDxCLf .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v9fUtDxCLf .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v9fUtDxCLf .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v9fUtDxCLf .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9fUtDxCLf .navbar-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .cid-v9fUtDxCLf .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v9fUtDxCLf .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: auto !important;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9fUtDxCLf .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v9fUtDxCLf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9fUtDxCLf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9fUtDxCLf .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v9fUtDxCLf .navbar-caption {
  padding-left: 2rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v9fUtDxCLf .navbar-caption {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9fUtDxCLf .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v9fUtDxCLf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v9fUtDxCLf .container {
  display: flex;
  height: 90px;
  position: relative;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: #ffffff !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-v9fUtDxCLf .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v9fUtDxCLf .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v9fUtDxCLf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v9fUtDxCLf .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v9fUtDxCLf .nav-item:focus,
.cid-v9fUtDxCLf .nav-link:focus {
  outline: none;
}
.cid-v9fUtDxCLf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9fUtDxCLf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9fUtDxCLf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9fUtDxCLf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9fUtDxCLf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9fUtDxCLf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9fUtDxCLf .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v9fUtDxCLf .navbar.opened {
  transition: all 0.3s;
}
.cid-v9fUtDxCLf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9fUtDxCLf .navbar .navbar-logo img {
  width: auto;
}
.cid-v9fUtDxCLf .navbar .navbar-collapse {
  justify-content: flex-end;
}
.cid-v9fUtDxCLf .navbar.collapsed {
  justify-content: center;
}
.cid-v9fUtDxCLf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9fUtDxCLf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9fUtDxCLf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-v9fUtDxCLf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9fUtDxCLf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9fUtDxCLf .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-v9fUtDxCLf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9fUtDxCLf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9fUtDxCLf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v9fUtDxCLf .navbar {
    min-height: 72px;
  }
  .cid-v9fUtDxCLf .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v9fUtDxCLf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9fUtDxCLf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9fUtDxCLf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9fUtDxCLf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9fUtDxCLf .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-v9fUtDxCLf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9fUtDxCLf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v9fUtDxCLf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9fUtDxCLf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v9fUtDxCLf .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v9fUtDxCLf .dropdown-item.active,
.cid-v9fUtDxCLf .dropdown-item:active {
  background-color: transparent;
}
.cid-v9fUtDxCLf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9fUtDxCLf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9fUtDxCLf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9fUtDxCLf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9fUtDxCLf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v9fUtDxCLf .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v9fUtDxCLf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9fUtDxCLf .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v9fUtDxCLf .navbar-buttons {
    text-align: left;
  }
}
.cid-v9fUtDxCLf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9fUtDxCLf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9fUtDxCLf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9fUtDxCLf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9fUtDxCLf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9fUtDxCLf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9fUtDxCLf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9fUtDxCLf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9fUtDxCLf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9fUtDxCLf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9fUtDxCLf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v9fUtDxCLf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9fUtDxCLf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v9fUtDxCLf .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9fUtDxCLf .navbar {
    height: 70px;
  }
  .cid-v9fUtDxCLf .navbar.opened {
    height: auto;
  }
  .cid-v9fUtDxCLf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v9fUtDxCLf .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v9fUtDxCLf .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v9fUtDxCLf .navbar-brand {
    margin-right: auto;
  }
  .cid-v9fUtDxCLf .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: #ffffff !important;
    background: #ffffff !important;
    backdrop-filter: blur(8px);
  }
  .cid-v9fUtDxCLf .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v9fUtDxCLf .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v9fUtDxCLf .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9fUtDxCLf .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v9fUtDxCLf .navbar-collapse {
  justify-content: flex-end !important;
}
@media (max-width: 575px) {
  .cid-v9fUtDxCLf .navbar-collapse {
    padding: 1rem;
  }
}
.cid-v9fUtDxCLf .menu3,
.cid-v9fUtDxCLf .menu3 .navbar,
.cid-v9fUtDxCLf .menu3 .navbar-dropdown {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
.cid-v9fUtDxCLf .menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
  background: inherit;
}
@media (min-width: 992px) {
  .cid-v9fUtDxCLf .menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .cid-v9fUtDxCLf section.menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 768px) {
  .cid-v9fUtDxCLf .menu3 .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }
  .cid-v9fUtDxCLf section.menu3,
  .cid-v9fUtDxCLf section.menu3 .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9fUtDxCLf section.menu3 .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .cid-v9fUtDxCLf .navbar.navbar-dropdown,
  .cid-v9fUtDxCLf .navbar.navbar-dropdown > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9fUtDxCLf .navbar.navbar-dropdown > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.cid-v9fUtDxCLf .menu3,
.cid-v9fUtDxCLf .menu3 .navbar,
.cid-v9fUtDxCLf .menu3 .btn,
.cid-v9fUtDxCLf .menu3 .nav-link,
.cid-v9fUtDxCLf .menu3 .dropdown-menu,
.cid-v9fUtDxCLf .menu3 .dropdown-item,
.cid-v9fUtDxCLf .menu3 .navbar-brand img {
  border-radius: 0 !important;
}
.cid-v9fUtDxCLf .menu3 .navbar {
  background: transparent !important;
}
.cid-v9fUtDxCLf .menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9fUtDxCLf .menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9fUtDxCLf section.menu3,
.cid-v9fUtDxCLf section.menu3 > nav,
.cid-v9fUtDxCLf section.menu3 .navbar,
.cid-v9fUtDxCLf section.menu3 .navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9fUtDxCLf section.menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
}
.cid-v9fUtDxCLf section.menu3 .container,
.cid-v9fUtDxCLf section.menu3 .navbar,
.cid-v9fUtDxCLf section.menu3 .nav-link,
.cid-v9fUtDxCLf section.menu3 .dropdown-menu,
.cid-v9fUtDxCLf section.menu3 .dropdown-item,
.cid-v9fUtDxCLf section.menu3 .btn,
.cid-v9fUtDxCLf section.menu3 img {
  border-radius: 0 !important;
}
.cid-v9fUtDxCLf section.menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9fUtDxCLf section.menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9fUtDxCLf .navbar.navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9fUtDxCLf .navbar.navbar-dropdown > .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  border-radius: 0 !important;
}
.cid-v9fUtDxCLf .navbar,
.cid-v9fUtDxCLf .navbar * {
  border-radius: 0 !important;
}
.cid-v9fUtDxCLf .navbar .nav-link,
.cid-v9fUtDxCLf .navbar .dropdown-menu,
.cid-v9fUtDxCLf .navbar .dropdown-item,
.cid-v9fUtDxCLf .navbar .btn {
  border-radius: 0 !important;
}
.cid-v9fV6aUhjU {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/backgroundparallax-1920x1800.webp");
}
.cid-v9fV6aUhjU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fV6aUhjU .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-v9fV6aUhjU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9fV6aUhjU .row {
  flex-direction: row-reverse;
}
.cid-v9fV6aUhjU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9fV6aUhjU .text-wrapper {
    padding: 2rem;
  }
}
.cid-v9fZF2UHwt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9fZF2UHwt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fZF2UHwt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9fZF2UHwt .row-reverse {
  flex-direction: row-reverse;
}
.cid-v9fZF2UHwt .row {
  flex-direction: row-reverse;
}
.cid-v9fZF2UHwt .row-reverse {
  flex-direction: row;
}
@media (max-width: 991px) {
  .cid-v9fZF2UHwt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9fZF2UHwt .row {
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-v9fZF2UHwt .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v9fZF2UHwt .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v9fZF2UHwt .mbr-section-title {
  color: #000000;
}
.cid-v9fZF2UHwt .mbr-text,
.cid-v9fZF2UHwt .mbr-section-btn {
  color: #000000;
}
.cid-v9fZF2UHwt img {
  width: 100%;
  height: 100%;
}
.cid-v9g1v8CTQu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9g1v8CTQu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9g1v8CTQu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9g1v8CTQu .row-reverse {
  flex-direction: row-reverse;
}
.cid-v9g1v8CTQu .row {
  flex-direction: row-reverse;
}
.cid-v9g1v8CTQu .row-reverse {
  flex-direction: row;
}
@media (max-width: 991px) {
  .cid-v9g1v8CTQu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9g1v8CTQu .row {
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-v9g1v8CTQu .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v9g1v8CTQu .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v9g1v8CTQu .mbr-section-title {
  color: #000000;
}
.cid-v9g1v8CTQu .mbr-text,
.cid-v9g1v8CTQu .mbr-section-btn {
  color: #000000;
}
.cid-v9g1v8CTQu img {
  width: 100%;
  height: 100%;
}
.cid-v9g1V9x3uW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9g1V9x3uW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9g1V9x3uW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9g1V9x3uW .row-reverse {
  flex-direction: row-reverse;
}
.cid-v9g1V9x3uW .row {
  flex-direction: row-reverse;
}
.cid-v9g1V9x3uW .row-reverse {
  flex-direction: row;
}
@media (max-width: 991px) {
  .cid-v9g1V9x3uW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9g1V9x3uW .row {
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-v9g1V9x3uW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v9g1V9x3uW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v9g1V9x3uW .mbr-section-title {
  color: #000000;
}
.cid-v9g1V9x3uW .mbr-text,
.cid-v9g1V9x3uW .mbr-section-btn {
  color: #000000;
}
.cid-v9g1V9x3uW img {
  width: 100%;
  height: 100%;
}
.cid-v9fUtGlJvh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/skincarewithunicare-2000x1125.webp");
}
.cid-v9fUtGlJvh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fUtGlJvh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9fUtGlJvh .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9fUtGlJvh .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-v9fUtGlJvh .mbr-section-title {
  color: #ffffff;
}
.cid-v9fUtGlJvh .mbr-text,
.cid-v9fUtGlJvh .mbr-section-btn {
  color: #ffffff;
}
.cid-v9fUtGw0gA .whatsapp-wrapper {
  position: fixed;
  bottom: 19px;
  right: 32px;
  z-index: 9999;
}
.cid-v9fUtGw0gA .whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease;
  width: auto;
  height: auto;
  min-width: calc(60px);
  min-height: calc(60px);
}
.cid-v9fUtGw0gA .whatsapp-button:hover {
  transform: scale(1.1);
}
.cid-v9fUtGw0gA .whatsapp-button::after {
  content: attr(data-tooltip);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cid-v9fUtGw0gA .whatsapp-button:hover::after {
  opacity: 1;
}
.cid-v9fUtGw0gA .tooltip-top::after {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v9fUtGw0gA .tooltip-bottom::after {
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v9fUtGw0gA .tooltip-left::after {
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
}
.cid-v9fUtGw0gA .tooltip-right::after {
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .cid-v9fUtGw0gA .whatsapp-button::after {
    display: none;
  }
}
.cid-v9fUtGw0gA DIV {
  color: #ffffff;
}
.cid-v9fUtGw0gA p {
  color: #000;
}
.cid-v9fUtGw0gA .hidden {
  display: none;
}
.cid-v9fUtGI65M {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #07362b;
}
.cid-v9fUtGI65M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fUtGI65M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9fUtGI65M .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v9fUtGI65M .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9fUtGI65M .row {
    text-align: center;
  }
  .cid-v9fUtGI65M .row > div {
    margin: auto;
  }
  .cid-v9fUtGI65M .social-row {
    justify-content: center;
  }
}
.cid-v9fUtGI65M .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v9fUtGI65M .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v9fUtGI65M .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v9fUtGI65M .list {
    margin-bottom: 0rem;
  }
}
.cid-v9fUtGI65M .mbr-text {
  color: #bbbbbb;
}
.cid-v9fUtGI65M .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v9fUtGI65M .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v9fUtGI65M div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v9fxcX0yGe {
  z-index: 1000;
  width: 100%;
}
.cid-v9fxcX0yGe .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;
}
@media (max-width: 767px) {
  .cid-v9fxcX0yGe .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-v9fxcX0yGe .navbar-nav {
  margin: auto;
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-v9fxcX0yGe .navbar-nav {
    max-width: 45%;
  }
}
.cid-v9fxcX0yGe .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v9fxcX0yGe .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-v9fxcX0yGe .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v9fxcX0yGe .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v9fxcX0yGe .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v9fxcX0yGe .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v9fxcX0yGe .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-v9fxcX0yGe .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-v9fxcX0yGe .navbar-logo {
  padding-left: 1rem;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9fxcX0yGe .navbar-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .cid-v9fxcX0yGe .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-v9fxcX0yGe .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: auto !important;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9fxcX0yGe .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-v9fxcX0yGe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9fxcX0yGe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9fxcX0yGe .nav-link {
  width: fit-content;
  position: relative;
}
.cid-v9fxcX0yGe .navbar-caption {
  padding-left: 2rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-v9fxcX0yGe .navbar-caption {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9fxcX0yGe .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-v9fxcX0yGe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v9fxcX0yGe .container {
  display: flex;
  height: 90px;
  position: relative;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: #ffffff !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-v9fxcX0yGe .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v9fxcX0yGe .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-v9fxcX0yGe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v9fxcX0yGe .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: #ffffff !important;
}
.cid-v9fxcX0yGe .nav-item:focus,
.cid-v9fxcX0yGe .nav-link:focus {
  outline: none;
}
.cid-v9fxcX0yGe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9fxcX0yGe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9fxcX0yGe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9fxcX0yGe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9fxcX0yGe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9fxcX0yGe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9fxcX0yGe .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v9fxcX0yGe .navbar.opened {
  transition: all 0.3s;
}
.cid-v9fxcX0yGe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9fxcX0yGe .navbar .navbar-logo img {
  width: auto;
}
.cid-v9fxcX0yGe .navbar .navbar-collapse {
  justify-content: flex-end;
}
.cid-v9fxcX0yGe .navbar.collapsed {
  justify-content: center;
}
.cid-v9fxcX0yGe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9fxcX0yGe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9fxcX0yGe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-v9fxcX0yGe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9fxcX0yGe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9fxcX0yGe .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-v9fxcX0yGe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9fxcX0yGe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9fxcX0yGe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-v9fxcX0yGe .navbar {
    min-height: 72px;
  }
  .cid-v9fxcX0yGe .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v9fxcX0yGe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9fxcX0yGe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9fxcX0yGe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9fxcX0yGe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9fxcX0yGe .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-v9fxcX0yGe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9fxcX0yGe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-v9fxcX0yGe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9fxcX0yGe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v9fxcX0yGe .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-v9fxcX0yGe .dropdown-item.active,
.cid-v9fxcX0yGe .dropdown-item:active {
  background-color: transparent;
}
.cid-v9fxcX0yGe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9fxcX0yGe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9fxcX0yGe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9fxcX0yGe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9fxcX0yGe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-v9fxcX0yGe .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v9fxcX0yGe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9fxcX0yGe .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-v9fxcX0yGe .navbar-buttons {
    text-align: left;
  }
}
.cid-v9fxcX0yGe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9fxcX0yGe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9fxcX0yGe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9fxcX0yGe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9fxcX0yGe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9fxcX0yGe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9fxcX0yGe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9fxcX0yGe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9fxcX0yGe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9fxcX0yGe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9fxcX0yGe .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v9fxcX0yGe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9fxcX0yGe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-v9fxcX0yGe .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9fxcX0yGe .navbar {
    height: 70px;
  }
  .cid-v9fxcX0yGe .navbar.opened {
    height: auto;
  }
  .cid-v9fxcX0yGe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-v9fxcX0yGe .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v9fxcX0yGe .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v9fxcX0yGe .navbar-brand {
    margin-right: auto;
  }
  .cid-v9fxcX0yGe .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: #ffffff !important;
    background: #ffffff !important;
    backdrop-filter: blur(8px);
  }
  .cid-v9fxcX0yGe .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-v9fxcX0yGe .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v9fxcX0yGe .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v9fxcX0yGe .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v9fxcX0yGe .navbar-collapse {
  justify-content: flex-end !important;
}
@media (max-width: 575px) {
  .cid-v9fxcX0yGe .navbar-collapse {
    padding: 1rem;
  }
}
.cid-v9fxcX0yGe .menu3,
.cid-v9fxcX0yGe .menu3 .navbar,
.cid-v9fxcX0yGe .menu3 .navbar-dropdown {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
.cid-v9fxcX0yGe .menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
  background: inherit;
}
@media (min-width: 992px) {
  .cid-v9fxcX0yGe .menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .cid-v9fxcX0yGe section.menu3 .container {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 768px) {
  .cid-v9fxcX0yGe .menu3 .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }
  .cid-v9fxcX0yGe section.menu3,
  .cid-v9fxcX0yGe section.menu3 .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9fxcX0yGe section.menu3 .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .cid-v9fxcX0yGe .navbar.navbar-dropdown,
  .cid-v9fxcX0yGe .navbar.navbar-dropdown > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .cid-v9fxcX0yGe .navbar.navbar-dropdown > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.cid-v9fxcX0yGe .menu3,
.cid-v9fxcX0yGe .menu3 .navbar,
.cid-v9fxcX0yGe .menu3 .btn,
.cid-v9fxcX0yGe .menu3 .nav-link,
.cid-v9fxcX0yGe .menu3 .dropdown-menu,
.cid-v9fxcX0yGe .menu3 .dropdown-item,
.cid-v9fxcX0yGe .menu3 .navbar-brand img {
  border-radius: 0 !important;
}
.cid-v9fxcX0yGe .menu3 .navbar {
  background: transparent !important;
}
.cid-v9fxcX0yGe .menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9fxcX0yGe .menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9fxcX0yGe section.menu3,
.cid-v9fxcX0yGe section.menu3 > nav,
.cid-v9fxcX0yGe section.menu3 .navbar,
.cid-v9fxcX0yGe section.menu3 .navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9fxcX0yGe section.menu3 .container {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  border-radius: 0 !important;
}
.cid-v9fxcX0yGe section.menu3 .container,
.cid-v9fxcX0yGe section.menu3 .navbar,
.cid-v9fxcX0yGe section.menu3 .nav-link,
.cid-v9fxcX0yGe section.menu3 .dropdown-menu,
.cid-v9fxcX0yGe section.menu3 .dropdown-item,
.cid-v9fxcX0yGe section.menu3 .btn,
.cid-v9fxcX0yGe section.menu3 img {
  border-radius: 0 !important;
}
.cid-v9fxcX0yGe section.menu3 .navbar-brand {
  margin-right: auto !important;
}
.cid-v9fxcX0yGe section.menu3 .navbar-collapse {
  justify-content: flex-end !important;
}
.cid-v9fxcX0yGe .navbar.navbar-dropdown {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-v9fxcX0yGe .navbar.navbar-dropdown > .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  border-radius: 0 !important;
}
.cid-v9fxcX0yGe .navbar,
.cid-v9fxcX0yGe .navbar * {
  border-radius: 0 !important;
}
.cid-v9fxcX0yGe .navbar .nav-link,
.cid-v9fxcX0yGe .navbar .dropdown-menu,
.cid-v9fxcX0yGe .navbar .dropdown-item,
.cid-v9fxcX0yGe .navbar .btn {
  border-radius: 0 !important;
}
.cid-v9fxF84944 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9fxF84944 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fxF84944 .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-v9fxF84944 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9fxF84944 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9fxF84944 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v9fzfO01jM .counter-section {
  width: 100%;
  padding: 60px 20px;
}
.cid-v9fzfO01jM .counter-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.cid-v9fzfO01jM .counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-v9fzfO01jM .counter-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cid-v9fzfO01jM .counter-number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: #111;
}
.cid-v9fzfO01jM .counter-icon i {
  font-size: 34px;
  color: #0f5132;
}
.cid-v9fzfO01jM .counter-label {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
@media (max-width: 992px) {
  .cid-v9fzfO01jM .counter-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .cid-v9fzfO01jM .counter-wrap {
    grid-template-columns: 1fr;
  }
  .cid-v9fzfO01jM .counter-number {
    font-size: 48px;
  }
}
.cid-v9fxLwoqKM {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v9fziw8x0I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9fziw8x0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fziw8x0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v9fziw8x0I .container {
    max-width: 1400px;
  }
}
.cid-v9fziw8x0I .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0b4d3e;
  margin-bottom: 2rem;
}
.cid-v9fziw8x0I .row {
  justify-content: center;
}
.cid-v9fziw8x0I .card-text {
  color: #565656;
}
.cid-v9fzBkkbI7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v9fzBkkbI7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fzBkkbI7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9fzBkkbI7 .nav-tabs .nav-item.open .nav-link:focus,
.cid-v9fzBkkbI7 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-v9fzBkkbI7 .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #1a7f68;
}
@media (max-width: 767px) {
  .cid-v9fzBkkbI7 .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-v9fzBkkbI7 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-v9fzBkkbI7 .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-v9fzBkkbI7 .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-v9fzBkkbI7 .nav-link,
.cid-v9fzBkkbI7 .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-v9fzBkkbI7 .nav-tabs .nav-link.active {
  color: #1a7f68;
  border-bottom: 3px solid #1a7f68;
}
.cid-v9fzBkkbI7 H4 {
  text-align: center;
}
.cid-v9fzBkkbI7 H3 {
  text-align: center;
}
.cid-v9fxcZpj6b {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/skincarewithunicare-2000x1125.webp");
}
.cid-v9fxcZpj6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fxcZpj6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9fxcZpj6b .mbr-text,
.cid-v9fxcZpj6b .mbr-section-btn {
  color: #232323;
}
.cid-v9fxcZpj6b .card-title,
.cid-v9fxcZpj6b .card-box {
  color: #ffffff;
}
.cid-v9fxcZpj6b .mbr-text,
.cid-v9fxcZpj6b .link-wrap {
  color: #ffffff;
}
.cid-v9fHaTqSD4 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9fHaTqSD4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fHaTqSD4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9fHaTqSD4 .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v9fHaTqSD4 .icon-box {
  background: #1a7f68;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v9fHaTqSD4 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v9fHaTqSD4 .card {
    margin-bottom: 2rem;
  }
  .cid-v9fHaTqSD4 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-v9fHaTqSD4 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v9fHaTqSD4 .mbr-text,
.cid-v9fHaTqSD4 .mbr-section-btn {
  text-align: center;
}
.cid-v9fHaTqSD4 .card-title,
.cid-v9fHaTqSD4 .card-box {
  text-align: center;
}
.cid-v9fPo424EG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0b4d3e;
}
.cid-v9fPo424EG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fPo424EG .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-v9fPo424EG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9fPo424EG .row {
  flex-direction: row-reverse;
}
.cid-v9fPo424EG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9fPo424EG .text-wrapper {
    padding: 2rem;
  }
}
.cid-v9fPo424EG .mbr-text {
  color: #ffffff;
}
.cid-v9fPo424EG .mbr-section-title {
  color: #ffffff;
}
.cid-v9fPouJGJI {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #0b4d3e;
}
.cid-v9fPouJGJI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fPouJGJI .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-v9fPouJGJI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9fPouJGJI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9fPouJGJI .text-wrapper {
    padding: 2rem;
  }
}
.cid-v9fPouJGJI .mbr-section-title {
  color: #ffffff;
}
.cid-v9fPouJGJI .mbr-text {
  color: #ffffff;
}
.cid-v9fR0dv9xp {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9fR0dv9xp .mbr-text {
  color: #000000;
}
.cid-v9fR0dv9xp .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v9fR0dv9xp .mbr-section-title {
  color: #07362b;
  text-align: center;
}
.cid-v9fR0dv9xp .mbr-section-subtitle,
.cid-v9fR0dv9xp .main-button {
  text-align: center;
  color: #07362b;
}
.cid-v9fR0dv9xp .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v9fR0dv9xp .main-button {
    margin-bottom: 2rem;
  }
}
.cid-v9fR0dv9xp .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-v9fR0dv9xp .panel-group {
  border: none;
}
.cid-v9fR0dv9xp .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-v9fR0dv9xp .card-header {
    padding: 0rem;
  }
}
.cid-v9fR0dv9xp .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-v9fR0dv9xp .collapsed span {
  transform: rotate(0deg);
}
.cid-v9fR0dv9xp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v9fR0dv9xp p {
  margin-bottom: 0.3rem;
}
.cid-v9fR0dv9xp .panel-title-edit {
  color: #000000;
}
.cid-v9fR0dv9xp .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-v9fR0dv9xp .card {
  background: #ffffff;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-v9fR0dv9xp .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v9fR0dv9xp .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-v9fR0dv9xp .panel-text {
  color: #000000;
}
.cid-v9fR0dv9xp .panel-title-edit,
.cid-v9fR0dv9xp .mbr-iconfont {
  color: #000000;
}
.cid-v9fSjhsBHb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v9fSjhsBHb .mbr-text {
  color: #000000;
}
.cid-v9fSjhsBHb .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v9fSjhsBHb .mbr-section-title {
  color: #07362b;
  text-align: left;
}
.cid-v9fSjhsBHb .mbr-section-subtitle,
.cid-v9fSjhsBHb .main-button {
  text-align: left;
  color: #07362b;
}
.cid-v9fSjhsBHb .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v9fSjhsBHb .main-button {
    margin-bottom: 2rem;
  }
}
.cid-v9fSjhsBHb .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-v9fSjhsBHb .panel-group {
  border: none;
}
.cid-v9fSjhsBHb .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-v9fSjhsBHb .card-header {
    padding: 0rem;
  }
}
.cid-v9fSjhsBHb .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-v9fSjhsBHb .collapsed span {
  transform: rotate(0deg);
}
.cid-v9fSjhsBHb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v9fSjhsBHb p {
  margin-bottom: 0.3rem;
}
.cid-v9fSjhsBHb .panel-title-edit {
  color: #000000;
}
.cid-v9fSjhsBHb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-v9fSjhsBHb .card {
  background: #ffffff;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-v9fSjhsBHb .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v9fSjhsBHb .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-v9fSjhsBHb .panel-text {
  color: #000000;
}
.cid-v9fSjhsBHb .panel-title-edit,
.cid-v9fSjhsBHb .mbr-iconfont {
  color: #000000;
}
.cid-v9fxd0QctT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/skincarewithunicare-2000x1125.webp");
}
.cid-v9fxd0QctT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fxd0QctT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9fxd0QctT .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9fxd0QctT .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-v9fxd0QctT .mbr-section-title {
  color: #ffffff;
}
.cid-v9fxd0QctT .mbr-text,
.cid-v9fxd0QctT .mbr-section-btn {
  color: #ffffff;
}
.cid-v9fxd12sri .whatsapp-wrapper {
  position: fixed;
  bottom: 19px;
  right: 32px;
  z-index: 9999;
}
.cid-v9fxd12sri .whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease;
  width: auto;
  height: auto;
  min-width: calc(60px);
  min-height: calc(60px);
}
.cid-v9fxd12sri .whatsapp-button:hover {
  transform: scale(1.1);
}
.cid-v9fxd12sri .whatsapp-button::after {
  content: attr(data-tooltip);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cid-v9fxd12sri .whatsapp-button:hover::after {
  opacity: 1;
}
.cid-v9fxd12sri .tooltip-top::after {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v9fxd12sri .tooltip-bottom::after {
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v9fxd12sri .tooltip-left::after {
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
}
.cid-v9fxd12sri .tooltip-right::after {
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .cid-v9fxd12sri .whatsapp-button::after {
    display: none;
  }
}
.cid-v9fxd12sri DIV {
  color: #ffffff;
}
.cid-v9fxd12sri p {
  color: #000;
}
.cid-v9fxd12sri .hidden {
  display: none;
}
.cid-v9fxd2a83c {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #07362b;
}
.cid-v9fxd2a83c .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9fxd2a83c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9fxd2a83c .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v9fxd2a83c .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v9fxd2a83c .row {
    text-align: center;
  }
  .cid-v9fxd2a83c .row > div {
    margin: auto;
  }
  .cid-v9fxd2a83c .social-row {
    justify-content: center;
  }
}
.cid-v9fxd2a83c .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v9fxd2a83c .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v9fxd2a83c .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v9fxd2a83c .list {
    margin-bottom: 0rem;
  }
}
.cid-v9fxd2a83c .mbr-text {
  color: #bbbbbb;
}
.cid-v9fxd2a83c .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v9fxd2a83c .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v9fxd2a83c div > *:last-child {
    margin-top: 0 !important;
  }
}
