body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #6592e6 !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: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !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: #6592e6 !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: #205ac5 !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: #6592e6;
}
.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-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tDcgQAQfnG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDcgQAQfnG nav.navbar {
  position: fixed;
}
.cid-tDcgQAQfnG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDcgQAQfnG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDcgQAQfnG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDcgQAQfnG .dropdown-item:hover,
.cid-tDcgQAQfnG .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tDcgQAQfnG .dropdown-item:hover span {
  color: white;
}
.cid-tDcgQAQfnG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDcgQAQfnG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDcgQAQfnG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDcgQAQfnG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDcgQAQfnG .nav-link {
  position: relative;
}
.cid-tDcgQAQfnG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tDcgQAQfnG .container {
    flex-wrap: nowrap;
  }
}
.cid-tDcgQAQfnG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDcgQAQfnG .dropdown-menu,
.cid-tDcgQAQfnG .navbar.opened {
  background: #ffffff !important;
}
.cid-tDcgQAQfnG .nav-item:focus,
.cid-tDcgQAQfnG .nav-link:focus {
  outline: none;
}
.cid-tDcgQAQfnG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDcgQAQfnG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDcgQAQfnG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDcgQAQfnG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDcgQAQfnG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDcgQAQfnG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDcgQAQfnG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tDcgQAQfnG .navbar.opened {
  transition: all 0.3s;
}
.cid-tDcgQAQfnG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDcgQAQfnG .navbar .navbar-logo img {
  width: auto;
}
.cid-tDcgQAQfnG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDcgQAQfnG .navbar.collapsed {
  justify-content: center;
}
.cid-tDcgQAQfnG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDcgQAQfnG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDcgQAQfnG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tDcgQAQfnG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDcgQAQfnG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDcgQAQfnG .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-tDcgQAQfnG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDcgQAQfnG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDcgQAQfnG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDcgQAQfnG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDcgQAQfnG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDcgQAQfnG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDcgQAQfnG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDcgQAQfnG .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-tDcgQAQfnG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDcgQAQfnG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDcgQAQfnG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDcgQAQfnG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDcgQAQfnG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDcgQAQfnG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDcgQAQfnG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDcgQAQfnG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDcgQAQfnG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDcgQAQfnG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDcgQAQfnG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDcgQAQfnG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDcgQAQfnG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDcgQAQfnG .dropdown-item.active,
.cid-tDcgQAQfnG .dropdown-item:active {
  background-color: transparent;
}
.cid-tDcgQAQfnG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDcgQAQfnG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDcgQAQfnG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDcgQAQfnG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDcgQAQfnG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDcgQAQfnG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDcgQAQfnG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDcgQAQfnG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDcgQAQfnG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #d02313;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDcgQAQfnG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDcgQAQfnG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDcgQAQfnG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDcgQAQfnG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDcgQAQfnG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDcgQAQfnG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDcgQAQfnG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDcgQAQfnG .navbar {
    height: 70px;
  }
  .cid-tDcgQAQfnG .navbar.opened {
    height: auto;
  }
  .cid-tDcgQAQfnG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDiActhblo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDiActhblo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDiActhblo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDiActhblo .mbr-section-subtitle {
  text-align: left;
  color: #413f3e;
}
.cid-tDiActhblo .mbr-section-title {
  color: #413f3e;
}
.cid-u5BaLNZGIX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #413f3e;
}
.cid-u5BaLNZGIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5BaLNZGIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5BaLNZGIX .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u5BaLNZGIX .row {
    text-align: center;
  }
  .cid-u5BaLNZGIX .row > div {
    margin: auto;
  }
  .cid-u5BaLNZGIX .social-row {
    justify-content: center;
  }
}
.cid-u5BaLNZGIX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u5BaLNZGIX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 0rem;
  }
}
.cid-u5BaLNZGIX .mbr-text {
  color: #bbbbbb;
}
.cid-u5BaLNZGIX .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-u5BaLNZGIX .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tRC8Bxi8qZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tRC8Bxi8qZ nav.navbar {
  position: fixed;
}
.cid-tRC8Bxi8qZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRC8Bxi8qZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRC8Bxi8qZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRC8Bxi8qZ .dropdown-item:hover,
.cid-tRC8Bxi8qZ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tRC8Bxi8qZ .dropdown-item:hover span {
  color: white;
}
.cid-tRC8Bxi8qZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRC8Bxi8qZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRC8Bxi8qZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRC8Bxi8qZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRC8Bxi8qZ .nav-link {
  position: relative;
}
.cid-tRC8Bxi8qZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tRC8Bxi8qZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tRC8Bxi8qZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRC8Bxi8qZ .dropdown-menu,
.cid-tRC8Bxi8qZ .navbar.opened {
  background: #ffffff !important;
}
.cid-tRC8Bxi8qZ .nav-item:focus,
.cid-tRC8Bxi8qZ .nav-link:focus {
  outline: none;
}
.cid-tRC8Bxi8qZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRC8Bxi8qZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRC8Bxi8qZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRC8Bxi8qZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRC8Bxi8qZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRC8Bxi8qZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRC8Bxi8qZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tRC8Bxi8qZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tRC8Bxi8qZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRC8Bxi8qZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tRC8Bxi8qZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRC8Bxi8qZ .navbar.collapsed {
  justify-content: center;
}
.cid-tRC8Bxi8qZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRC8Bxi8qZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRC8Bxi8qZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tRC8Bxi8qZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRC8Bxi8qZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRC8Bxi8qZ .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-tRC8Bxi8qZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRC8Bxi8qZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRC8Bxi8qZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRC8Bxi8qZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRC8Bxi8qZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRC8Bxi8qZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRC8Bxi8qZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRC8Bxi8qZ .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-tRC8Bxi8qZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRC8Bxi8qZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRC8Bxi8qZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRC8Bxi8qZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRC8Bxi8qZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRC8Bxi8qZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tRC8Bxi8qZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tRC8Bxi8qZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRC8Bxi8qZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRC8Bxi8qZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRC8Bxi8qZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRC8Bxi8qZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRC8Bxi8qZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRC8Bxi8qZ .dropdown-item.active,
.cid-tRC8Bxi8qZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tRC8Bxi8qZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRC8Bxi8qZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRC8Bxi8qZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRC8Bxi8qZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRC8Bxi8qZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRC8Bxi8qZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRC8Bxi8qZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRC8Bxi8qZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRC8Bxi8qZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRC8Bxi8qZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #d02313;
}
.cid-tRC8Bxi8qZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRC8Bxi8qZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRC8Bxi8qZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRC8Bxi8qZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRC8Bxi8qZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRC8Bxi8qZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRC8Bxi8qZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRC8Bxi8qZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRC8Bxi8qZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRC8Bxi8qZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRC8Bxi8qZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tRC8Bxi8qZ .navbar {
    height: 70px;
  }
  .cid-tRC8Bxi8qZ .navbar.opened {
    height: auto;
  }
  .cid-tRC8Bxi8qZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRC8BwPBa4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tRC8BwPBa4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRC8BwPBa4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRC8BwPBa4 .mbr-section-subtitle {
  text-align: left;
  color: #413f3e;
}
.cid-tRC8BwPBa4 .mbr-section-title {
  color: #413f3e;
}
.cid-u5BaLNZGIX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #413f3e;
}
.cid-u5BaLNZGIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5BaLNZGIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5BaLNZGIX .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u5BaLNZGIX .row {
    text-align: center;
  }
  .cid-u5BaLNZGIX .row > div {
    margin: auto;
  }
  .cid-u5BaLNZGIX .social-row {
    justify-content: center;
  }
}
.cid-u5BaLNZGIX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u5BaLNZGIX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 0rem;
  }
}
.cid-u5BaLNZGIX .mbr-text {
  color: #bbbbbb;
}
.cid-u5BaLNZGIX .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-u5BaLNZGIX .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tRBRwd6JPh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tRBRwd6JPh nav.navbar {
  position: fixed;
}
.cid-tRBRwd6JPh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRBRwd6JPh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRBRwd6JPh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRBRwd6JPh .dropdown-item:hover,
.cid-tRBRwd6JPh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tRBRwd6JPh .dropdown-item:hover span {
  color: white;
}
.cid-tRBRwd6JPh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRBRwd6JPh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRBRwd6JPh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRBRwd6JPh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRBRwd6JPh .nav-link {
  position: relative;
}
.cid-tRBRwd6JPh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tRBRwd6JPh .container {
    flex-wrap: nowrap;
  }
}
.cid-tRBRwd6JPh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRBRwd6JPh .dropdown-menu,
.cid-tRBRwd6JPh .navbar.opened {
  background: #ffffff !important;
}
.cid-tRBRwd6JPh .nav-item:focus,
.cid-tRBRwd6JPh .nav-link:focus {
  outline: none;
}
.cid-tRBRwd6JPh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRBRwd6JPh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRBRwd6JPh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRBRwd6JPh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRBRwd6JPh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRBRwd6JPh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRBRwd6JPh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tRBRwd6JPh .navbar.opened {
  transition: all 0.3s;
}
.cid-tRBRwd6JPh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRBRwd6JPh .navbar .navbar-logo img {
  width: auto;
}
.cid-tRBRwd6JPh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRBRwd6JPh .navbar.collapsed {
  justify-content: center;
}
.cid-tRBRwd6JPh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRBRwd6JPh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRBRwd6JPh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tRBRwd6JPh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRBRwd6JPh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRBRwd6JPh .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-tRBRwd6JPh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRBRwd6JPh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRBRwd6JPh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRBRwd6JPh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRBRwd6JPh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRBRwd6JPh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRBRwd6JPh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRBRwd6JPh .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-tRBRwd6JPh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRBRwd6JPh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRBRwd6JPh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRBRwd6JPh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRBRwd6JPh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRBRwd6JPh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tRBRwd6JPh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tRBRwd6JPh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRBRwd6JPh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRBRwd6JPh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRBRwd6JPh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRBRwd6JPh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRBRwd6JPh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRBRwd6JPh .dropdown-item.active,
.cid-tRBRwd6JPh .dropdown-item:active {
  background-color: transparent;
}
.cid-tRBRwd6JPh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRBRwd6JPh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRBRwd6JPh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRBRwd6JPh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRBRwd6JPh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRBRwd6JPh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRBRwd6JPh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRBRwd6JPh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRBRwd6JPh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRBRwd6JPh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #d02313;
}
.cid-tRBRwd6JPh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRBRwd6JPh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRBRwd6JPh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRBRwd6JPh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRBRwd6JPh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRBRwd6JPh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRBRwd6JPh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRBRwd6JPh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRBRwd6JPh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRBRwd6JPh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRBRwd6JPh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tRBRwd6JPh .navbar {
    height: 70px;
  }
  .cid-tRBRwd6JPh .navbar.opened {
    height: auto;
  }
  .cid-tRBRwd6JPh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRBRwdOKpO {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/secteur-immobilier2.jpg");
}
.cid-tRBRwdOKpO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRBRwdOKpO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRBRwdOKpO .mbr-text,
.cid-tRBRwdOKpO .mbr-section-btn {
  color: #413f3e;
}
.cid-tRBRwdOKpO .mbr-section-title {
  color: #ffffff;
}
.cid-tVL4OOji3u {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tVL4OOji3u .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWThc0JgMR {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWThc0JgMR .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWThc0JgMR .mbr-text {
  text-align: left;
}
.cid-tVL4QXWGMp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVL4QXWGMp blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tVL4PX5xbs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVL4PX5xbs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVL4PX5xbs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRBRwj4cs0 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffe161;
}
@media (min-width: 991px) {
  .cid-tRBRwj4cs0 .container-fluid {
    padding-left: 0;
  }
}
.cid-tRBRwj4cs0 .mbr-text,
.cid-tRBRwj4cs0 .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tRBRwj4cs0 .mbr-text,
  .cid-tRBRwj4cs0 .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tRBRwj4cs0 .mbr-text,
  .cid-tRBRwj4cs0 .mbr-section-title {
    text-align: center;
  }
}
.cid-tRBRwj4cs0 a.btn {
  height: 100%;
  margin: 0;
}
.cid-tRBRwj4cs0 .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tRBRwj4cs0 .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tRBRwj4cs0 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRBRwj4cs0 .justify-content-center {
  align-items: center;
}
.cid-tRBRwj4cs0 .mbr-section-title {
  color: #413f3e;
}
.cid-tRBRwj4cs0 .mbr-text {
  color: #413f3e;
}
.cid-tRBRwjuRWG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tRBRwjuRWG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRBRwjuRWG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRBRwjuRWG .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tRBRwjuRWG .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tRBRwjuRWG .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tRBRwjuRWG .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tRBRwjuRWG .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-tRBRwjuRWG .mbr-section-title {
  color: #413f3e;
}
.cid-tRBRwjuRWG .card-title {
  color: #413f3e;
}
.cid-tRBRwk2Gx7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bed3f9;
}
.cid-tRBRwk2Gx7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRBRwk2Gx7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRBRwk2Gx7 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tRBRwk2Gx7 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tRBRwk2Gx7 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tRBRwk2Gx7 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tRBRwk2Gx7 .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tRBRwk2Gx7 .bg-instagram:hover {
  background: #bd005c;
}
.cid-tRBRwk2Gx7 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tRBRwk2Gx7 [class^="socicon-"]:before,
.cid-tRBRwk2Gx7 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tRBRwk2Gx7 .mbr-section-title,
.cid-tRBRwk2Gx7 .social-list {
  color: #413f3e;
}
.cid-u5BaLNZGIX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #413f3e;
}
.cid-u5BaLNZGIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5BaLNZGIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5BaLNZGIX .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u5BaLNZGIX .row {
    text-align: center;
  }
  .cid-u5BaLNZGIX .row > div {
    margin: auto;
  }
  .cid-u5BaLNZGIX .social-row {
    justify-content: center;
  }
}
.cid-u5BaLNZGIX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u5BaLNZGIX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 0rem;
  }
}
.cid-u5BaLNZGIX .mbr-text {
  color: #bbbbbb;
}
.cid-u5BaLNZGIX .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-u5BaLNZGIX .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tVLiikUaIJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVLiikUaIJ nav.navbar {
  position: fixed;
}
.cid-tVLiikUaIJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVLiikUaIJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVLiikUaIJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVLiikUaIJ .dropdown-item:hover,
.cid-tVLiikUaIJ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tVLiikUaIJ .dropdown-item:hover span {
  color: white;
}
.cid-tVLiikUaIJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVLiikUaIJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVLiikUaIJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVLiikUaIJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVLiikUaIJ .nav-link {
  position: relative;
}
.cid-tVLiikUaIJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVLiikUaIJ .container {
    flex-wrap: nowrap;
  }
}
.cid-tVLiikUaIJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tVLiikUaIJ .dropdown-menu,
.cid-tVLiikUaIJ .navbar.opened {
  background: #ffffff !important;
}
.cid-tVLiikUaIJ .nav-item:focus,
.cid-tVLiikUaIJ .nav-link:focus {
  outline: none;
}
.cid-tVLiikUaIJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVLiikUaIJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVLiikUaIJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVLiikUaIJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVLiikUaIJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVLiikUaIJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVLiikUaIJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tVLiikUaIJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tVLiikUaIJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVLiikUaIJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tVLiikUaIJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVLiikUaIJ .navbar.collapsed {
  justify-content: center;
}
.cid-tVLiikUaIJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVLiikUaIJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVLiikUaIJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tVLiikUaIJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVLiikUaIJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVLiikUaIJ .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-tVLiikUaIJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVLiikUaIJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVLiikUaIJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVLiikUaIJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVLiikUaIJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVLiikUaIJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVLiikUaIJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVLiikUaIJ .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-tVLiikUaIJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVLiikUaIJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVLiikUaIJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVLiikUaIJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVLiikUaIJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVLiikUaIJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tVLiikUaIJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tVLiikUaIJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVLiikUaIJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVLiikUaIJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVLiikUaIJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tVLiikUaIJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVLiikUaIJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVLiikUaIJ .dropdown-item.active,
.cid-tVLiikUaIJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tVLiikUaIJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVLiikUaIJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVLiikUaIJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVLiikUaIJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVLiikUaIJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVLiikUaIJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVLiikUaIJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVLiikUaIJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVLiikUaIJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVLiikUaIJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #d02313;
}
.cid-tVLiikUaIJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVLiikUaIJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVLiikUaIJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVLiikUaIJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVLiikUaIJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVLiikUaIJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVLiikUaIJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVLiikUaIJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVLiikUaIJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVLiikUaIJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVLiikUaIJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVLiikUaIJ .navbar {
    height: 70px;
  }
  .cid-tVLiikUaIJ .navbar.opened {
    height: auto;
  }
  .cid-tVLiikUaIJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVLiilsFoj {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-57.jpg");
}
.cid-tVLiilsFoj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVLiilsFoj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVLiilsFoj .mbr-text,
.cid-tVLiilsFoj .mbr-section-btn {
  color: #413f3e;
}
.cid-tVLiilsFoj .mbr-section-title {
  color: #ffffff;
}
.cid-tVLiim0fFa {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tVLiim0fFa .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWTjGU40rb {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWTjGU40rb .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWTjGU40rb .mbr-text {
  text-align: left;
}
.cid-tVLiimfI0w {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVLiimfI0w blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tVLiimwAzM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVLiimwAzM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVLiimwAzM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVLiimUre6 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffe161;
}
@media (min-width: 991px) {
  .cid-tVLiimUre6 .container-fluid {
    padding-left: 0;
  }
}
.cid-tVLiimUre6 .mbr-text,
.cid-tVLiimUre6 .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tVLiimUre6 .mbr-text,
  .cid-tVLiimUre6 .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tVLiimUre6 .mbr-text,
  .cid-tVLiimUre6 .mbr-section-title {
    text-align: center;
  }
}
.cid-tVLiimUre6 a.btn {
  height: 100%;
  margin: 0;
}
.cid-tVLiimUre6 .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tVLiimUre6 .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tVLiimUre6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tVLiimUre6 .justify-content-center {
  align-items: center;
}
.cid-tVLiimUre6 .mbr-section-title {
  color: #413f3e;
}
.cid-tVLiimUre6 .mbr-text {
  color: #413f3e;
}
.cid-tVLiinfhrf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVLiinfhrf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVLiinfhrf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVLiinfhrf .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tVLiinfhrf .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tVLiinfhrf .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVLiinfhrf .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tVLiinfhrf .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-tVLiinfhrf .mbr-section-title {
  color: #413f3e;
}
.cid-tVLiinfhrf .card-title {
  color: #413f3e;
}
.cid-tVLiinO6CG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bed3f9;
}
.cid-tVLiinO6CG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVLiinO6CG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVLiinO6CG .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tVLiinO6CG .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tVLiinO6CG .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tVLiinO6CG .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tVLiinO6CG .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tVLiinO6CG .bg-instagram:hover {
  background: #bd005c;
}
.cid-tVLiinO6CG .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tVLiinO6CG [class^="socicon-"]:before,
.cid-tVLiinO6CG [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tVLiinO6CG .mbr-section-title,
.cid-tVLiinO6CG .social-list {
  color: #413f3e;
}
.cid-u5BaLNZGIX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #413f3e;
}
.cid-u5BaLNZGIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5BaLNZGIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5BaLNZGIX .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u5BaLNZGIX .row {
    text-align: center;
  }
  .cid-u5BaLNZGIX .row > div {
    margin: auto;
  }
  .cid-u5BaLNZGIX .social-row {
    justify-content: center;
  }
}
.cid-u5BaLNZGIX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u5BaLNZGIX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 0rem;
  }
}
.cid-u5BaLNZGIX .mbr-text {
  color: #bbbbbb;
}
.cid-u5BaLNZGIX .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-u5BaLNZGIX .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tVLsyXPJt2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVLsyXPJt2 nav.navbar {
  position: fixed;
}
.cid-tVLsyXPJt2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVLsyXPJt2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVLsyXPJt2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVLsyXPJt2 .dropdown-item:hover,
.cid-tVLsyXPJt2 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tVLsyXPJt2 .dropdown-item:hover span {
  color: white;
}
.cid-tVLsyXPJt2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVLsyXPJt2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVLsyXPJt2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVLsyXPJt2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVLsyXPJt2 .nav-link {
  position: relative;
}
.cid-tVLsyXPJt2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVLsyXPJt2 .container {
    flex-wrap: nowrap;
  }
}
.cid-tVLsyXPJt2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tVLsyXPJt2 .dropdown-menu,
.cid-tVLsyXPJt2 .navbar.opened {
  background: #ffffff !important;
}
.cid-tVLsyXPJt2 .nav-item:focus,
.cid-tVLsyXPJt2 .nav-link:focus {
  outline: none;
}
.cid-tVLsyXPJt2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVLsyXPJt2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVLsyXPJt2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVLsyXPJt2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVLsyXPJt2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVLsyXPJt2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVLsyXPJt2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tVLsyXPJt2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tVLsyXPJt2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVLsyXPJt2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tVLsyXPJt2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVLsyXPJt2 .navbar.collapsed {
  justify-content: center;
}
.cid-tVLsyXPJt2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVLsyXPJt2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVLsyXPJt2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tVLsyXPJt2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVLsyXPJt2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVLsyXPJt2 .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-tVLsyXPJt2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVLsyXPJt2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVLsyXPJt2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVLsyXPJt2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVLsyXPJt2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVLsyXPJt2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVLsyXPJt2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVLsyXPJt2 .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-tVLsyXPJt2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVLsyXPJt2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVLsyXPJt2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVLsyXPJt2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVLsyXPJt2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVLsyXPJt2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tVLsyXPJt2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tVLsyXPJt2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVLsyXPJt2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVLsyXPJt2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVLsyXPJt2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tVLsyXPJt2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVLsyXPJt2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVLsyXPJt2 .dropdown-item.active,
.cid-tVLsyXPJt2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tVLsyXPJt2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVLsyXPJt2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVLsyXPJt2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVLsyXPJt2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVLsyXPJt2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVLsyXPJt2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVLsyXPJt2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVLsyXPJt2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVLsyXPJt2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVLsyXPJt2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #d02313;
}
.cid-tVLsyXPJt2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVLsyXPJt2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVLsyXPJt2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVLsyXPJt2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVLsyXPJt2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVLsyXPJt2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVLsyXPJt2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVLsyXPJt2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVLsyXPJt2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVLsyXPJt2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVLsyXPJt2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVLsyXPJt2 .navbar {
    height: 70px;
  }
  .cid-tVLsyXPJt2 .navbar.opened {
    height: auto;
  }
  .cid-tVLsyXPJt2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVLsyYpwgG {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-3.png");
}
.cid-tVLsyYpwgG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVLsyYpwgG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVLsyYpwgG .mbr-text,
.cid-tVLsyYpwgG .mbr-section-btn {
  color: #413f3e;
}
.cid-tVLsyYpwgG .mbr-section-title {
  color: #ffffff;
}
.cid-tVLsyYVebb {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tVLsyYVebb .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWTlQQ20I7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWTlQQ20I7 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWTlQQ20I7 .mbr-text {
  text-align: left;
}
.cid-tVLsyZciCt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVLsyZciCt blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tVLsyZyILH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVLsyZyILH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVLsyZyILH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVLsyZWIRv {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffe161;
}
@media (min-width: 991px) {
  .cid-tVLsyZWIRv .container-fluid {
    padding-left: 0;
  }
}
.cid-tVLsyZWIRv .mbr-text,
.cid-tVLsyZWIRv .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tVLsyZWIRv .mbr-text,
  .cid-tVLsyZWIRv .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tVLsyZWIRv .mbr-text,
  .cid-tVLsyZWIRv .mbr-section-title {
    text-align: center;
  }
}
.cid-tVLsyZWIRv a.btn {
  height: 100%;
  margin: 0;
}
.cid-tVLsyZWIRv .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tVLsyZWIRv .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tVLsyZWIRv .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tVLsyZWIRv .justify-content-center {
  align-items: center;
}
.cid-tVLsyZWIRv .mbr-section-title {
  color: #413f3e;
}
.cid-tVLsyZWIRv .mbr-text {
  color: #413f3e;
}
.cid-tVLsz0kIni {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVLsz0kIni .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVLsz0kIni .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVLsz0kIni .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tVLsz0kIni .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tVLsz0kIni .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVLsz0kIni .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tVLsz0kIni .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-tVLsz0kIni .mbr-section-title {
  color: #413f3e;
}
.cid-tVLsz0kIni .card-title {
  color: #413f3e;
}
.cid-tVLsz0TsBM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bed3f9;
}
.cid-tVLsz0TsBM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVLsz0TsBM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVLsz0TsBM .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tVLsz0TsBM .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tVLsz0TsBM .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tVLsz0TsBM .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tVLsz0TsBM .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tVLsz0TsBM .bg-instagram:hover {
  background: #bd005c;
}
.cid-tVLsz0TsBM .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tVLsz0TsBM [class^="socicon-"]:before,
.cid-tVLsz0TsBM [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tVLsz0TsBM .mbr-section-title,
.cid-tVLsz0TsBM .social-list {
  color: #413f3e;
}
.cid-u5BaLNZGIX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #413f3e;
}
.cid-u5BaLNZGIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5BaLNZGIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5BaLNZGIX .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u5BaLNZGIX .row {
    text-align: center;
  }
  .cid-u5BaLNZGIX .row > div {
    margin: auto;
  }
  .cid-u5BaLNZGIX .social-row {
    justify-content: center;
  }
}
.cid-u5BaLNZGIX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u5BaLNZGIX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 0rem;
  }
}
.cid-u5BaLNZGIX .mbr-text {
  color: #bbbbbb;
}
.cid-u5BaLNZGIX .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-u5BaLNZGIX .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tDcgQAQfnG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tDcgQAQfnG nav.navbar {
  position: fixed;
}
.cid-tDcgQAQfnG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDcgQAQfnG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDcgQAQfnG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDcgQAQfnG .dropdown-item:hover,
.cid-tDcgQAQfnG .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tDcgQAQfnG .dropdown-item:hover span {
  color: white;
}
.cid-tDcgQAQfnG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDcgQAQfnG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDcgQAQfnG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDcgQAQfnG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDcgQAQfnG .nav-link {
  position: relative;
}
.cid-tDcgQAQfnG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tDcgQAQfnG .container {
    flex-wrap: nowrap;
  }
}
.cid-tDcgQAQfnG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDcgQAQfnG .dropdown-menu,
.cid-tDcgQAQfnG .navbar.opened {
  background: #ffffff !important;
}
.cid-tDcgQAQfnG .nav-item:focus,
.cid-tDcgQAQfnG .nav-link:focus {
  outline: none;
}
.cid-tDcgQAQfnG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDcgQAQfnG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDcgQAQfnG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDcgQAQfnG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDcgQAQfnG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDcgQAQfnG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDcgQAQfnG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tDcgQAQfnG .navbar.opened {
  transition: all 0.3s;
}
.cid-tDcgQAQfnG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDcgQAQfnG .navbar .navbar-logo img {
  width: auto;
}
.cid-tDcgQAQfnG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDcgQAQfnG .navbar.collapsed {
  justify-content: center;
}
.cid-tDcgQAQfnG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDcgQAQfnG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDcgQAQfnG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tDcgQAQfnG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDcgQAQfnG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDcgQAQfnG .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-tDcgQAQfnG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDcgQAQfnG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDcgQAQfnG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDcgQAQfnG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDcgQAQfnG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDcgQAQfnG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDcgQAQfnG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDcgQAQfnG .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-tDcgQAQfnG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDcgQAQfnG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDcgQAQfnG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDcgQAQfnG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDcgQAQfnG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDcgQAQfnG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDcgQAQfnG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDcgQAQfnG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDcgQAQfnG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDcgQAQfnG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDcgQAQfnG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDcgQAQfnG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDcgQAQfnG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDcgQAQfnG .dropdown-item.active,
.cid-tDcgQAQfnG .dropdown-item:active {
  background-color: transparent;
}
.cid-tDcgQAQfnG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDcgQAQfnG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDcgQAQfnG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDcgQAQfnG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDcgQAQfnG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDcgQAQfnG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDcgQAQfnG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDcgQAQfnG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDcgQAQfnG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #d02313;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDcgQAQfnG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDcgQAQfnG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDcgQAQfnG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDcgQAQfnG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDcgQAQfnG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDcgQAQfnG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDcgQAQfnG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDcgQAQfnG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDcgQAQfnG .navbar {
    height: 70px;
  }
  .cid-tDcgQAQfnG .navbar.opened {
    height: auto;
  }
  .cid-tDcgQAQfnG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDch355EK6 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/chat-facebook3-3.jpeg");
}
.cid-tDch355EK6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDch355EK6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDch355EK6 .mbr-text,
.cid-tDch355EK6 .mbr-section-btn {
  color: #413f3e;
}
.cid-tDch355EK6 .mbr-section-title {
  color: #ffffff;
}
.cid-tJkgU65sEG {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-tJkgU65sEG img,
.cid-tJkgU65sEG .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tJkgU65sEG .item:focus,
.cid-tJkgU65sEG span:focus {
  outline: none;
}
.cid-tJkgU65sEG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tJkgU65sEG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJkgU65sEG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tJkgU65sEG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJkgU65sEG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tJkgU65sEG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tJkgU65sEG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJkgU65sEG .mbr-section-title {
  color: #413f3e;
}
.cid-tJkgU65sEG .mbr-text,
.cid-tJkgU65sEG .mbr-section-btn {
  text-align: left;
  color: #413f3e;
}
.cid-tJkgU65sEG .item-title {
  text-align: left;
  color: #413f3e;
}
.cid-tJkgU65sEG .item-subtitle {
  text-align: left;
}
.cid-tKlsmD0nLr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-tKlsmD0nLr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKlsmD0nLr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKlsmD0nLr .mbr-text,
.cid-tKlsmD0nLr .mbr-section-btn {
  color: #232323;
}
.cid-tKlsmD0nLr .card-title,
.cid-tKlsmD0nLr .card-box {
  color: #413f3e;
}
.cid-tKlsmD0nLr .mbr-text,
.cid-tKlsmD0nLr .link-wrap {
  color: #ffffff;
}
.cid-tKlsmD0nLr .card-box .mbr-text,
.cid-tKlsmD0nLr .mbr-section-btn {
  color: #413f3e;
}
.cid-tDch8Xurv7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tDch8Xurv7 img,
.cid-tDch8Xurv7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDch8Xurv7 .item:focus,
.cid-tDch8Xurv7 span:focus {
  outline: none;
}
.cid-tDch8Xurv7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDch8Xurv7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDch8Xurv7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDch8Xurv7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDch8Xurv7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDch8Xurv7 .mbr-section-title {
  color: #413f3e;
}
.cid-tDch8Xurv7 .mbr-text,
.cid-tDch8Xurv7 .mbr-section-btn {
  text-align: left;
  color: #413f3e;
}
.cid-tDch8Xurv7 .item-title {
  text-align: center;
  color: #413f3e;
}
.cid-tDch8Xurv7 .item-subtitle {
  text-align: center;
  color: #d02313;
}
.cid-tDch8Xurv7 .mbr-section-subtitle {
  color: #413f3e;
}
.cid-tDchHR5F5E {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-tDchHR5F5E img,
.cid-tDchHR5F5E .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDchHR5F5E .item:focus,
.cid-tDchHR5F5E span:focus {
  outline: none;
}
.cid-tDchHR5F5E .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDchHR5F5E .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDchHR5F5E .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tDchHR5F5E .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDchHR5F5E .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tDchHR5F5E .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tDchHR5F5E .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDchHR5F5E .mbr-section-title {
  color: #413f3e;
}
.cid-tDchHR5F5E .mbr-text,
.cid-tDchHR5F5E .mbr-section-btn {
  text-align: left;
  color: #413f3e;
}
.cid-tDchHR5F5E .item-title {
  text-align: center;
  color: #413f3e;
}
.cid-tDchHR5F5E .item-subtitle {
  text-align: center;
}
.cid-tDchHR5F5E .mbr-section-subtitle {
  color: #413f3e;
}
.cid-tDchgp38jI {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDchgp38jI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDchgp38jI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDchgp38jI .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tDchgp38jI .container {
    max-width: 1400px;
  }
}
.cid-tDchgp38jI .card {
  margin: auto;
}
.cid-tDchgp38jI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tDchgp38jI .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDchgp38jI .row {
  justify-content: center;
}
.cid-tDchgp38jI H3 {
  color: #413f3e;
}
.cid-tDchgp38jI .card-title,
.cid-tDchgp38jI .card-box {
  color: #413f3e;
}
.cid-tDchj2uQr5 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-tDchj2uQr5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDchj2uQr5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDchj2uQr5 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDchj2uQr5 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDchj2uQr5 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #bbbbbb;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDchj2uQr5 H3 {
  color: #413f3e;
}
.cid-tDchj2uQr5 .list {
  color: #413f3e;
}
.cid-tEkMSXYoFM {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tEkMSXYoFM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEkMSXYoFM .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-tEkMSXYoFM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEkMSXYoFM .row {
  flex-direction: row-reverse;
}
.cid-tEkMSXYoFM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEkMSXYoFM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEkMSXYoFM .mbr-section-title {
  color: #413f3e;
}
.cid-tEkMSXYoFM .mbr-description {
  color: #413f3e;
}
.cid-tDchNAASF5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-tDchNAASF5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDchNAASF5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDchNAASF5 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tDchNAASF5 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tDchNAASF5 .embla__button--next,
.cid-tDchNAASF5 .embla__button--prev {
  display: flex;
}
.cid-tDchNAASF5 .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-tDchNAASF5 .embla__button {
    display: none;
  }
}
.cid-tDchNAASF5 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tDchNAASF5 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tDchNAASF5 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDchNAASF5 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tDchNAASF5 .embla__button {
    top: auto;
  }
}
.cid-tDchNAASF5 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tDchNAASF5 .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tDchNAASF5 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tDchNAASF5 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tDchNAASF5 .embla {
  position: relative;
  width: 100%;
}
.cid-tDchNAASF5 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tDchNAASF5 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tDchNAASF5 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tDchNAASF5 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tDchNAASF5 .user_text {
  color: #413f3e;
}
.cid-tDchNAASF5 .user_name {
  color: #413f3e;
}
.cid-tDchNAASF5 .user_desk {
  color: #413f3e;
}
.cid-tDchNAASF5 H3 {
  color: #413f3e;
}
.cid-tDcTwUKVw8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDcTwUKVw8 blockquote {
  border-color: #d02313;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tDcTwUKVw8 .mbr-section-title {
  color: #413f3e;
}
.cid-tDcTwUKVw8 .mbr-text {
  color: #413f3e;
}
.cid-tDci8tryHC {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
@media (min-width: 991px) {
  .cid-tDci8tryHC .container-fluid {
    padding-left: 0;
  }
}
.cid-tDci8tryHC .mbr-text,
.cid-tDci8tryHC .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tDci8tryHC .mbr-text,
  .cid-tDci8tryHC .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tDci8tryHC .mbr-text,
  .cid-tDci8tryHC .mbr-section-title {
    text-align: center;
  }
}
.cid-tDci8tryHC a.btn {
  height: 100%;
  margin: 0;
}
.cid-tDci8tryHC .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tDci8tryHC .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tDci8tryHC .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDci8tryHC .justify-content-center {
  align-items: center;
}
.cid-tDci8tryHC .mbr-section-title {
  color: #413f3e;
}
.cid-tDci8tryHC .mbr-text {
  color: #413f3e;
}
.cid-tDchUCuxQu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDchUCuxQu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDchUCuxQu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDchUCuxQu .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tDchUCuxQu .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tDchUCuxQu .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDchUCuxQu .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tDchUCuxQu .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-tDchUCuxQu .mbr-section-title {
  color: #413f3e;
}
.cid-tDchUCuxQu .card-title {
  color: #413f3e;
}
.cid-tDcVpEVfPr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-tDcVpEVfPr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDcVpEVfPr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDcVpEVfPr .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tDcVpEVfPr .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tDcVpEVfPr .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tDcVpEVfPr .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tDcVpEVfPr .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tDcVpEVfPr .bg-instagram:hover {
  background: #bd005c;
}
.cid-tDcVpEVfPr .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tDcVpEVfPr [class^="socicon-"]:before,
.cid-tDcVpEVfPr [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tDcVpEVfPr .mbr-section-title,
.cid-tDcVpEVfPr .social-list {
  color: #413f3e;
}
.cid-u5BaLNZGIX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #413f3e;
}
.cid-u5BaLNZGIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5BaLNZGIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5BaLNZGIX .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u5BaLNZGIX .row {
    text-align: center;
  }
  .cid-u5BaLNZGIX .row > div {
    margin: auto;
  }
  .cid-u5BaLNZGIX .social-row {
    justify-content: center;
  }
}
.cid-u5BaLNZGIX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u5BaLNZGIX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 0rem;
  }
}
.cid-u5BaLNZGIX .mbr-text {
  color: #bbbbbb;
}
.cid-u5BaLNZGIX .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-u5BaLNZGIX .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u5B2wxdUe5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5B2wxdUe5 nav.navbar {
  position: fixed;
}
.cid-u5B2wxdUe5 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5B2wxdUe5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5B2wxdUe5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5B2wxdUe5 .dropdown-item:hover,
.cid-u5B2wxdUe5 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u5B2wxdUe5 .dropdown-item:hover span {
  color: white;
}
.cid-u5B2wxdUe5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5B2wxdUe5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5B2wxdUe5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5B2wxdUe5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5B2wxdUe5 .nav-link {
  position: relative;
}
.cid-u5B2wxdUe5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5B2wxdUe5 .container {
    flex-wrap: nowrap;
  }
}
.cid-u5B2wxdUe5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5B2wxdUe5 .dropdown-menu,
.cid-u5B2wxdUe5 .navbar.opened {
  background: #ffffff !important;
}
.cid-u5B2wxdUe5 .nav-item:focus,
.cid-u5B2wxdUe5 .nav-link:focus {
  outline: none;
}
.cid-u5B2wxdUe5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5B2wxdUe5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5B2wxdUe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5B2wxdUe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5B2wxdUe5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5B2wxdUe5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5B2wxdUe5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u5B2wxdUe5 .navbar.opened {
  transition: all 0.3s;
}
.cid-u5B2wxdUe5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5B2wxdUe5 .navbar .navbar-logo img {
  width: auto;
}
.cid-u5B2wxdUe5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5B2wxdUe5 .navbar.collapsed {
  justify-content: center;
}
.cid-u5B2wxdUe5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5B2wxdUe5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5B2wxdUe5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u5B2wxdUe5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5B2wxdUe5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5B2wxdUe5 .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-u5B2wxdUe5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5B2wxdUe5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5B2wxdUe5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5B2wxdUe5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5B2wxdUe5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5B2wxdUe5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5B2wxdUe5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5B2wxdUe5 .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-u5B2wxdUe5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5B2wxdUe5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5B2wxdUe5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5B2wxdUe5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5B2wxdUe5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5B2wxdUe5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5B2wxdUe5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5B2wxdUe5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5B2wxdUe5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5B2wxdUe5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5B2wxdUe5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5B2wxdUe5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5B2wxdUe5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5B2wxdUe5 .dropdown-item.active,
.cid-u5B2wxdUe5 .dropdown-item:active {
  background-color: transparent;
}
.cid-u5B2wxdUe5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5B2wxdUe5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5B2wxdUe5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5B2wxdUe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5B2wxdUe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5B2wxdUe5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5B2wxdUe5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5B2wxdUe5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5B2wxdUe5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5B2wxdUe5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #d02313;
}
.cid-u5B2wxdUe5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5B2wxdUe5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5B2wxdUe5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5B2wxdUe5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5B2wxdUe5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5B2wxdUe5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5B2wxdUe5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5B2wxdUe5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5B2wxdUe5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5B2wxdUe5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5B2wxdUe5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5B2wxdUe5 .navbar {
    height: 70px;
  }
  .cid-u5B2wxdUe5 .navbar.opened {
    height: auto;
  }
  .cid-u5B2wxdUe5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5B2wxFfwW {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/community-manager-senior-freelance-3.jpg");
}
.cid-u5B2wxFfwW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5B2wxFfwW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5B2wxFfwW .mbr-text,
.cid-u5B2wxFfwW .mbr-section-btn {
  color: #413f3e;
}
.cid-u5B2wxFfwW .mbr-section-title {
  color: #ffffff;
}
.cid-uSZgjR5Xd2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #413f3e;
}
.cid-uSZgjR5Xd2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSZgjR5Xd2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSZgjR5Xd2 .mbr-section-title {
  color: #ffffff;
}
.cid-u5B2wz2ZxU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-u5B2wz2ZxU img,
.cid-u5B2wz2ZxU .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u5B2wz2ZxU .item:focus,
.cid-u5B2wz2ZxU span:focus {
  outline: none;
}
.cid-u5B2wz2ZxU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u5B2wz2ZxU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f0f0f0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u5B2wz2ZxU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u5B2wz2ZxU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u5B2wz2ZxU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u5B2wz2ZxU .mbr-section-title {
  color: #413f3e;
}
.cid-u5B2wz2ZxU .mbr-text,
.cid-u5B2wz2ZxU .mbr-section-btn {
  text-align: left;
  color: #413f3e;
}
.cid-u5B2wz2ZxU .item-title {
  text-align: center;
  color: #413f3e;
}
.cid-u5B2wz2ZxU .item-subtitle {
  text-align: center;
  color: #d02313;
}
.cid-u5B2wz2ZxU .mbr-section-subtitle {
  color: #413f3e;
}
.cid-u5B2wB0k0p {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-u5B2wB0k0p .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5B2wB0k0p .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-u5B2wB0k0p .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u5B2wB0k0p .row {
  flex-direction: row-reverse;
}
.cid-u5B2wB0k0p img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u5B2wB0k0p .text-wrapper {
    padding: 2rem;
  }
}
.cid-u5B2wB0k0p .mbr-section-title {
  color: #413f3e;
}
.cid-u5B2wB0k0p .mbr-description {
  color: #413f3e;
}
.cid-u5B2wzEMZY {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-u5B2wzEMZY img,
.cid-u5B2wzEMZY .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u5B2wzEMZY .item:focus,
.cid-u5B2wzEMZY span:focus {
  outline: none;
}
.cid-u5B2wzEMZY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u5B2wzEMZY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u5B2wzEMZY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u5B2wzEMZY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u5B2wzEMZY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u5B2wzEMZY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u5B2wzEMZY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u5B2wzEMZY .mbr-section-title {
  color: #413f3e;
}
.cid-u5B2wzEMZY .mbr-text,
.cid-u5B2wzEMZY .mbr-section-btn {
  text-align: left;
  color: #413f3e;
}
.cid-u5B2wzEMZY .item-title {
  text-align: center;
  color: #413f3e;
}
.cid-u5B2wzEMZY .item-subtitle {
  text-align: center;
}
.cid-u5B2wzEMZY .mbr-section-subtitle {
  color: #413f3e;
}
.cid-u5B2wA9WEw {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5B2wA9WEw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5B2wA9WEw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5B2wA9WEw .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-u5B2wA9WEw .container {
    max-width: 1400px;
  }
}
.cid-u5B2wA9WEw .card {
  margin: auto;
}
.cid-u5B2wA9WEw .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-u5B2wA9WEw .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u5B2wA9WEw .row {
  justify-content: center;
}
.cid-u5B2wA9WEw H3 {
  color: #413f3e;
}
.cid-u5B2wA9WEw .card-title,
.cid-u5B2wA9WEw .card-box {
  color: #413f3e;
}
.cid-uZSHSWOW0m {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uZSHSWOW0m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZSHSWOW0m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZSHSWOW0m .mbr-section-title {
  color: #413f3e;
}
.cid-u5B2wADlQc {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-u5B2wADlQc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5B2wADlQc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5B2wADlQc ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-u5B2wADlQc li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-u5B2wADlQc ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #bbbbbb;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-u5B2wADlQc H3 {
  color: #413f3e;
}
.cid-u5B2wADlQc .list {
  color: #413f3e;
}
.cid-u5B2wBrqoo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-u5B2wBrqoo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5B2wBrqoo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5B2wBrqoo .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-u5B2wBrqoo .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u5B2wBrqoo .embla__button--next,
.cid-u5B2wBrqoo .embla__button--prev {
  display: flex;
}
.cid-u5B2wBrqoo .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-u5B2wBrqoo .embla__button {
    display: none;
  }
}
.cid-u5B2wBrqoo .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u5B2wBrqoo .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-u5B2wBrqoo .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5B2wBrqoo .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-u5B2wBrqoo .embla__button {
    top: auto;
  }
}
.cid-u5B2wBrqoo .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-u5B2wBrqoo .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-u5B2wBrqoo .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-u5B2wBrqoo .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-u5B2wBrqoo .embla {
  position: relative;
  width: 100%;
}
.cid-u5B2wBrqoo .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u5B2wBrqoo .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u5B2wBrqoo .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u5B2wBrqoo .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u5B2wBrqoo .user_text {
  color: #413f3e;
}
.cid-u5B2wBrqoo .user_name {
  color: #413f3e;
}
.cid-u5B2wBrqoo .user_desk {
  color: #413f3e;
}
.cid-u5B2wBrqoo H3 {
  color: #413f3e;
}
.cid-u5B2wCuwKr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5B2wCuwKr blockquote {
  border-color: #d02313;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-u5B2wCuwKr .mbr-section-title {
  color: #413f3e;
}
.cid-u5B2wCuwKr .mbr-text {
  color: #413f3e;
}
.cid-u5B2wD84U2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u5B2wD84U2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5B2wD84U2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5B2wD84U2 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-u5B2wD84U2 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u5B2wD84U2 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u5B2wD84U2 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-u5B2wD84U2 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-u5B2wD84U2 .mbr-section-title {
  color: #413f3e;
}
.cid-u5B2wD84U2 .card-title {
  color: #413f3e;
}
.cid-u5B2wDJYZE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-u5B2wDJYZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5B2wDJYZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5B2wDJYZE .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u5B2wDJYZE .bg-facebook:hover {
  background: #0b60cb;
}
.cid-u5B2wDJYZE .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u5B2wDJYZE .bg-twitter:hover {
  background: #0c85d0;
}
.cid-u5B2wDJYZE .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-u5B2wDJYZE .bg-instagram:hover {
  background: #bd005c;
}
.cid-u5B2wDJYZE .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-u5B2wDJYZE .bg-tiktok:hover {
  background: #000000;
}
.cid-u5B2wDJYZE .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-u5B2wDJYZE [class^="socicon-"]:before,
.cid-u5B2wDJYZE [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-u5B2wDJYZE .mbr-section-title,
.cid-u5B2wDJYZE .social-list {
  color: #413f3e;
}
.cid-uZSHHxoBmr {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uZSHHxoBmr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZSHHxoBmr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZSHHxoBmr .mbr-section-title {
  color: #413f3e;
}
.cid-u5BaLNZGIX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #413f3e;
}
.cid-u5BaLNZGIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5BaLNZGIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5BaLNZGIX .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u5BaLNZGIX .row {
    text-align: center;
  }
  .cid-u5BaLNZGIX .row > div {
    margin: auto;
  }
  .cid-u5BaLNZGIX .social-row {
    justify-content: center;
  }
}
.cid-u5BaLNZGIX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u5BaLNZGIX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u5BaLNZGIX .list {
    margin-bottom: 0rem;
  }
}
.cid-u5BaLNZGIX .mbr-text {
  color: #bbbbbb;
}
.cid-u5BaLNZGIX .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-u5BaLNZGIX .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u5BaLNZGIX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uoJOUMYI63 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uoJOUMYI63 nav.navbar {
  position: fixed;
}
.cid-uoJOUMYI63 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uoJOUMYI63 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uoJOUMYI63 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uoJOUMYI63 .dropdown-item:hover,
.cid-uoJOUMYI63 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uoJOUMYI63 .dropdown-item:hover span {
  color: white;
}
.cid-uoJOUMYI63 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uoJOUMYI63 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uoJOUMYI63 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uoJOUMYI63 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uoJOUMYI63 .nav-link {
  position: relative;
}
.cid-uoJOUMYI63 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uoJOUMYI63 .container {
    flex-wrap: nowrap;
  }
}
.cid-uoJOUMYI63 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uoJOUMYI63 .dropdown-menu,
.cid-uoJOUMYI63 .navbar.opened {
  background: #ffffff !important;
}
.cid-uoJOUMYI63 .nav-item:focus,
.cid-uoJOUMYI63 .nav-link:focus {
  outline: none;
}
.cid-uoJOUMYI63 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uoJOUMYI63 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uoJOUMYI63 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uoJOUMYI63 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uoJOUMYI63 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uoJOUMYI63 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uoJOUMYI63 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uoJOUMYI63 .navbar.opened {
  transition: all 0.3s;
}
.cid-uoJOUMYI63 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uoJOUMYI63 .navbar .navbar-logo img {
  width: auto;
}
.cid-uoJOUMYI63 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uoJOUMYI63 .navbar.collapsed {
  justify-content: center;
}
.cid-uoJOUMYI63 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uoJOUMYI63 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uoJOUMYI63 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uoJOUMYI63 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uoJOUMYI63 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uoJOUMYI63 .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-uoJOUMYI63 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uoJOUMYI63 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uoJOUMYI63 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uoJOUMYI63 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uoJOUMYI63 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uoJOUMYI63 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uoJOUMYI63 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uoJOUMYI63 .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-uoJOUMYI63 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uoJOUMYI63 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uoJOUMYI63 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uoJOUMYI63 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uoJOUMYI63 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uoJOUMYI63 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uoJOUMYI63 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uoJOUMYI63 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uoJOUMYI63 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uoJOUMYI63 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uoJOUMYI63 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uoJOUMYI63 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uoJOUMYI63 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uoJOUMYI63 .dropdown-item.active,
.cid-uoJOUMYI63 .dropdown-item:active {
  background-color: transparent;
}
.cid-uoJOUMYI63 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uoJOUMYI63 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uoJOUMYI63 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uoJOUMYI63 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uoJOUMYI63 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uoJOUMYI63 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uoJOUMYI63 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uoJOUMYI63 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uoJOUMYI63 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uoJOUMYI63 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #d02313;
}
.cid-uoJOUMYI63 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uoJOUMYI63 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uoJOUMYI63 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uoJOUMYI63 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uoJOUMYI63 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uoJOUMYI63 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uoJOUMYI63 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uoJOUMYI63 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uoJOUMYI63 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uoJOUMYI63 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uoJOUMYI63 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uoJOUMYI63 .navbar {
    height: 70px;
  }
  .cid-uoJOUMYI63 .navbar.opened {
    height: auto;
  }
  .cid-uoJOUMYI63 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uoJOUNmIfv {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr.jpg");
}
.cid-uoJOUNmIfv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoJOUNmIfv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoJOUNmIfv .mbr-text,
.cid-uoJOUNmIfv .mbr-section-btn {
  color: #413f3e;
}
.cid-uoJOUNmIfv .mbr-section-title {
  color: #ffffff;
}
.cid-uoJOUNGZXT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uoJOUNGZXT .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uoJOUNY8fw {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uoJOUNY8fw .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uoJOUNY8fw .mbr-text {
  text-align: left;
}
.cid-uoJOUOfUD0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uoJOUOfUD0 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uoJOUOwPvs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uoJOUOwPvs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoJOUOwPvs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoJOUOS3bi {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffe161;
}
@media (min-width: 991px) {
  .cid-uoJOUOS3bi .container-fluid {
    padding-left: 0;
  }
}
.cid-uoJOUOS3bi .mbr-text,
.cid-uoJOUOS3bi .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-uoJOUOS3bi .mbr-text,
  .cid-uoJOUOS3bi .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uoJOUOS3bi .mbr-text,
  .cid-uoJOUOS3bi .mbr-section-title {
    text-align: center;
  }
}
.cid-uoJOUOS3bi a.btn {
  height: 100%;
  margin: 0;
}
.cid-uoJOUOS3bi .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-uoJOUOS3bi .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uoJOUOS3bi .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoJOUOS3bi .justify-content-center {
  align-items: center;
}
.cid-uoJOUOS3bi .mbr-section-title {
  color: #413f3e;
}
.cid-uoJOUOS3bi .mbr-text {
  color: #413f3e;
}
.cid-uoJOUPefup {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uoJOUPefup .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoJOUPefup .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoJOUPefup .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uoJOUPefup .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uoJOUPefup .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uoJOUPefup .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uoJOUPefup .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-uoJOUPefup .mbr-section-title {
  color: #413f3e;
}
.cid-uoJOUPefup .card-title {
  color: #413f3e;
}
.cid-uoJOUPG7EO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bed3f9;
}
.cid-uoJOUPG7EO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoJOUPG7EO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoJOUPG7EO .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uoJOUPG7EO .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uoJOUPG7EO .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uoJOUPG7EO .bg-twitter:hover {
  background: #0c85d0;
}
.cid-uoJOUPG7EO .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-uoJOUPG7EO .bg-instagram:hover {
  background: #bd005c;
}
.cid-uoJOUPG7EO .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-uoJOUPG7EO [class^="socicon-"]:before,
.cid-uoJOUPG7EO [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uoJOUPG7EO .mbr-section-title,
.cid-uoJOUPG7EO .social-list {
  color: #413f3e;
}
.cid-uoJOUQb5Sn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #413f3e;
}
.cid-uoJOUQb5Sn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoJOUQb5Sn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoJOUQb5Sn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uoJOUQb5Sn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uoJOUQb5Sn .row {
    text-align: center;
  }
  .cid-uoJOUQb5Sn .row > div {
    margin: auto;
  }
  .cid-uoJOUQb5Sn .social-row {
    justify-content: center;
  }
}
.cid-uoJOUQb5Sn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uoJOUQb5Sn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uoJOUQb5Sn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uoJOUQb5Sn .list {
    margin-bottom: 0rem;
  }
}
.cid-uoJOUQb5Sn .mbr-text {
  color: #bbbbbb;
}
.cid-uoJOUQb5Sn .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-uoJOUQb5Sn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uoJOUQb5Sn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-utxXmqtZEq {
  background-image: url("../../../assets/images/dalle-2024-01-03-10.43.17-a-thoughtful-and-inspired-community-manager-in-the-midst-of-brainstorming-the-best-possible-social-media-post.-the-scene-is-set-in-a.jpg");
}
.cid-utxXmqtZEq .mbr-fallback-image.disabled {
  display: none;
}
.cid-utxXmqtZEq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utxXmqtZEq .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-utxXmqtZEq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-utxXmqtZEq .mbr-text,
.cid-utxXmqtZEq .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uuunR7VCy9 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uuunR7VCy9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuunR7VCy9 .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-uuunR7VCy9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuunR7VCy9 .row {
  flex-direction: row-reverse;
}
.cid-uuunR7VCy9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuunR7VCy9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuunR7VCy9 .mbr-section-title {
  color: #413f3e;
}
.cid-uuunR7VCy9 .mbr-description {
  color: #413f3e;
}
.cid-uty1RFzuCR {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uty1RFzuCR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uty1RFzuCR .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-uty1RFzuCR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uty1RFzuCR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uty1RFzuCR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uty1RFzuCR .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uty1RFzuCR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uty1RFzuCR .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uty1RFzuCR .price {
  color: #413f3e;
}
.cid-uty1RFzuCR .card-title {
  color: #413f3e;
}
.cid-uvdIM4RAZ2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-uvdIM4RAZ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvdIM4RAZ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvdIM4RAZ2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uvdIM4RAZ2 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uvdIM4RAZ2 .embla__button--next,
.cid-uvdIM4RAZ2 .embla__button--prev {
  display: flex;
}
.cid-uvdIM4RAZ2 .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-uvdIM4RAZ2 .embla__button {
    display: none;
  }
}
.cid-uvdIM4RAZ2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uvdIM4RAZ2 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uvdIM4RAZ2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uvdIM4RAZ2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uvdIM4RAZ2 .embla__button {
    top: auto;
  }
}
.cid-uvdIM4RAZ2 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uvdIM4RAZ2 .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uvdIM4RAZ2 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uvdIM4RAZ2 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uvdIM4RAZ2 .embla {
  position: relative;
  width: 100%;
}
.cid-uvdIM4RAZ2 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uvdIM4RAZ2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uvdIM4RAZ2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uvdIM4RAZ2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uvdIM4RAZ2 .user_text {
  color: #413f3e;
}
.cid-uvdIM4RAZ2 .user_name {
  color: #413f3e;
}
.cid-uvdIM4RAZ2 .user_desk {
  color: #413f3e;
}
.cid-uvdIM4RAZ2 H3 {
  color: #413f3e;
}
.cid-uvdHppgJ2K {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uvdHppgJ2K .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uvdHppgJ2K form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uvdHppgJ2K form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uvdHppgJ2K form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uty4C3FkPA {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uty4C3FkPA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uty4C3FkPA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uty4C3FkPA .mbr-section-title {
  color: #413f3e;
}
.cid-uuuskyLfB6 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-uuuskyLfB6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuuskyLfB6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuuskyLfB6 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uuuskyLfB6 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uuuskyLfB6 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #bbbbbb;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uuuskyLfB6 H3 {
  color: #413f3e;
}
.cid-uuuskyLfB6 .list {
  color: #413f3e;
}
.cid-uuusVN5oIj {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uuusVN5oIj blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uuusVN5oIj .mbr-section-title {
  text-align: center;
}
.cid-uvfSEENzV7 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uvfSEENzV7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uvfSEENzV7 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uvfSEENzV7 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uvfSEENzV7 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uvfSItQfBW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvfSItQfBW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfSItQfBW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfSItQfBW .mbr-section-title {
  color: #413f3e;
}
.cid-uR1Th7XzZM {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/community-manager-senior-freelance-3.jpg");
}
.cid-uR1Th7XzZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1Th7XzZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1Th7XzZM .mbr-text,
.cid-uR1Th7XzZM .mbr-section-btn {
  color: #ffffff;
}
.cid-uR1Th7XzZM .mbr-section-title {
  color: #ffffff;
}
.cid-uR1Th7XzZM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uR1T3dut7E {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uR1T3dut7E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1T3dut7E .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-uR1T3dut7E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uR1T3dut7E .row {
  flex-direction: row-reverse;
}
.cid-uR1T3dut7E img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uR1T3dut7E .text-wrapper {
    padding: 2rem;
  }
}
.cid-uR1T3dut7E .mbr-section-title {
  color: #413f3e;
}
.cid-uR1T3dut7E .mbr-description {
  color: #413f3e;
}
.cid-uR1XzUt8rg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR1XzUt8rg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1XzUt8rg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1T3dHSOr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uR1T3dHSOr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1T3dHSOr .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-uR1T3dHSOr .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uR1T3dHSOr .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR1T3dHSOr .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uR1T3dHSOr .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uR1T3dHSOr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR1T3dHSOr .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uR1T3dHSOr .price {
  color: #413f3e;
}
.cid-uR1T3dHSOr .card-title {
  color: #413f3e;
}
.cid-uR1T3dZnt6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-uR1T3dZnt6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1T3dZnt6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1T3dZnt6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uR1T3dZnt6 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uR1T3dZnt6 .embla__button--next,
.cid-uR1T3dZnt6 .embla__button--prev {
  display: flex;
}
.cid-uR1T3dZnt6 .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-uR1T3dZnt6 .embla__button {
    display: none;
  }
}
.cid-uR1T3dZnt6 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uR1T3dZnt6 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uR1T3dZnt6 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR1T3dZnt6 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uR1T3dZnt6 .embla__button {
    top: auto;
  }
}
.cid-uR1T3dZnt6 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uR1T3dZnt6 .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uR1T3dZnt6 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uR1T3dZnt6 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uR1T3dZnt6 .embla {
  position: relative;
  width: 100%;
}
.cid-uR1T3dZnt6 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uR1T3dZnt6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uR1T3dZnt6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uR1T3dZnt6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uR1T3dZnt6 .user_text {
  color: #413f3e;
}
.cid-uR1T3dZnt6 .user_name {
  color: #413f3e;
}
.cid-uR1T3dZnt6 .user_desk {
  color: #413f3e;
}
.cid-uR1T3dZnt6 H3 {
  color: #413f3e;
}
.cid-uR1T3evjkG {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uR1T3evjkG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uR1T3evjkG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uR1T3evjkG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uR1T3evjkG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uR1T3eIkHi {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR1T3eIkHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1T3eIkHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1T3eIkHi .mbr-section-title {
  color: #413f3e;
}
.cid-uR1T3eUoTn {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-uR1T3eUoTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1T3eUoTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1T3eUoTn ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uR1T3eUoTn li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uR1T3eUoTn ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #bbbbbb;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uR1T3eUoTn H3 {
  color: #413f3e;
}
.cid-uR1T3eUoTn .list {
  color: #413f3e;
}
.cid-uR1T3f8P8H {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR1T3f8P8H blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uR1T3f8P8H .mbr-section-title {
  text-align: center;
}
.cid-uR1T3fi8Bb {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uR1T3fi8Bb .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uR1T3fi8Bb form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uR1T3fi8Bb form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uR1T3fi8Bb form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uR1T3fvGh1 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR1T3fvGh1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1T3fvGh1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1T3fvGh1 .mbr-section-title {
  color: #413f3e;
}
.cid-uXBYcYdE5E {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/community-manager-senior-freelance-3.jpg");
}
.cid-uXBYcYdE5E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBYcYdE5E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXBYcYdE5E .mbr-text,
.cid-uXBYcYdE5E .mbr-section-btn {
  color: #ffffff;
}
.cid-uXBYcYdE5E .mbr-section-title {
  color: #ffffff;
}
.cid-uXBYcYdE5E .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXBYcYREhv {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uXBYcYREhv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBYcYREhv .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-uXBYcYREhv .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uXBYcYREhv .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uXBYcYREhv .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uXBYcYREhv .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uXBYcYREhv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uXBYcYREhv .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uXBYcYREhv .price {
  color: #413f3e;
}
.cid-uXBYcYREhv .card-title {
  color: #413f3e;
}
.cid-uXBYcYqCfG {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uXBYcYqCfG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBYcYqCfG .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-uXBYcYqCfG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uXBYcYqCfG .row {
  flex-direction: row-reverse;
}
.cid-uXBYcYqCfG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uXBYcYqCfG .text-wrapper {
    padding: 2rem;
  }
}
.cid-uXBYcYqCfG .mbr-section-title {
  color: #413f3e;
}
.cid-uXBYcYqCfG .mbr-description {
  color: #413f3e;
}
.cid-uXBYcZalo6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f0f0f0;
}
.cid-uXBYcZalo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBYcZalo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXBYcZalo6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uXBYcZalo6 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uXBYcZalo6 .embla__button--next,
.cid-uXBYcZalo6 .embla__button--prev {
  display: flex;
}
.cid-uXBYcZalo6 .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-uXBYcZalo6 .embla__button {
    display: none;
  }
}
.cid-uXBYcZalo6 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uXBYcZalo6 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uXBYcZalo6 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXBYcZalo6 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uXBYcZalo6 .embla__button {
    top: auto;
  }
}
.cid-uXBYcZalo6 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uXBYcZalo6 .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uXBYcZalo6 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uXBYcZalo6 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uXBYcZalo6 .embla {
  position: relative;
  width: 100%;
}
.cid-uXBYcZalo6 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uXBYcZalo6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uXBYcZalo6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uXBYcZalo6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uXBYcZalo6 .user_text {
  color: #413f3e;
}
.cid-uXBYcZalo6 .user_name {
  color: #413f3e;
}
.cid-uXBYcZalo6 .user_desk {
  color: #413f3e;
}
.cid-uXBYcZalo6 H3 {
  color: #413f3e;
}
.cid-uXBYcZQiiR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uXBYcZQiiR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBYcZQiiR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXBYcZQiiR .mbr-section-title {
  color: #413f3e;
}
.cid-uXBYd02RWk {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-uXBYd02RWk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBYd02RWk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXBYd02RWk ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uXBYd02RWk li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uXBYd02RWk ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #bbbbbb;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uXBYd02RWk H3 {
  color: #413f3e;
}
.cid-uXBYd02RWk .list {
  color: #413f3e;
}
.cid-uXBYd0fS7X {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uXBYd0fS7X blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uXBYd0fS7X .mbr-section-title {
  text-align: center;
}
.cid-uZAJZLmTnG {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uZAJZLmTnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZAJZLmTnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZAJZLmTnG .mbr-section-title {
  color: #413f3e;
}
