body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Kannada MN';
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3rem;
}
.display-2 {
  font-family: 'Kannada MN';
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.92rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.68rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #747b4c !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: #747b4c !important;
  border-color: #747b4c !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: #41452b !important;
  border-color: #41452b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #41452b !important;
  border-color: #41452b !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: #747b4c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #41452b !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: #747b4c !important;
  border-color: #747b4c !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: #747b4c !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: #393c25 !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: #747b4c;
}
.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: #747b4c;
  border-color: #747b4c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #747b4c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b2b98e;
}
.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: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #747b4c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #747b4c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #747b4c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #747b4c;
}
.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: #747b4c;
  border-bottom-color: #747b4c;
}
.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: #747b4c !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='%23747b4c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKnM2WdD4f {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tKnM2WdD4f .mbr-text {
  text-align: center;
  color: #000000;
}
#custom-html-v {
  /* Type valid CSS here */
}
#custom-html-v div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-v p {
  font-size: 60px;
  color: #777;
}
#custom-html-5x {
  /* Type valid CSS here */
}
#custom-html-5x div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-5x p {
  font-size: 60px;
  color: #777;
}
.cid-sMoL8R5BDH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoL8R5BDH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoL8R5BDH .row {
  flex-direction: row-reverse;
}
.cid-sMoL8R5BDH img {
  width: 100%;
}
.cid-tKnLzfsO8x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tKnLzfsO8x .line {
  background-color: #747b4c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v2Qal0bFsP {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qal0bFsP .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qal0bFsP .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qal0bFsP .col + .mbr-section-btn .btn,
.cid-v2Qal0bFsP .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qal0bFsP .col + .mbr-section-btn .btn,
  .cid-v2Qal0bFsP .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qal0bFsP .dragArea > *:nth-last-child(2).col,
  .cid-v2Qal0bFsP .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qal0bFsP .col + .mbr-section-btn,
  .cid-v2Qal0bFsP .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qal0bFsP .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qal0bFsP .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qal0bFsP .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qal0bFsP .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qal0bFsP .form-group {
  max-width: 220px;
}
.cid-v2Qal0bFsP .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qal0bFsP .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qal0bFsP .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qal0bFsP .mbr-text {
  color: #444;
}
.cid-v2Qal0bFsP h5 {
  margin-bottom: 0;
}
.cid-v2Qal0bFsP .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qal0bFsP .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qal0bFsP .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qal0bFsP .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qal0bFsP .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qal0bFsP .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qal0bFsP .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qal0bFsP .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qal0bFsP .media-container-row > div {
  padding: 0px;
}
.cid-v2Qal0bFsP .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qal0bFsP .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qal0bFsP .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qal0bFsP .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qal0bFsP .social-list,
  .cid-v2Qal0bFsP .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qal0bFsP h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qal0bFsP .form-group {
    max-width: 180px;
  }
}
.cid-v2Qal0bFsP .links span {
  color: #9e9e9e;
}
.cid-v2Qal0bFsP .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qal0bFsP .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubmrq6UMuq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ubmrq6UMuq .card-wrapper {
  overflow: hidden;
  height: 100%;
  padding: 0;
  display: flex;
}
.cid-ubmrq6UMuq .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ubmrq6UMuq p {
  line-height: 1.5;
}
.cid-ubmrq6UMuq .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #747b4c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-ubmrq6UMuq .mail,
.cid-ubmrq6UMuq .phone,
.cid-ubmrq6UMuq .mbr-iconfont {
  display: inline-block;
}
.cid-ubmrq6UMuq .card-title {
  color: #149dcc;
  margin: 0;
}
.cid-ubmrq6UMuq .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  width: 30%;
  margin: auto;
}
.cid-ubmrq6UMuq .card-box {
  padding-left: 1rem;
  width: 70%;
  margin: auto 0;
}
.cid-ubmrq6UMuq .mbr-section-title,
.cid-ubmrq6UMuq .line-wrap {
  text-align: center;
}
.cid-ubmrq6UMuq .mail {
  color: #747b4c;
}
.cid-ubmrq6UMuq .card-title {
  color: #747b4c;
}
.cid-uDgR5bvzjC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uDgR5bvzjC .card-wrapper {
  overflow: hidden;
  height: 100%;
  padding: 0;
  display: flex;
}
.cid-uDgR5bvzjC .mail,
.cid-uDgR5bvzjC .phone,
.cid-uDgR5bvzjC .mbr-iconfont {
  display: inline-block;
}
.cid-uDgR5bvzjC .card-title {
  color: #149dcc;
  margin: 0;
}
.cid-uDgR5bvzjC .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  width: 30%;
  margin: auto;
}
.cid-uDgR5bvzjC .card-box {
  padding-left: 1rem;
  width: 70%;
  margin: auto 0;
}
.cid-uDgR5bvzjC .mbr-section-title,
.cid-uDgR5bvzjC .line-wrap {
  text-align: center;
}
.cid-uDgR5bvzjC .mail {
  color: #0087ab;
}
.cid-uDgR5bvzjC .card-title {
  color: #747b4c;
}
.cid-uDgT3FEbqP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uDgT3FEbqP .card-wrapper {
  overflow: hidden;
  height: 100%;
  padding: 0;
  display: flex;
}
.cid-uDgT3FEbqP .mail,
.cid-uDgT3FEbqP .phone,
.cid-uDgT3FEbqP .mbr-iconfont {
  display: inline-block;
}
.cid-uDgT3FEbqP .card-title {
  color: #149dcc;
  margin: 0;
}
.cid-uDgT3FEbqP .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  width: 30%;
  margin: auto;
}
.cid-uDgT3FEbqP .card-box {
  padding-left: 1rem;
  width: 70%;
  margin: auto 0;
}
.cid-uDgT3FEbqP .mbr-section-title,
.cid-uDgT3FEbqP .line-wrap {
  text-align: center;
}
.cid-uDgT3FEbqP .mail {
  color: #0087ab;
}
.cid-uDgT3FEbqP .card-title {
  color: #747b4c;
}
.cid-uLGm734IWH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uLGm734IWH .card-wrapper {
  overflow: hidden;
  height: 100%;
  padding: 0;
  display: flex;
}
.cid-uLGm734IWH .mail,
.cid-uLGm734IWH .phone,
.cid-uLGm734IWH .mbr-iconfont {
  display: inline-block;
}
.cid-uLGm734IWH .card-title {
  color: #149dcc;
  margin: 0;
}
.cid-uLGm734IWH .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  width: 30%;
  margin: auto;
}
.cid-uLGm734IWH .card-box {
  padding-left: 1rem;
  width: 70%;
  margin: auto 0;
}
.cid-uLGm734IWH .mbr-section-title,
.cid-uLGm734IWH .line-wrap {
  text-align: center;
}
.cid-uLGm734IWH .mail {
  color: #0087ab;
}
.cid-uLGm734IWH .card-title {
  color: #747b4c;
}
.cid-sYR3ojB0hX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sYR3ojB0hX .card-wrapper {
  overflow: hidden;
  height: 100%;
  padding: 0;
  display: flex;
}
.cid-sYR3ojB0hX .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sYR3ojB0hX .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #747b4c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sYR3ojB0hX .mail,
.cid-sYR3ojB0hX .phone,
.cid-sYR3ojB0hX .mbr-iconfont {
  display: inline-block;
}
.cid-sYR3ojB0hX .card-title {
  color: #149dcc;
  margin: 0;
}
.cid-sYR3ojB0hX .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  width: 30%;
  margin: auto;
}
.cid-sYR3ojB0hX .card-box {
  padding-left: 1rem;
  width: 70%;
  margin: auto 0;
}
.cid-sYR3ojB0hX .mbr-section-title,
.cid-sYR3ojB0hX .line-wrap {
  text-align: center;
}
.cid-sYR3ojB0hX .mail {
  color: #0087ab;
}
.cid-sYR3ojB0hX .card-title {
  color: #747b4c;
}
.cid-tvnqMJaklT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnqMJaklT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnqMJaklT .row {
  flex-direction: row-reverse;
}
.cid-tvnqMJaklT img {
  width: 100%;
}
.cid-uDgOdLVNB2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDgOdLVNB2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDgOdLVNB2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDgXaSVBLc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uDgXaSVBLc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDgXaSVBLc .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-uDgXaSVBLc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDgXaSVBLc .row {
  flex-direction: row-reverse;
}
.cid-uDgXaSVBLc img {
  width: 100%;
}
.cid-sJ6yOXXPDU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJ6yOXXPDU .mbr-text {
  color: #767676;
}
.cid-sJ6yOXXPDU .card-subtitle {
  margin: 0;
}
.cid-sJ6yOXXPDU .link {
  margin: 0;
}
.cid-sJ6yOXXPDU .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sJ6yOXXPDU .icon-box {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.173);
}
.cid-sJ6yOXXPDU .item {
  display: inline-flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-sJ6yOXXPDU .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-sJ6yOXXPDU .date {
  margin: 0;
}
.cid-sJ6yOXXPDU img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-sJ6yOXXPDU .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-sJ6yOXXPDU .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sJ6yOXXPDU .card-img:hover:before {
  opacity: 0.4;
}
.cid-sJ6yOXXPDU .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-sJ6yOXXPDU .icon-box {
    flex-direction: column;
  }
  .cid-sJ6yOXXPDU .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-sJ6yOXXPDU .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sJ6yOXXPDU .card {
    margin-bottom: 3rem;
  }
}
.cid-sJ6yOXXPDU .mbr-text,
.cid-sJ6yOXXPDU .link {
  color: #353535;
}
#custom-html-6b {
  /* Type valid CSS here */
}
#custom-html-6b div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-6b p {
  font-size: 60px;
  color: #777;
}
.cid-uco0niGqg1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uco0niGqg1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uco0niGqg1 .row {
  flex-direction: row-reverse;
}
.cid-uco0niGqg1 img {
  width: 100%;
}
.cid-v2QpxpeVAH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QpxpeVAH .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QpxpeVAH .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QpxpeVAH .col + .mbr-section-btn .btn,
.cid-v2QpxpeVAH .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QpxpeVAH .col + .mbr-section-btn .btn,
  .cid-v2QpxpeVAH .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QpxpeVAH .dragArea > *:nth-last-child(2).col,
  .cid-v2QpxpeVAH .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QpxpeVAH .col + .mbr-section-btn,
  .cid-v2QpxpeVAH .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QpxpeVAH .dragArea {
    flex-direction: column;
  }
}
.cid-v2QpxpeVAH .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QpxpeVAH .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QpxpeVAH .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QpxpeVAH .form-group {
  max-width: 220px;
}
.cid-v2QpxpeVAH .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QpxpeVAH .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QpxpeVAH .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QpxpeVAH .mbr-text {
  color: #444;
}
.cid-v2QpxpeVAH h5 {
  margin-bottom: 0;
}
.cid-v2QpxpeVAH .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QpxpeVAH .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QpxpeVAH .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QpxpeVAH .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QpxpeVAH .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QpxpeVAH .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QpxpeVAH .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QpxpeVAH .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QpxpeVAH .media-container-row > div {
  padding: 0px;
}
.cid-v2QpxpeVAH .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QpxpeVAH .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QpxpeVAH .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QpxpeVAH .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QpxpeVAH .social-list,
  .cid-v2QpxpeVAH .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QpxpeVAH h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QpxpeVAH .form-group {
    max-width: 180px;
  }
}
.cid-v2QpxpeVAH .links span {
  color: #9e9e9e;
}
.cid-v2QpxpeVAH .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QpxpeVAH .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJ19FJ2UJH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sJ19FJ2UJH .mbr-section-title {
  color: #747b4c;
}
.cid-sJ19FJ2UJH .mbr-section-subtitle {
  text-align: left;
}
.cid-uaiW7bzrv3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaiW7bzrv3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uaiW7bzrv3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uaiW7bzrv3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uaiX76lbCj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uaiX76lbCj .mbr-text {
  margin: 0;
}
.cid-uaiX76lbCj .text-element {
  padding: 2rem;
  background-color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-uaiX76lbCj .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uaiX76lbCj .row-element,
.cid-uaiX76lbCj .image-element {
  padding: 0;
}
.cid-uaiX76lbCj .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uaiX76lbCj .image-element .img-wrap {
  width: 100% !important;
}
.cid-uaiX76lbCj .image-element .img-wrap img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uaiX76lbCj .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uaiX76lbCj .carousel-item.active,
.cid-uaiX76lbCj .carousel-item-next,
.cid-uaiX76lbCj .carousel-item-prev {
  display: flex;
}
.cid-uaiX76lbCj .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
  left: -50% !important;
}
.cid-uaiX76lbCj .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #747b4c;
}
.cid-uaiX76lbCj .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-uaiX76lbCj .carousel-indicators li:hover {
  opacity: 1;
}
.cid-uaiX76lbCj .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-uaiX76lbCj .carousel-controls {
    display: block;
  }
  .cid-uaiX76lbCj .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-uaiX76lbCj .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-uaiX76lbCj .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-uaiX76lbCj .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-uaiX76lbCj .text-element {
    padding: 1rem;
  }
  .cid-uaiX76lbCj .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uaiX76lbCj .image-element {
    min-width: 50%;
  }
  .cid-uaiX76lbCj .media-container-row {
    width: 100%;
  }
}
.cid-uaiX76lbCj DIV {
  color: #747b4c;
}
.cid-sJ1cxsUBME {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaiZWZ0hKL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sMoODYYPu7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoODYYPu7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoODYYPu7 .row {
  flex-direction: row-reverse;
}
.cid-sMoODYYPu7 img {
  width: 100%;
}
#custom-html-6c {
  /* Type valid CSS here */
}
#custom-html-6c div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-6c p {
  font-size: 60px;
  color: #777;
}
.cid-v2QpCbp16D {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QpCbp16D .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QpCbp16D .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QpCbp16D .col + .mbr-section-btn .btn,
.cid-v2QpCbp16D .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QpCbp16D .col + .mbr-section-btn .btn,
  .cid-v2QpCbp16D .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QpCbp16D .dragArea > *:nth-last-child(2).col,
  .cid-v2QpCbp16D .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QpCbp16D .col + .mbr-section-btn,
  .cid-v2QpCbp16D .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QpCbp16D .dragArea {
    flex-direction: column;
  }
}
.cid-v2QpCbp16D .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QpCbp16D .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QpCbp16D .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QpCbp16D .form-group {
  max-width: 220px;
}
.cid-v2QpCbp16D .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QpCbp16D .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QpCbp16D .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QpCbp16D .mbr-text {
  color: #444;
}
.cid-v2QpCbp16D h5 {
  margin-bottom: 0;
}
.cid-v2QpCbp16D .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QpCbp16D .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QpCbp16D .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QpCbp16D .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QpCbp16D .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QpCbp16D .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QpCbp16D .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QpCbp16D .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QpCbp16D .media-container-row > div {
  padding: 0px;
}
.cid-v2QpCbp16D .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QpCbp16D .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QpCbp16D .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QpCbp16D .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QpCbp16D .social-list,
  .cid-v2QpCbp16D .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QpCbp16D h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QpCbp16D .form-group {
    max-width: 180px;
  }
}
.cid-v2QpCbp16D .links span {
  color: #9e9e9e;
}
.cid-v2QpCbp16D .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QpCbp16D .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvLvprYYP8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2Qpo1YPzE {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qpo1YPzE .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qpo1YPzE .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qpo1YPzE .col + .mbr-section-btn .btn,
.cid-v2Qpo1YPzE .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qpo1YPzE .col + .mbr-section-btn .btn,
  .cid-v2Qpo1YPzE .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qpo1YPzE .dragArea > *:nth-last-child(2).col,
  .cid-v2Qpo1YPzE .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qpo1YPzE .col + .mbr-section-btn,
  .cid-v2Qpo1YPzE .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qpo1YPzE .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qpo1YPzE .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qpo1YPzE .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qpo1YPzE .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qpo1YPzE .form-group {
  max-width: 220px;
}
.cid-v2Qpo1YPzE .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qpo1YPzE .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qpo1YPzE .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qpo1YPzE .mbr-text {
  color: #444;
}
.cid-v2Qpo1YPzE h5 {
  margin-bottom: 0;
}
.cid-v2Qpo1YPzE .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qpo1YPzE .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qpo1YPzE .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qpo1YPzE .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qpo1YPzE .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qpo1YPzE .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qpo1YPzE .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qpo1YPzE .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qpo1YPzE .media-container-row > div {
  padding: 0px;
}
.cid-v2Qpo1YPzE .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qpo1YPzE .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qpo1YPzE .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qpo1YPzE .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qpo1YPzE .social-list,
  .cid-v2Qpo1YPzE .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qpo1YPzE h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qpo1YPzE .form-group {
    max-width: 180px;
  }
}
.cid-v2Qpo1YPzE .links span {
  color: #9e9e9e;
}
.cid-v2Qpo1YPzE .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qpo1YPzE .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMolDkhggz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sMolDkhggz .mbr-section-title {
  color: #747b4c;
}
.cid-sMiFjaTAzy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sMiFjaTAzy .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sMiFjaTAzy .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sMiFjaTAzy .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sMiFjaTAzy .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sMiFjaTAzy .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMiFjaTAzy .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sMiFjaTAzy .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sMiFjaTAzy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sMiFjaTAzy .card-title {
  color: #747b4c;
}
.cid-sIw1sPC0fq {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIw1sPC0fq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sIw1sPC0fq .row {
  flex-direction: row-reverse;
}
.cid-sIw1sPC0fq img {
  width: 100%;
}
#custom-html-6a {
  /* Type valid CSS here */
}
#custom-html-6a div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-6a p {
  font-size: 60px;
  color: #777;
}
.cid-sMoOpUIhDY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoOpUIhDY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoOpUIhDY .row {
  flex-direction: row-reverse;
}
.cid-sMoOpUIhDY img {
  width: 100%;
}
.cid-v2Qpjua9Yr {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qpjua9Yr .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qpjua9Yr .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qpjua9Yr .col + .mbr-section-btn .btn,
.cid-v2Qpjua9Yr .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qpjua9Yr .col + .mbr-section-btn .btn,
  .cid-v2Qpjua9Yr .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qpjua9Yr .dragArea > *:nth-last-child(2).col,
  .cid-v2Qpjua9Yr .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qpjua9Yr .col + .mbr-section-btn,
  .cid-v2Qpjua9Yr .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qpjua9Yr .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qpjua9Yr .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qpjua9Yr .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qpjua9Yr .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qpjua9Yr .form-group {
  max-width: 220px;
}
.cid-v2Qpjua9Yr .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qpjua9Yr .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qpjua9Yr .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qpjua9Yr .mbr-text {
  color: #444;
}
.cid-v2Qpjua9Yr h5 {
  margin-bottom: 0;
}
.cid-v2Qpjua9Yr .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qpjua9Yr .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qpjua9Yr .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qpjua9Yr .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qpjua9Yr .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qpjua9Yr .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qpjua9Yr .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qpjua9Yr .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qpjua9Yr .media-container-row > div {
  padding: 0px;
}
.cid-v2Qpjua9Yr .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qpjua9Yr .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qpjua9Yr .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qpjua9Yr .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qpjua9Yr .social-list,
  .cid-v2Qpjua9Yr .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qpjua9Yr h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qpjua9Yr .form-group {
    max-width: 180px;
  }
}
.cid-v2Qpjua9Yr .links span {
  color: #9e9e9e;
}
.cid-v2Qpjua9Yr .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qpjua9Yr .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIvVSPVtdp {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvVSPVtdp .mbr-section-title {
  color: #747b4c;
}
.cid-sIvVAPbEHq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvWMU2Aak {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIvWMU2Aak .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sIvWMU2Aak .row {
  flex-direction: row-reverse;
}
.cid-sIvWMU2Aak img {
  width: 100%;
}
.cid-sIvWMU2Aak .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-sIvWimhvwR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
#custom-html-69 {
  /* Type valid CSS here */
}
#custom-html-69 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-69 p {
  font-size: 60px;
  color: #777;
}
.cid-sMoOi3vFxN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoOi3vFxN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoOi3vFxN .row {
  flex-direction: row-reverse;
}
.cid-sMoOi3vFxN img {
  width: 100%;
}
.cid-v2Qpe6IyMO {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qpe6IyMO .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qpe6IyMO .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qpe6IyMO .col + .mbr-section-btn .btn,
.cid-v2Qpe6IyMO .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qpe6IyMO .col + .mbr-section-btn .btn,
  .cid-v2Qpe6IyMO .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qpe6IyMO .dragArea > *:nth-last-child(2).col,
  .cid-v2Qpe6IyMO .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qpe6IyMO .col + .mbr-section-btn,
  .cid-v2Qpe6IyMO .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qpe6IyMO .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qpe6IyMO .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qpe6IyMO .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qpe6IyMO .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qpe6IyMO .form-group {
  max-width: 220px;
}
.cid-v2Qpe6IyMO .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qpe6IyMO .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qpe6IyMO .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qpe6IyMO .mbr-text {
  color: #444;
}
.cid-v2Qpe6IyMO h5 {
  margin-bottom: 0;
}
.cid-v2Qpe6IyMO .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qpe6IyMO .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qpe6IyMO .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qpe6IyMO .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qpe6IyMO .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qpe6IyMO .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qpe6IyMO .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qpe6IyMO .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qpe6IyMO .media-container-row > div {
  padding: 0px;
}
.cid-v2Qpe6IyMO .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qpe6IyMO .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qpe6IyMO .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qpe6IyMO .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qpe6IyMO .social-list,
  .cid-v2Qpe6IyMO .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qpe6IyMO h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qpe6IyMO .form-group {
    max-width: 180px;
  }
}
.cid-v2Qpe6IyMO .links span {
  color: #9e9e9e;
}
.cid-v2Qpe6IyMO .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qpe6IyMO .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIvUmJ3O5C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sIvUmJ3O5C .google-map {
  height: 350px;
  position: relative;
}
.cid-sIvUmJ3O5C .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sIvUmJ3O5C .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sIvUmJ3O5C .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sIvUmJ3O5C .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
#custom-html-67 {
  /* Type valid CSS here */
}
#custom-html-67 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-67 p {
  font-size: 60px;
  color: #777;
}
.cid-sMoO6NYmyd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoO6NYmyd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoO6NYmyd .row {
  flex-direction: row-reverse;
}
.cid-sMoO6NYmyd img {
  width: 100%;
}
.cid-v2Qp5geFkK {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qp5geFkK .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qp5geFkK .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qp5geFkK .col + .mbr-section-btn .btn,
.cid-v2Qp5geFkK .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qp5geFkK .col + .mbr-section-btn .btn,
  .cid-v2Qp5geFkK .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qp5geFkK .dragArea > *:nth-last-child(2).col,
  .cid-v2Qp5geFkK .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qp5geFkK .col + .mbr-section-btn,
  .cid-v2Qp5geFkK .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qp5geFkK .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qp5geFkK .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qp5geFkK .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qp5geFkK .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qp5geFkK .form-group {
  max-width: 220px;
}
.cid-v2Qp5geFkK .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qp5geFkK .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qp5geFkK .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qp5geFkK .mbr-text {
  color: #444;
}
.cid-v2Qp5geFkK h5 {
  margin-bottom: 0;
}
.cid-v2Qp5geFkK .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qp5geFkK .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qp5geFkK .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qp5geFkK .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qp5geFkK .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qp5geFkK .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qp5geFkK .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qp5geFkK .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qp5geFkK .media-container-row > div {
  padding: 0px;
}
.cid-v2Qp5geFkK .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qp5geFkK .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qp5geFkK .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qp5geFkK .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qp5geFkK .social-list,
  .cid-v2Qp5geFkK .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qp5geFkK h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qp5geFkK .form-group {
    max-width: 180px;
  }
}
.cid-v2Qp5geFkK .links span {
  color: #9e9e9e;
}
.cid-v2Qp5geFkK .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qp5geFkK .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMiX0Batio {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sMiX0Batio .mbr-section-title {
  color: #747b4c;
}
.cid-sMiX0Batio .mbr-section-subtitle {
  text-align: left;
}
.cid-sMiYDL7Kit {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMiYDL7Kit .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMiYDL7Kit .row {
  flex-direction: row-reverse;
}
.cid-sMiYDL7Kit img {
  width: 100%;
}
.cid-sMj2MSSIHo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sMj2MSSIHo .mbr-text {
  line-height: 1.5;
  color: #747b4c;
}
.cid-sMj2MSSIHo .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sMj2MSSIHo .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sMj2MSSIHo .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sMj2MSSIHo .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sMj2MSSIHo .container2 input:checked ~ .checkmark {
  background-color: #747b4c;
}
.cid-sMj2MSSIHo .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sMj2MSSIHo .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sMj2MSSIHo .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sMj2MSSIHo .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-sMj3yAJEuW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sMj3yAJEuW .mbr-text {
  line-height: 1.5;
  color: #747b4c;
}
.cid-sMj3yAJEuW .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sMj3yAJEuW .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sMj3yAJEuW .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sMj3yAJEuW .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sMj3yAJEuW .container2 input:checked ~ .checkmark {
  background-color: #747b4c;
}
.cid-sMj3yAJEuW .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sMj3yAJEuW .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sMj3yAJEuW .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sMj3yAJEuW .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-sMjTxNC04p {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sMjTxNC04p .mbr-text {
  line-height: 1.5;
  color: #747b4c;
}
.cid-sMjTxNC04p .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sMjTxNC04p .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-sMjTxNC04p .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sMjTxNC04p .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sMjTxNC04p .container2 input:checked ~ .checkmark {
  background-color: #2196F3;
}
.cid-sMjTxNC04p .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sMjTxNC04p .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sMjTxNC04p .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sMjTxNC04p .mbr-section-title {
  text-align: left;
  color: #747b4c;
}
.cid-sMjURS4yIk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMjURS4yIk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMjURS4yIk .row {
  flex-direction: row-reverse;
}
.cid-sMjURS4yIk img {
  width: 100%;
}
.cid-sMjVXcIo6f {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sMjVXcIo6f .line {
  background-color: #747b4c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
#custom-html-68 {
  /* Type valid CSS here */
}
#custom-html-68 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-68 p {
  font-size: 60px;
  color: #777;
}
.cid-uco09dxFP4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uco09dxFP4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uco09dxFP4 .row {
  flex-direction: row-reverse;
}
.cid-uco09dxFP4 img {
  width: 100%;
}
.cid-v2Qp9WoQ0l {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qp9WoQ0l .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qp9WoQ0l .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qp9WoQ0l .col + .mbr-section-btn .btn,
.cid-v2Qp9WoQ0l .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qp9WoQ0l .col + .mbr-section-btn .btn,
  .cid-v2Qp9WoQ0l .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qp9WoQ0l .dragArea > *:nth-last-child(2).col,
  .cid-v2Qp9WoQ0l .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qp9WoQ0l .col + .mbr-section-btn,
  .cid-v2Qp9WoQ0l .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qp9WoQ0l .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qp9WoQ0l .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qp9WoQ0l .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qp9WoQ0l .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qp9WoQ0l .form-group {
  max-width: 220px;
}
.cid-v2Qp9WoQ0l .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qp9WoQ0l .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qp9WoQ0l .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qp9WoQ0l .mbr-text {
  color: #444;
}
.cid-v2Qp9WoQ0l h5 {
  margin-bottom: 0;
}
.cid-v2Qp9WoQ0l .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qp9WoQ0l .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qp9WoQ0l .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qp9WoQ0l .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qp9WoQ0l .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qp9WoQ0l .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qp9WoQ0l .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qp9WoQ0l .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qp9WoQ0l .media-container-row > div {
  padding: 0px;
}
.cid-v2Qp9WoQ0l .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qp9WoQ0l .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qp9WoQ0l .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qp9WoQ0l .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qp9WoQ0l .social-list,
  .cid-v2Qp9WoQ0l .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qp9WoQ0l h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qp9WoQ0l .form-group {
    max-width: 180px;
  }
}
.cid-v2Qp9WoQ0l .links span {
  color: #9e9e9e;
}
.cid-v2Qp9WoQ0l .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qp9WoQ0l .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJ06pvvg3F {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sJ06pvvg3F .item {
  padding-bottom: 2rem;
}
.cid-sJ06pvvg3F .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sJ06pvvg3F .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sJ06pvvg3F .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sJ06pvvg3F .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sJ06pvvg3F .carousel-control,
.cid-sJ06pvvg3F .close {
  background: #1b1b1b;
}
.cid-sJ06pvvg3F .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sJ06pvvg3F .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sJ06pvvg3F .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sJ06pvvg3F .carousel-control-next span {
  margin-left: 5px;
}
.cid-sJ06pvvg3F .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sJ06pvvg3F .close::before {
  content: '\e91a';
}
.cid-sJ06pvvg3F .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sJ06pvvg3F .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sJ06pvvg3F .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJ06pvvg3F .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sJ06pvvg3F .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sJ06pvvg3F .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sJ06pvvg3F .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sJ06pvvg3F .carousel-indicators li.active,
.cid-sJ06pvvg3F .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sJ06pvvg3F .carousel-indicators li::after,
.cid-sJ06pvvg3F .carousel-indicators li::before {
  content: none;
}
.cid-sJ06pvvg3F .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sJ06pvvg3F .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sJ06pvvg3F .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sJ06pvvg3F .carousel-indicators {
    display: none;
  }
}
.cid-sJ06pvvg3F .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sJ06pvvg3F .carousel-inner > .active {
  display: block;
}
.cid-sJ06pvvg3F .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJ06pvvg3F .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sJ06pvvg3F .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sJ06pvvg3F .carousel-control,
  .cid-sJ06pvvg3F .carousel-indicators,
  .cid-sJ06pvvg3F .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sJ06pvvg3F .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sJ06pvvg3F .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sJ06pvvg3F .carousel-indicators .active,
.cid-sJ06pvvg3F .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sJ06pvvg3F .carousel-indicators .active {
  background: #fff;
}
.cid-sJ06pvvg3F .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sJ06pvvg3F .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sJ06pvvg3F .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sJ06pvvg3F .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sJ06pvvg3F .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sJ06pvvg3F .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sJ06pvvg3F .carousel {
  width: 100%;
}
.cid-sJ06pvvg3F .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sJ06pvvg3F .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sJ06pvvg3F .modal.fade .modal-dialog,
.cid-sJ06pvvg3F .modal.in .modal-dialog {
  transform: none;
}
.cid-sJ06pvvg3F .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sJ06pvvg3F H6 {
  text-align: left;
  color: #000000;
}
.cid-sJ06pvvg3F H3 {
  color: #747b4c;
}
.cid-sJ06pvvg3F H4 {
  text-align: left;
}
#custom-html-66 {
  /* Type valid CSS here */
}
#custom-html-66 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-66 p {
  font-size: 60px;
  color: #777;
}
.cid-v2Qp0hMbVC {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qp0hMbVC .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qp0hMbVC .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qp0hMbVC .col + .mbr-section-btn .btn,
.cid-v2Qp0hMbVC .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qp0hMbVC .col + .mbr-section-btn .btn,
  .cid-v2Qp0hMbVC .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qp0hMbVC .dragArea > *:nth-last-child(2).col,
  .cid-v2Qp0hMbVC .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qp0hMbVC .col + .mbr-section-btn,
  .cid-v2Qp0hMbVC .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qp0hMbVC .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qp0hMbVC .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qp0hMbVC .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qp0hMbVC .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qp0hMbVC .form-group {
  max-width: 220px;
}
.cid-v2Qp0hMbVC .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qp0hMbVC .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qp0hMbVC .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qp0hMbVC .mbr-text {
  color: #444;
}
.cid-v2Qp0hMbVC h5 {
  margin-bottom: 0;
}
.cid-v2Qp0hMbVC .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qp0hMbVC .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qp0hMbVC .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qp0hMbVC .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qp0hMbVC .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qp0hMbVC .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qp0hMbVC .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qp0hMbVC .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qp0hMbVC .media-container-row > div {
  padding: 0px;
}
.cid-v2Qp0hMbVC .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qp0hMbVC .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qp0hMbVC .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qp0hMbVC .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qp0hMbVC .social-list,
  .cid-v2Qp0hMbVC .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qp0hMbVC h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qp0hMbVC .form-group {
    max-width: 180px;
  }
}
.cid-v2Qp0hMbVC .links span {
  color: #9e9e9e;
}
.cid-v2Qp0hMbVC .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qp0hMbVC .logo-title {
  text-align: center;
}
.cid-sMoNZqyPyT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoNZqyPyT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoNZqyPyT .row {
  flex-direction: row-reverse;
}
.cid-sMoNZqyPyT img {
  width: 100%;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMoNJYeTjl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sMoNJYeTjl .mbr-section-title {
  color: #747b4c;
}
.cid-sKfXZCMzq1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKfXZCMzq1 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sKfXZCMzq1 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sKfXZCMzq1 .row .img-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  height: 350px;
}
@media (max-height: 767px) {
  .cid-sKfXZCMzq1 .row .img-item img {
    height: 250px;
  }
}
.cid-sKg0boZcWe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sKg0boZcWe .mbr-section-subtitle {
  color: #747b4c;
}
.cid-sMp0dLaJjz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMp0dLaJjz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMp0dLaJjz .row {
  flex-direction: row-reverse;
}
.cid-sMp0dLaJjz img {
  width: 100%;
}
#custom-html-65 {
  /* Type valid CSS here */
}
#custom-html-65 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-65 p {
  font-size: 60px;
  color: #777;
}
.cid-sMoNDO0M6k {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoNDO0M6k .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoNDO0M6k .row {
  flex-direction: row-reverse;
}
.cid-sMoNDO0M6k img {
  width: 100%;
}
.cid-v2QoPLxswf {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QoPLxswf .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QoPLxswf .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QoPLxswf .col + .mbr-section-btn .btn,
.cid-v2QoPLxswf .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QoPLxswf .col + .mbr-section-btn .btn,
  .cid-v2QoPLxswf .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QoPLxswf .dragArea > *:nth-last-child(2).col,
  .cid-v2QoPLxswf .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QoPLxswf .col + .mbr-section-btn,
  .cid-v2QoPLxswf .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QoPLxswf .dragArea {
    flex-direction: column;
  }
}
.cid-v2QoPLxswf .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QoPLxswf .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QoPLxswf .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QoPLxswf .form-group {
  max-width: 220px;
}
.cid-v2QoPLxswf .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QoPLxswf .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QoPLxswf .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QoPLxswf .mbr-text {
  color: #444;
}
.cid-v2QoPLxswf h5 {
  margin-bottom: 0;
}
.cid-v2QoPLxswf .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QoPLxswf .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QoPLxswf .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QoPLxswf .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QoPLxswf .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QoPLxswf .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QoPLxswf .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QoPLxswf .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QoPLxswf .media-container-row > div {
  padding: 0px;
}
.cid-v2QoPLxswf .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QoPLxswf .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QoPLxswf .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QoPLxswf .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QoPLxswf .social-list,
  .cid-v2QoPLxswf .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QoPLxswf h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QoPLxswf .form-group {
    max-width: 180px;
  }
}
.cid-v2QoPLxswf .links span {
  color: #9e9e9e;
}
.cid-v2QoPLxswf .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QoPLxswf .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sKj8acfkMw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f9f9f9;
}
.cid-sKj8acfkMw .mbr-text,
.cid-sKj8acfkMw .mbr-section-btn {
  color: #000000;
}
.cid-sKj8acfkMw .container {
  max-width: 1000px;
}
.cid-sKj8acfkMw .mbr-section-title {
  border-bottom: 1px solid currentColor;
  color: #747b4c;
  padding-bottom: 1rem;
}
.cid-sKjgJ6wYJJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKjgJ6wYJJ .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sKjgJ6wYJJ .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sKjgJ6wYJJ .list-img {
  width: 100px;
}
.cid-sKjgJ6wYJJ .ico2 {
  color: #767676;
  font-size: 1.2rem;
}
.cid-sKjgJ6wYJJ .btn {
  margin: 0px !important;
}
.cid-sKjgJ6wYJJ .text-box {
  padding: 1rem;
}
.cid-sKjgJ6wYJJ .text-box p {
  margin: 0;
}
.cid-sKjgJ6wYJJ .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sKjgJ6wYJJ .ico-box p {
  margin: 0;
}
.cid-sKjgJ6wYJJ .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKjgJ6wYJJ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKjgJ6wYJJ .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sKjgJ6wYJJ .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sKjgJ6wYJJ .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sKjgJ6wYJJ .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sKjgJ6wYJJ .carousel-indicators li {
  display: inline-block;
}
.cid-sKjgJ6wYJJ .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sKjgJ6wYJJ .carousel-indicators li.active {
  border: 0px;
}
.cid-sKjgJ6wYJJ .li1,
.cid-sKjgJ6wYJJ .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/ccm-bait-casting-02-1-2000x1125.jpg");
}
.cid-sKjgJ6wYJJ .li2,
.cid-sKjgJ6wYJJ .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/ccm-bait-casting-03-2000x1152.jpg");
}
.cid-sKjgJ6wYJJ .li3,
.cid-sKjgJ6wYJJ .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/ccm-bait-casting-01-2000x1125.jpg");
}
.cid-sKjgJ6wYJJ .li4,
.cid-sKjgJ6wYJJ .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/-mg-2668a-2000x1347.jpg");
}
.cid-sKjgJ6wYJJ .li5,
.cid-sKjgJ6wYJJ .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/06.jpg");
}
.cid-sKjgJ6wYJJ .li6,
.cid-sKjgJ6wYJJ .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/08.jpg");
}
@media (max-width: 992px) {
  .cid-sKjgJ6wYJJ .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sKjgJ6wYJJ .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sKjgJ6wYJJ .card-title2 {
  color: #149dcc;
}
.cid-sKjgJ6wYJJ .sq {
  color: #767676;
}
.cid-sKjgJ6wYJJ .item {
  color: #767676;
}
#custom-html-64 {
  /* Type valid CSS here */
}
#custom-html-64 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-64 p {
  font-size: 60px;
  color: #777;
}
.cid-sMoNwmiO5r {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoNwmiO5r .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoNwmiO5r .row {
  flex-direction: row-reverse;
}
.cid-sMoNwmiO5r img {
  width: 100%;
}
.cid-v2QoLkt8Oq {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QoLkt8Oq .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QoLkt8Oq .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QoLkt8Oq .col + .mbr-section-btn .btn,
.cid-v2QoLkt8Oq .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QoLkt8Oq .col + .mbr-section-btn .btn,
  .cid-v2QoLkt8Oq .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QoLkt8Oq .dragArea > *:nth-last-child(2).col,
  .cid-v2QoLkt8Oq .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QoLkt8Oq .col + .mbr-section-btn,
  .cid-v2QoLkt8Oq .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QoLkt8Oq .dragArea {
    flex-direction: column;
  }
}
.cid-v2QoLkt8Oq .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QoLkt8Oq .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QoLkt8Oq .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QoLkt8Oq .form-group {
  max-width: 220px;
}
.cid-v2QoLkt8Oq .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QoLkt8Oq .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QoLkt8Oq .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QoLkt8Oq .mbr-text {
  color: #444;
}
.cid-v2QoLkt8Oq h5 {
  margin-bottom: 0;
}
.cid-v2QoLkt8Oq .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QoLkt8Oq .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QoLkt8Oq .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QoLkt8Oq .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QoLkt8Oq .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QoLkt8Oq .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QoLkt8Oq .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QoLkt8Oq .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QoLkt8Oq .media-container-row > div {
  padding: 0px;
}
.cid-v2QoLkt8Oq .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QoLkt8Oq .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QoLkt8Oq .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QoLkt8Oq .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QoLkt8Oq .social-list,
  .cid-v2QoLkt8Oq .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QoLkt8Oq h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QoLkt8Oq .form-group {
    max-width: 180px;
  }
}
.cid-v2QoLkt8Oq .links span {
  color: #9e9e9e;
}
.cid-v2QoLkt8Oq .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QoLkt8Oq .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sKklq0KOGl {
  background-color: #ffffff;
}
.cid-sKklq0KOGl .photo-split img {
  width: 100%;
}
.cid-sKklq0KOGl .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sKklq0KOGl .counter-container ul li {
  margin-bottom: 0.5rem;
  list-style: ✓;
}
.cid-sKklq0KOGl .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.2s;
  width: 25px;
  height: 25px;
}
.cid-sKklq0KOGl .wrap-block {
  padding-left: 2rem;
}
.cid-sKklq0KOGl .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sKklq0KOGl .wrap-block ul li {
  display: inline-block;
}
.cid-sKklq0KOGl .wrap-block ul li span {
  text-align: center;
}
.cid-sKklq0KOGl .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-sKklq0KOGl .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sKklq0KOGl .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sKklq0KOGl .mbr-list,
.cid-sKklq0KOGl .social-media ul {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sKklq0KOGl {
    padding-top: 12px;
    padding-bottom: 0px;
  }
  .cid-sKklq0KOGl .wrap-block {
    margin: 0.5rem 0;
  }
  .cid-sKklq0KOGl .container-fluid {
    padding: 0 1rem;
  }
  .cid-sKklq0KOGl .mbr-section-title,
  .cid-sKklq0KOGl .mbr-section-subtitle,
  .cid-sKklq0KOGl .mbr-text {
    text-align: center !important;
  }
  .cid-sKklq0KOGl .social-list {
    text-align: center !important;
  }
}
@media (min-width: 767px) {
  .cid-sKklq0KOGl {
    padding-top: 45px;
    padding-bottom: 0px;
  }
  .cid-sKklq0KOGl .wrap-block {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .cid-sKklq0KOGl .container-fluid {
    padding: 0 2rem;
  }
}
.cid-sKklq0KOGl .btn-line {
  margin-top: 3rem;
}
.cid-sKklq0KOGl .container-fluid {
  max-width: 1300px;
}
@media (max-width: 992px) {
  .cid-sKklq0KOGl .col-lg-8 {
    order: 2;
  }
  .cid-sKklq0KOGl .col-lg-4 {
    order: 1;
  }
}
.cid-sKklq0KOGl .mbr-section-title {
  color: #747b4c;
}
.cid-sKj7EBIEI8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sKj7EBIEI8 img,
.cid-sKj7EBIEI8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sKj7EBIEI8 .item:focus,
.cid-sKj7EBIEI8 span:focus {
  outline: none;
}
.cid-sKj7EBIEI8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sKj7EBIEI8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sKj7EBIEI8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sKj7EBIEI8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sKj7EBIEI8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sKj7EBIEI8 .mbr-section-title {
  color: #747b4c;
}
.cid-sKj7EBIEI8 .mbr-text,
.cid-sKj7EBIEI8 .mbr-section-btn {
  text-align: left;
}
.cid-sKj7EBIEI8 .item-title {
  text-align: left;
}
.cid-sKj7EBIEI8 .item-subtitle {
  text-align: center;
}
#custom-html-63 {
  /* Type valid CSS here */
}
#custom-html-63 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-63 p {
  font-size: 60px;
  color: #777;
}
.cid-sMoNsRVPXq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoNsRVPXq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoNsRVPXq .row {
  flex-direction: row-reverse;
}
.cid-sMoNsRVPXq img {
  width: 100%;
}
.cid-v2QoGmhn7M {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QoGmhn7M .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QoGmhn7M .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QoGmhn7M .col + .mbr-section-btn .btn,
.cid-v2QoGmhn7M .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QoGmhn7M .col + .mbr-section-btn .btn,
  .cid-v2QoGmhn7M .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QoGmhn7M .dragArea > *:nth-last-child(2).col,
  .cid-v2QoGmhn7M .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QoGmhn7M .col + .mbr-section-btn,
  .cid-v2QoGmhn7M .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QoGmhn7M .dragArea {
    flex-direction: column;
  }
}
.cid-v2QoGmhn7M .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QoGmhn7M .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QoGmhn7M .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QoGmhn7M .form-group {
  max-width: 220px;
}
.cid-v2QoGmhn7M .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QoGmhn7M .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QoGmhn7M .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QoGmhn7M .mbr-text {
  color: #444;
}
.cid-v2QoGmhn7M h5 {
  margin-bottom: 0;
}
.cid-v2QoGmhn7M .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QoGmhn7M .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QoGmhn7M .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QoGmhn7M .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QoGmhn7M .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QoGmhn7M .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QoGmhn7M .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QoGmhn7M .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QoGmhn7M .media-container-row > div {
  padding: 0px;
}
.cid-v2QoGmhn7M .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QoGmhn7M .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QoGmhn7M .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QoGmhn7M .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QoGmhn7M .social-list,
  .cid-v2QoGmhn7M .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QoGmhn7M h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QoGmhn7M .form-group {
    max-width: 180px;
  }
}
.cid-v2QoGmhn7M .links span {
  color: #9e9e9e;
}
.cid-v2QoGmhn7M .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QoGmhn7M .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sKpjnjHR5d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .cid-sKpjnjHR5d .content-wrapper {
    padding-right: 60px;
  }
}
.cid-sKpjnjHR5d img {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sKpjnjHR5d .content-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-sKpjnjHR5d H1 {
  color: #747b4c;
}
.cid-sMp2MCUHYO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMp2MCUHYO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMp2MCUHYO .row {
  flex-direction: row-reverse;
}
.cid-sMp2MCUHYO img {
  width: 100%;
}
.cid-sKpiG535g5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sKpiG535g5 img,
.cid-sKpiG535g5 .item-img {
  width: 100%;
}
.cid-sKpiG535g5 .item:focus,
.cid-sKpiG535g5 span:focus {
  outline: none;
}
.cid-sKpiG535g5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sKpiG535g5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sKpiG535g5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sKpiG535g5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sKpiG535g5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sKpiG535g5 .mbr-section-title {
  color: #232323;
}
.cid-sKpiG535g5 .mbr-text,
.cid-sKpiG535g5 .mbr-section-btn {
  text-align: left;
}
.cid-sKpiG535g5 .item-title {
  text-align: left;
}
.cid-sKpiG535g5 .item-subtitle {
  text-align: left;
}
#custom-html-62 {
  /* Type valid CSS here */
}
#custom-html-62 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-62 p {
  font-size: 60px;
  color: #777;
}
.cid-sMoNoIdjol {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoNoIdjol .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoNoIdjol .row {
  flex-direction: row-reverse;
}
.cid-sMoNoIdjol img {
  width: 100%;
}
.cid-v2QoBXQT6R {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QoBXQT6R .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QoBXQT6R .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QoBXQT6R .col + .mbr-section-btn .btn,
.cid-v2QoBXQT6R .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QoBXQT6R .col + .mbr-section-btn .btn,
  .cid-v2QoBXQT6R .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QoBXQT6R .dragArea > *:nth-last-child(2).col,
  .cid-v2QoBXQT6R .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QoBXQT6R .col + .mbr-section-btn,
  .cid-v2QoBXQT6R .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QoBXQT6R .dragArea {
    flex-direction: column;
  }
}
.cid-v2QoBXQT6R .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QoBXQT6R .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QoBXQT6R .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QoBXQT6R .form-group {
  max-width: 220px;
}
.cid-v2QoBXQT6R .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QoBXQT6R .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QoBXQT6R .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QoBXQT6R .mbr-text {
  color: #444;
}
.cid-v2QoBXQT6R h5 {
  margin-bottom: 0;
}
.cid-v2QoBXQT6R .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QoBXQT6R .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QoBXQT6R .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QoBXQT6R .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QoBXQT6R .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QoBXQT6R .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QoBXQT6R .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QoBXQT6R .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QoBXQT6R .media-container-row > div {
  padding: 0px;
}
.cid-v2QoBXQT6R .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QoBXQT6R .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QoBXQT6R .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QoBXQT6R .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QoBXQT6R .social-list,
  .cid-v2QoBXQT6R .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QoBXQT6R h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QoBXQT6R .form-group {
    max-width: 180px;
  }
}
.cid-v2QoBXQT6R .links span {
  color: #9e9e9e;
}
.cid-v2QoBXQT6R .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QoBXQT6R .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sKj79uPseg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sKj79uPseg .mbr-section-title {
  color: #747b4c;
}
.cid-sKjtAePXzM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKjtAePXzM .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-sKjtAePXzM .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sKjtAePXzM img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-sKjtAePXzM .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-sKjuXxz1Gw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sKjuXxz1Gw img {
  border-radius: 0px;
  padding-bottom: 32px;
}
.cid-sKjuXxz1Gw .right {
  display: flex;
  flex-direction: column;
}
.cid-sKjuXxz1Gw .card-heading {
  padding-bottom: 35px;
  color: #0c5b47;
}
.cid-sKjuXxz1Gw .p {
  padding-bottom: 17px;
  color: #1b745e;
}
.cid-sKjuXxz1Gw .last-p {
  padding-bottom: 0;
}
.cid-sKjuXxz1Gw .row {
  justify-content: center;
}
#custom-html-61 {
  /* Type valid CSS here */
}
#custom-html-61 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-61 p {
  font-size: 60px;
  color: #777;
}
.cid-sMoNkTuxbX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoNkTuxbX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoNkTuxbX .row {
  flex-direction: row-reverse;
}
.cid-sMoNkTuxbX img {
  width: 100%;
}
.cid-v2QowUxV1z {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QowUxV1z .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QowUxV1z .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QowUxV1z .col + .mbr-section-btn .btn,
.cid-v2QowUxV1z .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QowUxV1z .col + .mbr-section-btn .btn,
  .cid-v2QowUxV1z .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QowUxV1z .dragArea > *:nth-last-child(2).col,
  .cid-v2QowUxV1z .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QowUxV1z .col + .mbr-section-btn,
  .cid-v2QowUxV1z .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QowUxV1z .dragArea {
    flex-direction: column;
  }
}
.cid-v2QowUxV1z .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QowUxV1z .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QowUxV1z .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QowUxV1z .form-group {
  max-width: 220px;
}
.cid-v2QowUxV1z .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QowUxV1z .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QowUxV1z .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QowUxV1z .mbr-text {
  color: #444;
}
.cid-v2QowUxV1z h5 {
  margin-bottom: 0;
}
.cid-v2QowUxV1z .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QowUxV1z .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QowUxV1z .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QowUxV1z .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QowUxV1z .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QowUxV1z .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QowUxV1z .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QowUxV1z .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QowUxV1z .media-container-row > div {
  padding: 0px;
}
.cid-v2QowUxV1z .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QowUxV1z .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QowUxV1z .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QowUxV1z .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QowUxV1z .social-list,
  .cid-v2QowUxV1z .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QowUxV1z h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QowUxV1z .form-group {
    max-width: 180px;
  }
}
.cid-v2QowUxV1z .links span {
  color: #9e9e9e;
}
.cid-v2QowUxV1z .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QowUxV1z .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sKg1NB0DZq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sKg1NB0DZq .mbr-section-title {
  color: #747b4c;
}
.cid-sKg1NB0DZq .mbr-section-subtitle {
  text-align: left;
}
.cid-sMp8JxeEd4 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sMp8JxeEd4 img,
.cid-sMp8JxeEd4 .item-img {
  width: 100%;
}
.cid-sMp8JxeEd4 .item:focus,
.cid-sMp8JxeEd4 span:focus {
  outline: none;
}
.cid-sMp8JxeEd4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sMp8JxeEd4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sMp8JxeEd4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sMp8JxeEd4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sMp8JxeEd4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sMp8JxeEd4 .mbr-section-title {
  color: #232323;
}
.cid-sMp8JxeEd4 .mbr-text,
.cid-sMp8JxeEd4 .mbr-section-btn {
  text-align: left;
}
.cid-sMp8JxeEd4 .item-title {
  text-align: left;
}
.cid-sMp8JxeEd4 .item-subtitle {
  text-align: center;
}
#custom-html-60 {
  /* Type valid CSS here */
}
#custom-html-60 div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-60 p {
  font-size: 60px;
  color: #777;
}
.cid-sMoNfuTxXh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoNfuTxXh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoNfuTxXh .row {
  flex-direction: row-reverse;
}
.cid-sMoNfuTxXh img {
  width: 100%;
}
.cid-v2Qor36zxf {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qor36zxf .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qor36zxf .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qor36zxf .col + .mbr-section-btn .btn,
.cid-v2Qor36zxf .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qor36zxf .col + .mbr-section-btn .btn,
  .cid-v2Qor36zxf .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qor36zxf .dragArea > *:nth-last-child(2).col,
  .cid-v2Qor36zxf .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qor36zxf .col + .mbr-section-btn,
  .cid-v2Qor36zxf .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qor36zxf .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qor36zxf .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qor36zxf .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qor36zxf .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qor36zxf .form-group {
  max-width: 220px;
}
.cid-v2Qor36zxf .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qor36zxf .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qor36zxf .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qor36zxf .mbr-text {
  color: #444;
}
.cid-v2Qor36zxf h5 {
  margin-bottom: 0;
}
.cid-v2Qor36zxf .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qor36zxf .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qor36zxf .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qor36zxf .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qor36zxf .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qor36zxf .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qor36zxf .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qor36zxf .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qor36zxf .media-container-row > div {
  padding: 0px;
}
.cid-v2Qor36zxf .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qor36zxf .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qor36zxf .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qor36zxf .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qor36zxf .social-list,
  .cid-v2Qor36zxf .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qor36zxf h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qor36zxf .form-group {
    max-width: 180px;
  }
}
.cid-v2Qor36zxf .links span {
  color: #9e9e9e;
}
.cid-v2Qor36zxf .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qor36zxf .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sKjnoonMUp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKjnoonMUp .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sKjnoonMUp .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sKjnoonMUp .list-img {
  width: 100px;
}
.cid-sKjnoonMUp .ico2 {
  color: #767676;
  font-size: 1.2rem;
}
.cid-sKjnoonMUp .btn {
  margin: 0px !important;
}
.cid-sKjnoonMUp .text-box {
  padding: 1rem;
}
.cid-sKjnoonMUp .text-box p {
  margin: 0;
}
.cid-sKjnoonMUp .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sKjnoonMUp .ico-box p {
  margin: 0;
}
.cid-sKjnoonMUp .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKjnoonMUp .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKjnoonMUp .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sKjnoonMUp .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sKjnoonMUp .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sKjnoonMUp .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sKjnoonMUp .carousel-indicators li {
  display: inline-block;
}
.cid-sKjnoonMUp .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sKjnoonMUp .carousel-indicators li.active {
  border: 0px;
}
.cid-sKjnoonMUp .li1,
.cid-sKjnoonMUp .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/ccm-military-hallway-2000x1133.jpeg");
}
.cid-sKjnoonMUp .li2,
.cid-sKjnoonMUp .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/ccm-military-civil-war-1-2000x1125.jpg");
}
.cid-sKjnoonMUp .li3,
.cid-sKjnoonMUp .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/ccm-upstairs-hall-war-of-1812-2000x1218.jpg");
}
.cid-sKjnoonMUp .li4,
.cid-sKjnoonMUp .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/-mg-2585-2000x1333.jpeg");
}
.cid-sKjnoonMUp .li5,
.cid-sKjnoonMUp .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/06.jpg");
}
.cid-sKjnoonMUp .li6,
.cid-sKjnoonMUp .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/08.jpg");
}
@media (max-width: 992px) {
  .cid-sKjnoonMUp .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sKjnoonMUp .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sKjnoonMUp .card-title2 {
  color: #149dcc;
}
.cid-sKjnoonMUp .sq {
  color: #767676;
}
.cid-sKjnoonMUp .item {
  color: #767676;
}
.cid-sKjftyWsBW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sKjftyWsBW .mbr-section-subtitle {
  color: #747b4c;
}
#custom-html-5z {
  /* Type valid CSS here */
}
#custom-html-5z div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-5z p {
  font-size: 60px;
  color: #777;
}
.cid-sMoNaXglhf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoNaXglhf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoNaXglhf .row {
  flex-direction: row-reverse;
}
.cid-sMoNaXglhf img {
  width: 100%;
}
.cid-v2Qom8rYwd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qom8rYwd .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qom8rYwd .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qom8rYwd .col + .mbr-section-btn .btn,
.cid-v2Qom8rYwd .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qom8rYwd .col + .mbr-section-btn .btn,
  .cid-v2Qom8rYwd .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qom8rYwd .dragArea > *:nth-last-child(2).col,
  .cid-v2Qom8rYwd .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qom8rYwd .col + .mbr-section-btn,
  .cid-v2Qom8rYwd .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qom8rYwd .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qom8rYwd .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qom8rYwd .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qom8rYwd .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qom8rYwd .form-group {
  max-width: 220px;
}
.cid-v2Qom8rYwd .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qom8rYwd .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qom8rYwd .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qom8rYwd .mbr-text {
  color: #444;
}
.cid-v2Qom8rYwd h5 {
  margin-bottom: 0;
}
.cid-v2Qom8rYwd .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qom8rYwd .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qom8rYwd .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qom8rYwd .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qom8rYwd .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qom8rYwd .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qom8rYwd .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qom8rYwd .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qom8rYwd .media-container-row > div {
  padding: 0px;
}
.cid-v2Qom8rYwd .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qom8rYwd .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qom8rYwd .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qom8rYwd .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qom8rYwd .social-list,
  .cid-v2Qom8rYwd .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qom8rYwd h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qom8rYwd .form-group {
    max-width: 180px;
  }
}
.cid-v2Qom8rYwd .links span {
  color: #9e9e9e;
}
.cid-v2Qom8rYwd .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qom8rYwd .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sKAYlXxJgd {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sKAYlXxJgd .mbr-section-title {
  color: #747b4c;
}
.cid-sKAXaMZfbB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sKAXaMZfbB .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-sKAXaMZfbB .card-img {
  padding: 0 0 2rem;
}
.cid-sKAXaMZfbB .mbr-section-btn {
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-sKAXaMZfbB .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .cid-sKAXaMZfbB .card-title {
    text-align: center;
  }
  .cid-sKAXaMZfbB p.mbr-text {
    text-align: center;
  }
}
.cid-sKAXyM66Oa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sKAXyM66Oa .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-sKAXyM66Oa .card-img {
  padding: 0 0 2rem;
}
.cid-sKAXyM66Oa .mbr-section-btn {
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-sKAXyM66Oa .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .cid-sKAXyM66Oa .card-title {
    text-align: center;
  }
  .cid-sKAXyM66Oa p.mbr-text {
    text-align: center;
  }
}
.cid-sMoN7jqcul {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoN7jqcul .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoN7jqcul .row {
  flex-direction: row-reverse;
}
.cid-sMoN7jqcul img {
  width: 100%;
}
#custom-html-5y {
  /* Type valid CSS here */
}
#custom-html-5y div {
  padding: 10px 0;
  color: #777;
  text-align: center;
}
#custom-html-5y p {
  font-size: 60px;
  color: #777;
}
.cid-v2QohtvFQw {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QohtvFQw .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QohtvFQw .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QohtvFQw .col + .mbr-section-btn .btn,
.cid-v2QohtvFQw .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QohtvFQw .col + .mbr-section-btn .btn,
  .cid-v2QohtvFQw .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QohtvFQw .dragArea > *:nth-last-child(2).col,
  .cid-v2QohtvFQw .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QohtvFQw .col + .mbr-section-btn,
  .cid-v2QohtvFQw .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QohtvFQw .dragArea {
    flex-direction: column;
  }
}
.cid-v2QohtvFQw .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QohtvFQw .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QohtvFQw .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QohtvFQw .form-group {
  max-width: 220px;
}
.cid-v2QohtvFQw .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QohtvFQw .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QohtvFQw .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QohtvFQw .mbr-text {
  color: #444;
}
.cid-v2QohtvFQw h5 {
  margin-bottom: 0;
}
.cid-v2QohtvFQw .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QohtvFQw .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QohtvFQw .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QohtvFQw .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QohtvFQw .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QohtvFQw .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QohtvFQw .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QohtvFQw .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QohtvFQw .media-container-row > div {
  padding: 0px;
}
.cid-v2QohtvFQw .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QohtvFQw .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QohtvFQw .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QohtvFQw .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QohtvFQw .social-list,
  .cid-v2QohtvFQw .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QohtvFQw h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QohtvFQw .form-group {
    max-width: 180px;
  }
}
.cid-v2QohtvFQw .links span {
  color: #9e9e9e;
}
.cid-v2QohtvFQw .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QohtvFQw .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-4p {
  /* Type valid CSS here */
}
#custom-html-4p div {
  padding: 40px 0;
  color: #777;
  text-align: center;
}
#custom-html-4p p {
  font-size: 60px;
  color: #777;
}
.cid-sMoN2QwqI2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoN2QwqI2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoN2QwqI2 .row {
  flex-direction: row-reverse;
}
.cid-sMoN2QwqI2 img {
  width: 100%;
}
.cid-v2Qoa6QaBj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qoa6QaBj .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qoa6QaBj .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qoa6QaBj .col + .mbr-section-btn .btn,
.cid-v2Qoa6QaBj .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qoa6QaBj .col + .mbr-section-btn .btn,
  .cid-v2Qoa6QaBj .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qoa6QaBj .dragArea > *:nth-last-child(2).col,
  .cid-v2Qoa6QaBj .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qoa6QaBj .col + .mbr-section-btn,
  .cid-v2Qoa6QaBj .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qoa6QaBj .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qoa6QaBj .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qoa6QaBj .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qoa6QaBj .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qoa6QaBj .form-group {
  max-width: 220px;
}
.cid-v2Qoa6QaBj .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qoa6QaBj .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qoa6QaBj .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qoa6QaBj .mbr-text {
  color: #444;
}
.cid-v2Qoa6QaBj h5 {
  margin-bottom: 0;
}
.cid-v2Qoa6QaBj .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qoa6QaBj .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qoa6QaBj .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qoa6QaBj .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qoa6QaBj .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qoa6QaBj .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qoa6QaBj .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qoa6QaBj .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qoa6QaBj .media-container-row > div {
  padding: 0px;
}
.cid-v2Qoa6QaBj .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qoa6QaBj .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qoa6QaBj .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qoa6QaBj .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qoa6QaBj .social-list,
  .cid-v2Qoa6QaBj .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qoa6QaBj h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qoa6QaBj .form-group {
    max-width: 180px;
  }
}
.cid-v2Qoa6QaBj .links span {
  color: #9e9e9e;
}
.cid-v2Qoa6QaBj .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qoa6QaBj .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sU7QxqlPAC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sU7QxqlPAC .line {
  background-color: #747b4c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v2Qo5CtzDh {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qo5CtzDh .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qo5CtzDh .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qo5CtzDh .col + .mbr-section-btn .btn,
.cid-v2Qo5CtzDh .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qo5CtzDh .col + .mbr-section-btn .btn,
  .cid-v2Qo5CtzDh .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qo5CtzDh .dragArea > *:nth-last-child(2).col,
  .cid-v2Qo5CtzDh .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qo5CtzDh .col + .mbr-section-btn,
  .cid-v2Qo5CtzDh .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qo5CtzDh .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qo5CtzDh .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qo5CtzDh .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qo5CtzDh .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qo5CtzDh .form-group {
  max-width: 220px;
}
.cid-v2Qo5CtzDh .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qo5CtzDh .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qo5CtzDh .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qo5CtzDh .mbr-text {
  color: #444;
}
.cid-v2Qo5CtzDh h5 {
  margin-bottom: 0;
}
.cid-v2Qo5CtzDh .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qo5CtzDh .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qo5CtzDh .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qo5CtzDh .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qo5CtzDh .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qo5CtzDh .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qo5CtzDh .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qo5CtzDh .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qo5CtzDh .media-container-row > div {
  padding: 0px;
}
.cid-v2Qo5CtzDh .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qo5CtzDh .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qo5CtzDh .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qo5CtzDh .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qo5CtzDh .social-list,
  .cid-v2Qo5CtzDh .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qo5CtzDh h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qo5CtzDh .form-group {
    max-width: 180px;
  }
}
.cid-v2Qo5CtzDh .links span {
  color: #9e9e9e;
}
.cid-v2Qo5CtzDh .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qo5CtzDh .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-1v {
  /* Type valid CSS here */
}
#custom-html-1v div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1v p {
  font-size: 60px;
  color: #777;
}
.cid-sMoNTicisU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sMoNTicisU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sMoNTicisU .row {
  flex-direction: row-reverse;
}
.cid-sMoNTicisU img {
  width: 100%;
}
.cid-v2QoUaRFKR {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QoUaRFKR .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QoUaRFKR .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QoUaRFKR .col + .mbr-section-btn .btn,
.cid-v2QoUaRFKR .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QoUaRFKR .col + .mbr-section-btn .btn,
  .cid-v2QoUaRFKR .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QoUaRFKR .dragArea > *:nth-last-child(2).col,
  .cid-v2QoUaRFKR .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QoUaRFKR .col + .mbr-section-btn,
  .cid-v2QoUaRFKR .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QoUaRFKR .dragArea {
    flex-direction: column;
  }
}
.cid-v2QoUaRFKR .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QoUaRFKR .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QoUaRFKR .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QoUaRFKR .form-group {
  max-width: 220px;
}
.cid-v2QoUaRFKR .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QoUaRFKR .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QoUaRFKR .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QoUaRFKR .mbr-text {
  color: #444;
}
.cid-v2QoUaRFKR h5 {
  margin-bottom: 0;
}
.cid-v2QoUaRFKR .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QoUaRFKR .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QoUaRFKR .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QoUaRFKR .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QoUaRFKR .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QoUaRFKR .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QoUaRFKR .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QoUaRFKR .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QoUaRFKR .media-container-row > div {
  padding: 0px;
}
.cid-v2QoUaRFKR .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QoUaRFKR .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QoUaRFKR .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QoUaRFKR .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QoUaRFKR .social-list,
  .cid-v2QoUaRFKR .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QoUaRFKR h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QoUaRFKR .form-group {
    max-width: 180px;
  }
}
.cid-v2QoUaRFKR .links span {
  color: #9e9e9e;
}
.cid-v2QoUaRFKR .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QoUaRFKR .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7qchNI0qq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvnqofDLsM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnqofDLsM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnqofDLsM .row {
  flex-direction: row-reverse;
}
.cid-tvnqofDLsM img {
  width: 100%;
}
.cid-v2Qo2bp0iX {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qo2bp0iX .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qo2bp0iX .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qo2bp0iX .col + .mbr-section-btn .btn,
.cid-v2Qo2bp0iX .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qo2bp0iX .col + .mbr-section-btn .btn,
  .cid-v2Qo2bp0iX .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qo2bp0iX .dragArea > *:nth-last-child(2).col,
  .cid-v2Qo2bp0iX .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qo2bp0iX .col + .mbr-section-btn,
  .cid-v2Qo2bp0iX .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qo2bp0iX .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qo2bp0iX .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qo2bp0iX .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qo2bp0iX .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qo2bp0iX .form-group {
  max-width: 220px;
}
.cid-v2Qo2bp0iX .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qo2bp0iX .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qo2bp0iX .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qo2bp0iX .mbr-text {
  color: #444;
}
.cid-v2Qo2bp0iX h5 {
  margin-bottom: 0;
}
.cid-v2Qo2bp0iX .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qo2bp0iX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qo2bp0iX .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qo2bp0iX .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qo2bp0iX .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qo2bp0iX .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qo2bp0iX .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qo2bp0iX .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qo2bp0iX .media-container-row > div {
  padding: 0px;
}
.cid-v2Qo2bp0iX .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qo2bp0iX .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qo2bp0iX .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qo2bp0iX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qo2bp0iX .social-list,
  .cid-v2Qo2bp0iX .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qo2bp0iX h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qo2bp0iX .form-group {
    max-width: 180px;
  }
}
.cid-v2Qo2bp0iX .links span {
  color: #9e9e9e;
}
.cid-v2Qo2bp0iX .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qo2bp0iX .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubmJUtPqtW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubmJUtPqtW .mbr-section-title {
  color: #747b4c;
}
.cid-ubmJUtPqtW .mbr-section-subtitle {
  text-align: left;
}
.cid-t7wKNAikWx {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t7wKNAikWx .mbr-text {
  margin: 0;
}
.cid-t7wKNAikWx .text-element {
  padding: 2rem;
  background-color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-t7wKNAikWx .row-element,
.cid-t7wKNAikWx .image-element {
  padding: 0;
}
.cid-t7wKNAikWx .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t7wKNAikWx .image-element .img-wrap {
  width: 100% !important;
}
.cid-t7wKNAikWx .image-element .img-wrap img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-t7wKNAikWx .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t7wKNAikWx .carousel-item.active,
.cid-t7wKNAikWx .carousel-item-next,
.cid-t7wKNAikWx .carousel-item-prev {
  display: flex;
}
.cid-t7wKNAikWx .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
}
.cid-t7wKNAikWx .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #747b4c;
}
.cid-t7wKNAikWx .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-t7wKNAikWx .carousel-indicators li:hover {
  opacity: 1;
}
.cid-t7wKNAikWx .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-t7wKNAikWx .carousel-controls {
    display: block;
  }
  .cid-t7wKNAikWx .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-t7wKNAikWx .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-t7wKNAikWx .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-t7wKNAikWx .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-t7wKNAikWx .text-element {
    padding: 1rem;
  }
  .cid-t7wKNAikWx .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t7wKNAikWx .image-element {
    min-width: 50%;
  }
  .cid-t7wKNAikWx .media-container-row {
    width: 100%;
  }
}
.cid-t7wKOmQr4j {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t7wKOmQr4j .mbr-text {
  margin: 0;
}
.cid-t7wKOmQr4j .text-element {
  padding: 2rem;
  background-color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-t7wKOmQr4j .row-element,
.cid-t7wKOmQr4j .image-element {
  padding: 0;
}
.cid-t7wKOmQr4j .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t7wKOmQr4j .image-element .img-wrap {
  width: 100% !important;
}
.cid-t7wKOmQr4j .image-element .img-wrap img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-t7wKOmQr4j .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t7wKOmQr4j .carousel-item.active,
.cid-t7wKOmQr4j .carousel-item-next,
.cid-t7wKOmQr4j .carousel-item-prev {
  display: flex;
}
.cid-t7wKOmQr4j .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
}
.cid-t7wKOmQr4j .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #747b4c;
}
.cid-t7wKOmQr4j .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-t7wKOmQr4j .carousel-indicators li:hover {
  opacity: 1;
}
.cid-t7wKOmQr4j .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-t7wKOmQr4j .carousel-controls {
    display: block;
  }
  .cid-t7wKOmQr4j .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-t7wKOmQr4j .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-t7wKOmQr4j .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-t7wKOmQr4j .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-t7wKOmQr4j .text-element {
    padding: 1rem;
  }
  .cid-t7wKOmQr4j .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t7wKOmQr4j .image-element {
    min-width: 50%;
  }
  .cid-t7wKOmQr4j .media-container-row {
    width: 100%;
  }
}
.cid-ubmJnuH2bF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t8mzzCRHKe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t800fxRnl2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t800fxRnl2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t800fxRnl2 .row {
  flex-direction: row-reverse;
}
.cid-t800fxRnl2 img {
  width: 100%;
}
.cid-v2QnWprobp {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QnWprobp .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QnWprobp .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QnWprobp .col + .mbr-section-btn .btn,
.cid-v2QnWprobp .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QnWprobp .col + .mbr-section-btn .btn,
  .cid-v2QnWprobp .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QnWprobp .dragArea > *:nth-last-child(2).col,
  .cid-v2QnWprobp .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QnWprobp .col + .mbr-section-btn,
  .cid-v2QnWprobp .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QnWprobp .dragArea {
    flex-direction: column;
  }
}
.cid-v2QnWprobp .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QnWprobp .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QnWprobp .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QnWprobp .form-group {
  max-width: 220px;
}
.cid-v2QnWprobp .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QnWprobp .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QnWprobp .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QnWprobp .mbr-text {
  color: #444;
}
.cid-v2QnWprobp h5 {
  margin-bottom: 0;
}
.cid-v2QnWprobp .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QnWprobp .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QnWprobp .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QnWprobp .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QnWprobp .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QnWprobp .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QnWprobp .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QnWprobp .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QnWprobp .media-container-row > div {
  padding: 0px;
}
.cid-v2QnWprobp .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QnWprobp .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QnWprobp .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QnWprobp .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QnWprobp .social-list,
  .cid-v2QnWprobp .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QnWprobp h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QnWprobp .form-group {
    max-width: 180px;
  }
}
.cid-v2QnWprobp .links span {
  color: #9e9e9e;
}
.cid-v2QnWprobp .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QnWprobp .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txV3qMaBBM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txQureM0xs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txQtK23Jes {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-txQtK23Jes .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-txQtK23Jes .row {
  flex-direction: row-reverse;
}
.cid-txQtK23Jes img {
  width: 100%;
}
.cid-ty2cQow1Sd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7wy8wsm3S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t7wy8wsm3S img,
.cid-t7wy8wsm3S .item-img {
  width: 100%;
}
.cid-t7wy8wsm3S .item:focus,
.cid-t7wy8wsm3S span:focus {
  outline: none;
}
.cid-t7wy8wsm3S .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t7wy8wsm3S .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t7wy8wsm3S .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t7wy8wsm3S .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t7wy8wsm3S .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t7wy8wsm3S .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t7wy8wsm3S .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t7wy8wsm3S .mbr-section-title {
  color: #232323;
}
.cid-t7wy8wsm3S .mbr-text,
.cid-t7wy8wsm3S .mbr-section-btn {
  text-align: left;
}
.cid-t7wy8wsm3S .item-title {
  text-align: left;
}
.cid-t7wy8wsm3S .item-subtitle {
  text-align: left;
}
.cid-t7ZXLAzWtA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t7ZXLAzWtA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7ZXLAzWtA .row {
  flex-direction: row-reverse;
}
.cid-t7ZXLAzWtA img {
  width: 100%;
}
.cid-v2QnQ6Pp6S {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QnQ6Pp6S .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QnQ6Pp6S .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QnQ6Pp6S .col + .mbr-section-btn .btn,
.cid-v2QnQ6Pp6S .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QnQ6Pp6S .col + .mbr-section-btn .btn,
  .cid-v2QnQ6Pp6S .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QnQ6Pp6S .dragArea > *:nth-last-child(2).col,
  .cid-v2QnQ6Pp6S .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QnQ6Pp6S .col + .mbr-section-btn,
  .cid-v2QnQ6Pp6S .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QnQ6Pp6S .dragArea {
    flex-direction: column;
  }
}
.cid-v2QnQ6Pp6S .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QnQ6Pp6S .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QnQ6Pp6S .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QnQ6Pp6S .form-group {
  max-width: 220px;
}
.cid-v2QnQ6Pp6S .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QnQ6Pp6S .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QnQ6Pp6S .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QnQ6Pp6S .mbr-text {
  color: #444;
}
.cid-v2QnQ6Pp6S h5 {
  margin-bottom: 0;
}
.cid-v2QnQ6Pp6S .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QnQ6Pp6S .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QnQ6Pp6S .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QnQ6Pp6S .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QnQ6Pp6S .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QnQ6Pp6S .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QnQ6Pp6S .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QnQ6Pp6S .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QnQ6Pp6S .media-container-row > div {
  padding: 0px;
}
.cid-v2QnQ6Pp6S .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QnQ6Pp6S .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QnQ6Pp6S .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QnQ6Pp6S .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QnQ6Pp6S .social-list,
  .cid-v2QnQ6Pp6S .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QnQ6Pp6S h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QnQ6Pp6S .form-group {
    max-width: 180px;
  }
}
.cid-v2QnQ6Pp6S .links span {
  color: #9e9e9e;
}
.cid-v2QnQ6Pp6S .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QnQ6Pp6S .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8nC0y0E8T {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvnqeGniSR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnqeGniSR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnqeGniSR .row {
  flex-direction: row-reverse;
}
.cid-tvnqeGniSR img {
  width: 100%;
}
.cid-v2QnKZWq4Q {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QnKZWq4Q .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QnKZWq4Q .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QnKZWq4Q .col + .mbr-section-btn .btn,
.cid-v2QnKZWq4Q .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QnKZWq4Q .col + .mbr-section-btn .btn,
  .cid-v2QnKZWq4Q .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QnKZWq4Q .dragArea > *:nth-last-child(2).col,
  .cid-v2QnKZWq4Q .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QnKZWq4Q .col + .mbr-section-btn,
  .cid-v2QnKZWq4Q .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QnKZWq4Q .dragArea {
    flex-direction: column;
  }
}
.cid-v2QnKZWq4Q .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QnKZWq4Q .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QnKZWq4Q .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QnKZWq4Q .form-group {
  max-width: 220px;
}
.cid-v2QnKZWq4Q .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QnKZWq4Q .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QnKZWq4Q .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QnKZWq4Q .mbr-text {
  color: #444;
}
.cid-v2QnKZWq4Q h5 {
  margin-bottom: 0;
}
.cid-v2QnKZWq4Q .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QnKZWq4Q .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QnKZWq4Q .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QnKZWq4Q .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QnKZWq4Q .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QnKZWq4Q .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QnKZWq4Q .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QnKZWq4Q .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QnKZWq4Q .media-container-row > div {
  padding: 0px;
}
.cid-v2QnKZWq4Q .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QnKZWq4Q .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QnKZWq4Q .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QnKZWq4Q .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QnKZWq4Q .social-list,
  .cid-v2QnKZWq4Q .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QnKZWq4Q h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QnKZWq4Q .form-group {
    max-width: 180px;
  }
}
.cid-v2QnKZWq4Q .links span {
  color: #9e9e9e;
}
.cid-v2QnKZWq4Q .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QnKZWq4Q .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbjj8mRvZb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tbjj8mRvZb .mbr-text,
.cid-tbjj8mRvZb .ornament {
  text-align: left;
}
.cid-ucnZJcWTdy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucnZJcWTdy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucnZJcWTdy .row {
  flex-direction: row-reverse;
}
.cid-ucnZJcWTdy img {
  width: 100%;
}
.cid-v2QnEMWxVi {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QnEMWxVi .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QnEMWxVi .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QnEMWxVi .col + .mbr-section-btn .btn,
.cid-v2QnEMWxVi .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QnEMWxVi .col + .mbr-section-btn .btn,
  .cid-v2QnEMWxVi .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QnEMWxVi .dragArea > *:nth-last-child(2).col,
  .cid-v2QnEMWxVi .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QnEMWxVi .col + .mbr-section-btn,
  .cid-v2QnEMWxVi .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QnEMWxVi .dragArea {
    flex-direction: column;
  }
}
.cid-v2QnEMWxVi .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QnEMWxVi .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QnEMWxVi .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QnEMWxVi .form-group {
  max-width: 220px;
}
.cid-v2QnEMWxVi .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QnEMWxVi .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QnEMWxVi .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QnEMWxVi .mbr-text {
  color: #444;
}
.cid-v2QnEMWxVi h5 {
  margin-bottom: 0;
}
.cid-v2QnEMWxVi .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QnEMWxVi .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QnEMWxVi .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QnEMWxVi .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QnEMWxVi .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QnEMWxVi .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QnEMWxVi .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QnEMWxVi .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QnEMWxVi .media-container-row > div {
  padding: 0px;
}
.cid-v2QnEMWxVi .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QnEMWxVi .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QnEMWxVi .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QnEMWxVi .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QnEMWxVi .social-list,
  .cid-v2QnEMWxVi .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QnEMWxVi h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QnEMWxVi .form-group {
    max-width: 180px;
  }
}
.cid-v2QnEMWxVi .links span {
  color: #9e9e9e;
}
.cid-v2QnEMWxVi .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QnEMWxVi .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbjlSzvEWh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tbjlSzvEWh .mbr-text,
.cid-tbjlSzvEWh .ornament {
  text-align: left;
  color: #000000;
}
.cid-ucnZEMpMfw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucnZEMpMfw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucnZEMpMfw .row {
  flex-direction: row-reverse;
}
.cid-ucnZEMpMfw img {
  width: 100%;
}
.cid-v2QnzBHTz1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QnzBHTz1 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QnzBHTz1 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QnzBHTz1 .col + .mbr-section-btn .btn,
.cid-v2QnzBHTz1 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QnzBHTz1 .col + .mbr-section-btn .btn,
  .cid-v2QnzBHTz1 .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QnzBHTz1 .dragArea > *:nth-last-child(2).col,
  .cid-v2QnzBHTz1 .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QnzBHTz1 .col + .mbr-section-btn,
  .cid-v2QnzBHTz1 .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QnzBHTz1 .dragArea {
    flex-direction: column;
  }
}
.cid-v2QnzBHTz1 .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QnzBHTz1 .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QnzBHTz1 .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QnzBHTz1 .form-group {
  max-width: 220px;
}
.cid-v2QnzBHTz1 .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QnzBHTz1 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QnzBHTz1 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QnzBHTz1 .mbr-text {
  color: #444;
}
.cid-v2QnzBHTz1 h5 {
  margin-bottom: 0;
}
.cid-v2QnzBHTz1 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QnzBHTz1 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QnzBHTz1 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QnzBHTz1 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QnzBHTz1 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QnzBHTz1 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QnzBHTz1 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QnzBHTz1 .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QnzBHTz1 .media-container-row > div {
  padding: 0px;
}
.cid-v2QnzBHTz1 .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QnzBHTz1 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QnzBHTz1 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QnzBHTz1 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QnzBHTz1 .social-list,
  .cid-v2QnzBHTz1 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QnzBHTz1 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QnzBHTz1 .form-group {
    max-width: 180px;
  }
}
.cid-v2QnzBHTz1 .links span {
  color: #9e9e9e;
}
.cid-v2QnzBHTz1 .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QnzBHTz1 .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tc4LeoTpgf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tc4LeoTpgf .mbr-section-subtitle {
  color: #747b4c;
}
.cid-tc4LeoTpgf .mbr-text {
  color: #747b4c;
  text-align: center;
}
.cid-tc4LeoTpgf .mbr-section-title {
  color: #747b4c;
}
#custom-html-8a {
  /* Type valid CSS here */
}
#custom-html-8a div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-8a p {
  font-size: 60px;
  color: #777;
}
.cid-tvnq3cpK6V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnq3cpK6V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnq3cpK6V .row {
  flex-direction: row-reverse;
}
.cid-tvnq3cpK6V img {
  width: 100%;
}
.cid-v2QnuBcR4L {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QnuBcR4L .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QnuBcR4L .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QnuBcR4L .col + .mbr-section-btn .btn,
.cid-v2QnuBcR4L .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QnuBcR4L .col + .mbr-section-btn .btn,
  .cid-v2QnuBcR4L .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QnuBcR4L .dragArea > *:nth-last-child(2).col,
  .cid-v2QnuBcR4L .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QnuBcR4L .col + .mbr-section-btn,
  .cid-v2QnuBcR4L .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QnuBcR4L .dragArea {
    flex-direction: column;
  }
}
.cid-v2QnuBcR4L .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QnuBcR4L .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QnuBcR4L .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QnuBcR4L .form-group {
  max-width: 220px;
}
.cid-v2QnuBcR4L .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QnuBcR4L .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QnuBcR4L .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QnuBcR4L .mbr-text {
  color: #444;
}
.cid-v2QnuBcR4L h5 {
  margin-bottom: 0;
}
.cid-v2QnuBcR4L .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QnuBcR4L .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QnuBcR4L .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QnuBcR4L .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QnuBcR4L .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QnuBcR4L .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QnuBcR4L .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QnuBcR4L .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QnuBcR4L .media-container-row > div {
  padding: 0px;
}
.cid-v2QnuBcR4L .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QnuBcR4L .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QnuBcR4L .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QnuBcR4L .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QnuBcR4L .social-list,
  .cid-v2QnuBcR4L .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QnuBcR4L h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QnuBcR4L .form-group {
    max-width: 180px;
  }
}
.cid-v2QnuBcR4L .links span {
  color: #9e9e9e;
}
.cid-v2QnuBcR4L .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QnuBcR4L .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiPvwRf0f1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-tiPvwRf0f1 .mbr-text {
  color: #c1c1c1;
}
.cid-tiPvwRf0f1 H3 {
  text-align: center;
}
.cid-tiPx8hH4aw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tiPx8hH4aw .mbr-figure {
  margin: 0 auto;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tiPx8hH4aw .mbr-figure img {
  height: 500px;
  width: 500px;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 100%;
}
.cid-tiPx8hH4aw .mbr-text,
.cid-tiPx8hH4aw .mbr-section-btn {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tiPx8hH4aw img {
    height: 250px!important;
    width: 250px!important;
  }
}
.cid-tiPy1wWr75 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tiPy1wWr75 img,
.cid-tiPy1wWr75 .item-img {
  width: 100%;
}
.cid-tiPy1wWr75 .item:focus,
.cid-tiPy1wWr75 span:focus {
  outline: none;
}
.cid-tiPy1wWr75 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tiPy1wWr75 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tiPy1wWr75 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tiPy1wWr75 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tiPy1wWr75 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tiPy1wWr75 .mbr-section-title {
  color: #232323;
}
.cid-tiPy1wWr75 .mbr-text,
.cid-tiPy1wWr75 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tiPy1wWr75 .item-title {
  text-align: left;
}
.cid-tiPy1wWr75 .item-subtitle {
  text-align: center;
  color: #747b4c;
}
.cid-tiPBgeaQDM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tiPD8JKoXV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-tiPD8JKoXV .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-tiPD8JKoXV .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tiPD8JKoXV .text-content {
  padding-right: 1.5rem;
}
.cid-tiPD8JKoXV .mbr-text,
.cid-tiPD8JKoXV .mbr-section-btn {
  color: #000000;
}
.cid-tiPD8JKoXV .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(147, 153, 161, 0.3);
  box-shadow: 0px 0px 30px rgba(147, 153, 161, 0.3);
  border-radius: .25rem;
}
.cid-tiPD8JKoXV .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-tiPD8JKoXV .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tiPD8JKoXV .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tiPD8JKoXV .main-row {
    margin: 0;
  }
  .cid-tiPD8JKoXV .mbr-section-title,
  .cid-tiPD8JKoXV .mbr-text,
  .cid-tiPD8JKoXV .list,
  .cid-tiPD8JKoXV .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tiPD8JKoXV .text-content {
    padding: 0;
  }
}
.cid-tiPD8JKoXV .mbr-section-title DIV {
  text-align: left;
}
.cid-tiPHcGe7W7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tiPHcGe7W7 img,
.cid-tiPHcGe7W7 .item-img {
  width: 100%;
}
.cid-tiPHcGe7W7 .item:focus,
.cid-tiPHcGe7W7 span:focus {
  outline: none;
}
.cid-tiPHcGe7W7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tiPHcGe7W7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tiPHcGe7W7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tiPHcGe7W7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tiPHcGe7W7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tiPHcGe7W7 .mbr-section-title {
  color: #232323;
}
.cid-tiPHcGe7W7 .mbr-text,
.cid-tiPHcGe7W7 .mbr-section-btn {
  text-align: left;
}
.cid-tiPHcGe7W7 .item-title {
  text-align: left;
}
.cid-tiPHcGe7W7 .item-subtitle {
  text-align: center;
}
.cid-tiPKNTxllo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tiPECKgOjr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tiPM670yGy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tiPN9OEgqG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-v2QnptxoG8 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QnptxoG8 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QnptxoG8 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QnptxoG8 .col + .mbr-section-btn .btn,
.cid-v2QnptxoG8 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QnptxoG8 .col + .mbr-section-btn .btn,
  .cid-v2QnptxoG8 .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QnptxoG8 .dragArea > *:nth-last-child(2).col,
  .cid-v2QnptxoG8 .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QnptxoG8 .col + .mbr-section-btn,
  .cid-v2QnptxoG8 .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QnptxoG8 .dragArea {
    flex-direction: column;
  }
}
.cid-v2QnptxoG8 .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QnptxoG8 .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QnptxoG8 .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QnptxoG8 .form-group {
  max-width: 220px;
}
.cid-v2QnptxoG8 .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QnptxoG8 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QnptxoG8 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QnptxoG8 .mbr-text {
  color: #444;
}
.cid-v2QnptxoG8 h5 {
  margin-bottom: 0;
}
.cid-v2QnptxoG8 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QnptxoG8 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QnptxoG8 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QnptxoG8 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QnptxoG8 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QnptxoG8 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QnptxoG8 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QnptxoG8 .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QnptxoG8 .media-container-row > div {
  padding: 0px;
}
.cid-v2QnptxoG8 .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QnptxoG8 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QnptxoG8 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QnptxoG8 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QnptxoG8 .social-list,
  .cid-v2QnptxoG8 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QnptxoG8 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QnptxoG8 .form-group {
    max-width: 180px;
  }
}
.cid-v2QnptxoG8 .links span {
  color: #9e9e9e;
}
.cid-v2QnptxoG8 .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QnptxoG8 .logo-title {
  text-align: center;
}
.cid-ucnZwDfuxM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucnZwDfuxM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucnZwDfuxM .row {
  flex-direction: row-reverse;
}
.cid-ucnZwDfuxM img {
  width: 100%;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvjhZvTWLf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tvjhZvTWLf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tvjhZvTWLf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tvjhZvTWLf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tvjhBfeT1H {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvjhBfeT1H img,
.cid-tvjhBfeT1H .item-img {
  width: 100%;
}
.cid-tvjhBfeT1H .item:focus,
.cid-tvjhBfeT1H span:focus {
  outline: none;
}
.cid-tvjhBfeT1H .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvjhBfeT1H .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvjhBfeT1H .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvjhBfeT1H .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvjhBfeT1H .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvjhBfeT1H .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tvjhBfeT1H .mbr-text,
.cid-tvjhBfeT1H .mbr-section-btn {
  text-align: left;
}
.cid-tvjhBfeT1H .item-title {
  text-align: left;
}
.cid-tvjhBfeT1H .item-subtitle {
  text-align: left;
}
#custom-html-94 {
  /* Type valid CSS here */
}
#custom-html-94 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-94 p {
  font-size: 60px;
  color: #777;
}
.cid-tuIpavgC6t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tuIpavgC6t .mbr-section-subtitle {
  color: #747b4c;
}
.cid-tvnpJb3amA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnpJb3amA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnpJb3amA .row {
  flex-direction: row-reverse;
}
.cid-tvnpJb3amA img {
  width: 100%;
}
.cid-tx4tFKfMD3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tx4tFKfMD3 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tx4tFKfMD3 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tx4tFKfMD3 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tx4tFKfMD3 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tx4tFKfMD3 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tx4tFKfMD3 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tx4tFKfMD3 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tx4tFKfMD3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-af {
  /* Type valid CSS here */
}
#custom-html-af div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-af p {
  font-size: 60px;
  color: #777;
}
.cid-tx4Auvvx94 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tx4Auvvx94 .mbr-section-subtitle {
  color: #747b4c;
}
.cid-tx4FGipTn1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tx4FGipTn1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tx4FGipTn1 .row {
  flex-direction: row-reverse;
}
.cid-tx4FGipTn1 img {
  width: 100%;
}
.cid-v2QndwQTNK {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QndwQTNK .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QndwQTNK .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QndwQTNK .col + .mbr-section-btn .btn,
.cid-v2QndwQTNK .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QndwQTNK .col + .mbr-section-btn .btn,
  .cid-v2QndwQTNK .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QndwQTNK .dragArea > *:nth-last-child(2).col,
  .cid-v2QndwQTNK .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QndwQTNK .col + .mbr-section-btn,
  .cid-v2QndwQTNK .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QndwQTNK .dragArea {
    flex-direction: column;
  }
}
.cid-v2QndwQTNK .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QndwQTNK .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QndwQTNK .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QndwQTNK .form-group {
  max-width: 220px;
}
.cid-v2QndwQTNK .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QndwQTNK .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QndwQTNK .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QndwQTNK .mbr-text {
  color: #444;
}
.cid-v2QndwQTNK h5 {
  margin-bottom: 0;
}
.cid-v2QndwQTNK .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QndwQTNK .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QndwQTNK .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QndwQTNK .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QndwQTNK .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QndwQTNK .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QndwQTNK .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QndwQTNK .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QndwQTNK .media-container-row > div {
  padding: 0px;
}
.cid-v2QndwQTNK .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QndwQTNK .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QndwQTNK .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QndwQTNK .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QndwQTNK .social-list,
  .cid-v2QndwQTNK .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QndwQTNK h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QndwQTNK .form-group {
    max-width: 180px;
  }
}
.cid-v2QndwQTNK .links span {
  color: #9e9e9e;
}
.cid-v2QndwQTNK .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QndwQTNK .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tviMHYCav1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-tviMHYCav1 svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tviMHYCav1 #e1_ellipse {
  fill: #bbbbbb !important;
}
.cid-tviMHYCav1 img {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
}
@media (max-width: 576px) {
  .cid-tviMHYCav1 img {
    width: 100%;
    left: 0;
  }
}
.cid-tviMHYCav1 H1 {
  color: #000000;
}
.cid-tviMHYCav1 .mbr-text,
.cid-tviMHYCav1 .mbr-section-btn {
  color: #000000;
}
.cid-tvni7HQ91Z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvni7HQ91Z img,
.cid-tvni7HQ91Z .item-img {
  width: 100%;
}
.cid-tvni7HQ91Z .item:focus,
.cid-tvni7HQ91Z span:focus {
  outline: none;
}
.cid-tvni7HQ91Z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvni7HQ91Z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvni7HQ91Z .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvni7HQ91Z .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvni7HQ91Z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvni7HQ91Z .mbr-section-title {
  color: #232323;
}
.cid-tvni7HQ91Z .mbr-text,
.cid-tvni7HQ91Z .mbr-section-btn {
  text-align: left;
}
.cid-tvni7HQ91Z .item-title {
  text-align: left;
}
.cid-tvni7HQ91Z .item-subtitle {
  text-align: left;
}
.cid-tuIqcvURX8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
#custom-html-99 {
  /* Type valid CSS here */
}
#custom-html-99 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-99 p {
  font-size: 60px;
  color: #777;
}
.cid-tvnilUdJnU {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvnilUdJnU img,
.cid-tvnilUdJnU .item-img {
  width: 100%;
}
.cid-tvnilUdJnU .item:focus,
.cid-tvnilUdJnU span:focus {
  outline: none;
}
.cid-tvnilUdJnU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvnilUdJnU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvnilUdJnU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tvnilUdJnU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvnilUdJnU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tvnilUdJnU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tvnilUdJnU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvnilUdJnU .mbr-section-title {
  color: #232323;
}
.cid-tvnilUdJnU .mbr-text,
.cid-tvnilUdJnU .mbr-section-btn {
  text-align: left;
}
.cid-tvnilUdJnU .item-title {
  text-align: left;
  color: #747b4c;
}
.cid-tvnilUdJnU .item-subtitle {
  text-align: left;
}
.cid-tvnpSc3RY4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnpSc3RY4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnpSc3RY4 .row {
  flex-direction: row-reverse;
}
.cid-tvnpSc3RY4 img {
  width: 100%;
}
.cid-v2Qn1nAMe6 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qn1nAMe6 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qn1nAMe6 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qn1nAMe6 .col + .mbr-section-btn .btn,
.cid-v2Qn1nAMe6 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qn1nAMe6 .col + .mbr-section-btn .btn,
  .cid-v2Qn1nAMe6 .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qn1nAMe6 .dragArea > *:nth-last-child(2).col,
  .cid-v2Qn1nAMe6 .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qn1nAMe6 .col + .mbr-section-btn,
  .cid-v2Qn1nAMe6 .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qn1nAMe6 .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qn1nAMe6 .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qn1nAMe6 .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qn1nAMe6 .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qn1nAMe6 .form-group {
  max-width: 220px;
}
.cid-v2Qn1nAMe6 .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qn1nAMe6 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qn1nAMe6 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qn1nAMe6 .mbr-text {
  color: #444;
}
.cid-v2Qn1nAMe6 h5 {
  margin-bottom: 0;
}
.cid-v2Qn1nAMe6 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qn1nAMe6 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qn1nAMe6 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qn1nAMe6 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qn1nAMe6 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qn1nAMe6 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qn1nAMe6 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qn1nAMe6 .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qn1nAMe6 .media-container-row > div {
  padding: 0px;
}
.cid-v2Qn1nAMe6 .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qn1nAMe6 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qn1nAMe6 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qn1nAMe6 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qn1nAMe6 .social-list,
  .cid-v2Qn1nAMe6 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qn1nAMe6 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qn1nAMe6 .form-group {
    max-width: 180px;
  }
}
.cid-v2Qn1nAMe6 .links span {
  color: #9e9e9e;
}
.cid-v2Qn1nAMe6 .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qn1nAMe6 .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvnFg5b4fz {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tvnFg5b4fz .mbr-text {
  color: #c1c1c1;
}
#custom-html-aa {
  /* Type valid CSS here */
}
#custom-html-aa div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-aa p {
  font-size: 60px;
  color: #777;
}
.cid-tvnDzrxYU8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnDzrxYU8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnDzrxYU8 .row {
  flex-direction: row-reverse;
}
.cid-tvnDzrxYU8 img {
  width: 100%;
}
#custom-html-a5 {
  /* Type valid CSS here */
}
#custom-html-a5 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-a5 p {
  font-size: 60px;
  color: #777;
}
.cid-tvnDGoiY23 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnDGoiY23 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnDGoiY23 .row {
  flex-direction: row-reverse;
}
.cid-tvnDGoiY23 img {
  width: 100%;
}
#custom-html-a7 {
  /* Type valid CSS here */
}
#custom-html-a7 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-a7 p {
  font-size: 60px;
  color: #777;
}
.cid-tvnEvebssJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnEvebssJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnEvebssJ .row {
  flex-direction: row-reverse;
}
.cid-tvnEvebssJ img {
  width: 100%;
}
#custom-html-a9 {
  /* Type valid CSS here */
}
#custom-html-a9 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-a9 p {
  font-size: 60px;
  color: #777;
}
.cid-tvnI6bARoP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvnI6bARoP img,
.cid-tvnI6bARoP .item-img {
  width: 100%;
}
.cid-tvnI6bARoP .item:focus,
.cid-tvnI6bARoP span:focus {
  outline: none;
}
.cid-tvnI6bARoP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvnI6bARoP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvnI6bARoP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvnI6bARoP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvnI6bARoP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvnI6bARoP .mbr-section-title {
  color: #232323;
}
.cid-tvnI6bARoP .mbr-text,
.cid-tvnI6bARoP .mbr-section-btn {
  text-align: left;
}
.cid-tvnI6bARoP .item-title {
  text-align: left;
}
.cid-tvnI6bARoP .item-subtitle {
  text-align: left;
}
.cid-tvnvKTHckx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvnvKTHckx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvnvKTHckx .row {
  flex-direction: row-reverse;
}
.cid-tvnvKTHckx img {
  width: 100%;
}
.cid-v2QmWA3Qzz {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QmWA3Qzz .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QmWA3Qzz .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QmWA3Qzz .col + .mbr-section-btn .btn,
.cid-v2QmWA3Qzz .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QmWA3Qzz .col + .mbr-section-btn .btn,
  .cid-v2QmWA3Qzz .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QmWA3Qzz .dragArea > *:nth-last-child(2).col,
  .cid-v2QmWA3Qzz .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QmWA3Qzz .col + .mbr-section-btn,
  .cid-v2QmWA3Qzz .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QmWA3Qzz .dragArea {
    flex-direction: column;
  }
}
.cid-v2QmWA3Qzz .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QmWA3Qzz .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QmWA3Qzz .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QmWA3Qzz .form-group {
  max-width: 220px;
}
.cid-v2QmWA3Qzz .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QmWA3Qzz .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QmWA3Qzz .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QmWA3Qzz .mbr-text {
  color: #444;
}
.cid-v2QmWA3Qzz h5 {
  margin-bottom: 0;
}
.cid-v2QmWA3Qzz .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QmWA3Qzz .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QmWA3Qzz .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QmWA3Qzz .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QmWA3Qzz .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QmWA3Qzz .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QmWA3Qzz .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QmWA3Qzz .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QmWA3Qzz .media-container-row > div {
  padding: 0px;
}
.cid-v2QmWA3Qzz .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QmWA3Qzz .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QmWA3Qzz .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QmWA3Qzz .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QmWA3Qzz .social-list,
  .cid-v2QmWA3Qzz .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QmWA3Qzz h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QmWA3Qzz .form-group {
    max-width: 180px;
  }
}
.cid-v2QmWA3Qzz .links span {
  color: #9e9e9e;
}
.cid-v2QmWA3Qzz .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QmWA3Qzz .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHVsDaSKiG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tHVsDaSKiG .line {
  background-color: #747b4c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v2QmLaJO8W {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QmLaJO8W .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QmLaJO8W .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QmLaJO8W .col + .mbr-section-btn .btn,
.cid-v2QmLaJO8W .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QmLaJO8W .col + .mbr-section-btn .btn,
  .cid-v2QmLaJO8W .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QmLaJO8W .dragArea > *:nth-last-child(2).col,
  .cid-v2QmLaJO8W .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QmLaJO8W .col + .mbr-section-btn,
  .cid-v2QmLaJO8W .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QmLaJO8W .dragArea {
    flex-direction: column;
  }
}
.cid-v2QmLaJO8W .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QmLaJO8W .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QmLaJO8W .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QmLaJO8W .form-group {
  max-width: 220px;
}
.cid-v2QmLaJO8W .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QmLaJO8W .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QmLaJO8W .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QmLaJO8W .mbr-text {
  color: #444;
}
.cid-v2QmLaJO8W h5 {
  margin-bottom: 0;
}
.cid-v2QmLaJO8W .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QmLaJO8W .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QmLaJO8W .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QmLaJO8W .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QmLaJO8W .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QmLaJO8W .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QmLaJO8W .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QmLaJO8W .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QmLaJO8W .media-container-row > div {
  padding: 0px;
}
.cid-v2QmLaJO8W .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QmLaJO8W .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QmLaJO8W .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QmLaJO8W .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QmLaJO8W .social-list,
  .cid-v2QmLaJO8W .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QmLaJO8W h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QmLaJO8W .form-group {
    max-width: 180px;
  }
}
.cid-v2QmLaJO8W .links span {
  color: #9e9e9e;
}
.cid-v2QmLaJO8W .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QmLaJO8W .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-s {
  /* Type valid CSS here */
}
#custom-html-s div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-s p {
  font-size: 60px;
  color: #777;
}
.cid-sJ0kLnWi5A {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sJ0kLnWi5A .mbr-section-subtitle {
  color: #747b4c;
  text-align: center;
}
.cid-sJ0kLnWi5A .mbr-section-title {
  color: #747b4c;
}
.cid-sMokA3TCFc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0TrlOyLKq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u0TrlOyLKq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u0TrlOyLKq .row {
  flex-direction: row-reverse;
}
.cid-u0TrlOyLKq img {
  width: 100%;
}
.cid-u0TpF0vuHy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-u0TpF0vuHy .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u0TpF0vuHy .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u0TpF0vuHy .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u0TpF0vuHy .card-wrapper {
    padding: 4rem;
  }
}
.cid-uco0iGhYqw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uco0iGhYqw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uco0iGhYqw .row {
  flex-direction: row-reverse;
}
.cid-uco0iGhYqw img {
  width: 100%;
}
.cid-v2QptnQ7N9 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QptnQ7N9 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QptnQ7N9 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QptnQ7N9 .col + .mbr-section-btn .btn,
.cid-v2QptnQ7N9 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QptnQ7N9 .col + .mbr-section-btn .btn,
  .cid-v2QptnQ7N9 .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QptnQ7N9 .dragArea > *:nth-last-child(2).col,
  .cid-v2QptnQ7N9 .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QptnQ7N9 .col + .mbr-section-btn,
  .cid-v2QptnQ7N9 .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QptnQ7N9 .dragArea {
    flex-direction: column;
  }
}
.cid-v2QptnQ7N9 .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QptnQ7N9 .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QptnQ7N9 .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QptnQ7N9 .form-group {
  max-width: 220px;
}
.cid-v2QptnQ7N9 .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QptnQ7N9 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QptnQ7N9 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QptnQ7N9 .mbr-text {
  color: #444;
}
.cid-v2QptnQ7N9 h5 {
  margin-bottom: 0;
}
.cid-v2QptnQ7N9 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QptnQ7N9 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QptnQ7N9 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QptnQ7N9 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QptnQ7N9 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QptnQ7N9 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QptnQ7N9 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QptnQ7N9 .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QptnQ7N9 .media-container-row > div {
  padding: 0px;
}
.cid-v2QptnQ7N9 .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QptnQ7N9 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QptnQ7N9 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QptnQ7N9 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QptnQ7N9 .social-list,
  .cid-v2QptnQ7N9 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QptnQ7N9 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QptnQ7N9 .form-group {
    max-width: 180px;
  }
}
.cid-v2QptnQ7N9 .links span {
  color: #9e9e9e;
}
.cid-v2QptnQ7N9 .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QptnQ7N9 .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tInWH1OpOA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tInWHJWuWl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tInWHJWuWl .line {
  background-color: #747b4c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
#custom-html-bm {
  /* Type valid CSS here */
}
#custom-html-bm div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bm p {
  font-size: 60px;
  color: #777;
}
.cid-ucnZiWSKko {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucnZiWSKko .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucnZiWSKko .row {
  flex-direction: row-reverse;
}
.cid-ucnZiWSKko img {
  width: 100%;
}
.cid-v2QmEK7VFu {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QmEK7VFu .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QmEK7VFu .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QmEK7VFu .col + .mbr-section-btn .btn,
.cid-v2QmEK7VFu .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QmEK7VFu .col + .mbr-section-btn .btn,
  .cid-v2QmEK7VFu .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QmEK7VFu .dragArea > *:nth-last-child(2).col,
  .cid-v2QmEK7VFu .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QmEK7VFu .col + .mbr-section-btn,
  .cid-v2QmEK7VFu .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QmEK7VFu .dragArea {
    flex-direction: column;
  }
}
.cid-v2QmEK7VFu .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QmEK7VFu .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QmEK7VFu .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QmEK7VFu .form-group {
  max-width: 220px;
}
.cid-v2QmEK7VFu .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QmEK7VFu .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QmEK7VFu .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QmEK7VFu .mbr-text {
  color: #444;
}
.cid-v2QmEK7VFu h5 {
  margin-bottom: 0;
}
.cid-v2QmEK7VFu .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QmEK7VFu .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QmEK7VFu .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QmEK7VFu .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QmEK7VFu .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QmEK7VFu .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QmEK7VFu .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QmEK7VFu .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QmEK7VFu .media-container-row > div {
  padding: 0px;
}
.cid-v2QmEK7VFu .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QmEK7VFu .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QmEK7VFu .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QmEK7VFu .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QmEK7VFu .social-list,
  .cid-v2QmEK7VFu .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QmEK7VFu h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QmEK7VFu .form-group {
    max-width: 180px;
  }
}
.cid-v2QmEK7VFu .links span {
  color: #9e9e9e;
}
.cid-v2QmEK7VFu .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QmEK7VFu .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-bg {
  /* Type valid CSS here */
}
#custom-html-bg div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bg p {
  font-size: 60px;
  color: #777;
}
#custom-html-bh {
  /* Type valid CSS here */
}
#custom-html-bh div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bh p {
  font-size: 60px;
  color: #777;
}
.cid-v2QmzwAY4O {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QmzwAY4O .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QmzwAY4O .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QmzwAY4O .col + .mbr-section-btn .btn,
.cid-v2QmzwAY4O .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QmzwAY4O .col + .mbr-section-btn .btn,
  .cid-v2QmzwAY4O .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QmzwAY4O .dragArea > *:nth-last-child(2).col,
  .cid-v2QmzwAY4O .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QmzwAY4O .col + .mbr-section-btn,
  .cid-v2QmzwAY4O .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QmzwAY4O .dragArea {
    flex-direction: column;
  }
}
.cid-v2QmzwAY4O .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QmzwAY4O .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QmzwAY4O .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QmzwAY4O .form-group {
  max-width: 220px;
}
.cid-v2QmzwAY4O .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QmzwAY4O .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QmzwAY4O .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QmzwAY4O .mbr-text {
  color: #444;
}
.cid-v2QmzwAY4O h5 {
  margin-bottom: 0;
}
.cid-v2QmzwAY4O .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QmzwAY4O .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QmzwAY4O .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QmzwAY4O .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QmzwAY4O .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QmzwAY4O .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QmzwAY4O .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QmzwAY4O .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QmzwAY4O .media-container-row > div {
  padding: 0px;
}
.cid-v2QmzwAY4O .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QmzwAY4O .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QmzwAY4O .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QmzwAY4O .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QmzwAY4O .social-list,
  .cid-v2QmzwAY4O .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QmzwAY4O h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QmzwAY4O .form-group {
    max-width: 180px;
  }
}
.cid-v2QmzwAY4O .links span {
  color: #9e9e9e;
}
.cid-v2QmzwAY4O .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QmzwAY4O .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-be {
  /* Type valid CSS here */
}
#custom-html-be div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-be p {
  font-size: 60px;
  color: #777;
}
.cid-v2QmqVNWcC {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QmqVNWcC .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QmqVNWcC .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QmqVNWcC .col + .mbr-section-btn .btn,
.cid-v2QmqVNWcC .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QmqVNWcC .col + .mbr-section-btn .btn,
  .cid-v2QmqVNWcC .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QmqVNWcC .dragArea > *:nth-last-child(2).col,
  .cid-v2QmqVNWcC .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QmqVNWcC .col + .mbr-section-btn,
  .cid-v2QmqVNWcC .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QmqVNWcC .dragArea {
    flex-direction: column;
  }
}
.cid-v2QmqVNWcC .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QmqVNWcC .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QmqVNWcC .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QmqVNWcC .form-group {
  max-width: 220px;
}
.cid-v2QmqVNWcC .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QmqVNWcC .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QmqVNWcC .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QmqVNWcC .mbr-text {
  color: #444;
}
.cid-v2QmqVNWcC h5 {
  margin-bottom: 0;
}
.cid-v2QmqVNWcC .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QmqVNWcC .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QmqVNWcC .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QmqVNWcC .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QmqVNWcC .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QmqVNWcC .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QmqVNWcC .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QmqVNWcC .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QmqVNWcC .media-container-row > div {
  padding: 0px;
}
.cid-v2QmqVNWcC .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QmqVNWcC .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QmqVNWcC .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QmqVNWcC .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QmqVNWcC .social-list,
  .cid-v2QmqVNWcC .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QmqVNWcC h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QmqVNWcC .form-group {
    max-width: 180px;
  }
}
.cid-v2QmqVNWcC .links span {
  color: #9e9e9e;
}
.cid-v2QmqVNWcC .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QmqVNWcC .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-bk {
  /* Type valid CSS here */
}
#custom-html-bk div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bk p {
  font-size: 60px;
  color: #777;
}
.cid-v2Qmjbfw1k {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qmjbfw1k .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qmjbfw1k .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qmjbfw1k .col + .mbr-section-btn .btn,
.cid-v2Qmjbfw1k .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qmjbfw1k .col + .mbr-section-btn .btn,
  .cid-v2Qmjbfw1k .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qmjbfw1k .dragArea > *:nth-last-child(2).col,
  .cid-v2Qmjbfw1k .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qmjbfw1k .col + .mbr-section-btn,
  .cid-v2Qmjbfw1k .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qmjbfw1k .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qmjbfw1k .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qmjbfw1k .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qmjbfw1k .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qmjbfw1k .form-group {
  max-width: 220px;
}
.cid-v2Qmjbfw1k .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qmjbfw1k .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qmjbfw1k .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qmjbfw1k .mbr-text {
  color: #444;
}
.cid-v2Qmjbfw1k h5 {
  margin-bottom: 0;
}
.cid-v2Qmjbfw1k .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qmjbfw1k .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qmjbfw1k .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qmjbfw1k .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qmjbfw1k .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qmjbfw1k .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qmjbfw1k .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qmjbfw1k .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qmjbfw1k .media-container-row > div {
  padding: 0px;
}
.cid-v2Qmjbfw1k .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qmjbfw1k .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qmjbfw1k .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qmjbfw1k .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qmjbfw1k .social-list,
  .cid-v2Qmjbfw1k .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qmjbfw1k h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qmjbfw1k .form-group {
    max-width: 180px;
  }
}
.cid-v2Qmjbfw1k .links span {
  color: #9e9e9e;
}
.cid-v2Qmjbfw1k .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qmjbfw1k .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSbX5BqQZm {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ucnZ43nx1A {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucnZ43nx1A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucnZ43nx1A .row {
  flex-direction: row-reverse;
}
.cid-ucnZ43nx1A img {
  width: 100%;
}
.cid-v2Qme5OIzS {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qme5OIzS .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qme5OIzS .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qme5OIzS .col + .mbr-section-btn .btn,
.cid-v2Qme5OIzS .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qme5OIzS .col + .mbr-section-btn .btn,
  .cid-v2Qme5OIzS .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qme5OIzS .dragArea > *:nth-last-child(2).col,
  .cid-v2Qme5OIzS .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qme5OIzS .col + .mbr-section-btn,
  .cid-v2Qme5OIzS .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qme5OIzS .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qme5OIzS .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qme5OIzS .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qme5OIzS .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qme5OIzS .form-group {
  max-width: 220px;
}
.cid-v2Qme5OIzS .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qme5OIzS .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qme5OIzS .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qme5OIzS .mbr-text {
  color: #444;
}
.cid-v2Qme5OIzS h5 {
  margin-bottom: 0;
}
.cid-v2Qme5OIzS .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qme5OIzS .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qme5OIzS .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qme5OIzS .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qme5OIzS .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qme5OIzS .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qme5OIzS .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qme5OIzS .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qme5OIzS .media-container-row > div {
  padding: 0px;
}
.cid-v2Qme5OIzS .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qme5OIzS .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qme5OIzS .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qme5OIzS .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qme5OIzS .social-list,
  .cid-v2Qme5OIzS .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qme5OIzS h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qme5OIzS .form-group {
    max-width: 180px;
  }
}
.cid-v2Qme5OIzS .links span {
  color: #9e9e9e;
}
.cid-v2Qme5OIzS .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qme5OIzS .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaiPu1TALO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaiPu1TALO .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-v2Qm72uxK0 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qm72uxK0 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qm72uxK0 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qm72uxK0 .col + .mbr-section-btn .btn,
.cid-v2Qm72uxK0 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qm72uxK0 .col + .mbr-section-btn .btn,
  .cid-v2Qm72uxK0 .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qm72uxK0 .dragArea > *:nth-last-child(2).col,
  .cid-v2Qm72uxK0 .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qm72uxK0 .col + .mbr-section-btn,
  .cid-v2Qm72uxK0 .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qm72uxK0 .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qm72uxK0 .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qm72uxK0 .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qm72uxK0 .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qm72uxK0 .form-group {
  max-width: 220px;
}
.cid-v2Qm72uxK0 .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qm72uxK0 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qm72uxK0 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qm72uxK0 .mbr-text {
  color: #444;
}
.cid-v2Qm72uxK0 h5 {
  margin-bottom: 0;
}
.cid-v2Qm72uxK0 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qm72uxK0 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qm72uxK0 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qm72uxK0 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qm72uxK0 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qm72uxK0 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qm72uxK0 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qm72uxK0 .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qm72uxK0 .media-container-row > div {
  padding: 0px;
}
.cid-v2Qm72uxK0 .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qm72uxK0 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qm72uxK0 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qm72uxK0 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qm72uxK0 .social-list,
  .cid-v2Qm72uxK0 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qm72uxK0 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qm72uxK0 .form-group {
    max-width: 180px;
  }
}
.cid-v2Qm72uxK0 .links span {
  color: #9e9e9e;
}
.cid-v2Qm72uxK0 .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qm72uxK0 .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucnPnmLCO5 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ucnPnmLCO5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucnPnmLCO5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-co {
  /* Type valid CSS here */
}
#custom-html-co div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-co p {
  font-size: 60px;
  color: #777;
}
.cid-ucnR9NILdE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucnR9NILdE img,
.cid-ucnR9NILdE .item-img {
  width: 100%;
}
.cid-ucnR9NILdE .item:focus,
.cid-ucnR9NILdE span:focus {
  outline: none;
}
.cid-ucnR9NILdE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ucnR9NILdE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ucnR9NILdE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucnR9NILdE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ucnR9NILdE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ucnR9NILdE .mbr-section-title {
  color: #232323;
}
.cid-ucnR9NILdE .mbr-text,
.cid-ucnR9NILdE .mbr-section-btn {
  text-align: left;
}
.cid-ucnR9NILdE .item-title {
  text-align: left;
}
.cid-ucnR9NILdE .item-subtitle {
  text-align: left;
}
.cid-ucnYPg7iEf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucnYPg7iEf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucnYPg7iEf .row {
  flex-direction: row-reverse;
}
.cid-ucnYPg7iEf img {
  width: 100%;
}
.cid-v2Qm0qQLuT {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2Qm0qQLuT .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2Qm0qQLuT .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2Qm0qQLuT .col + .mbr-section-btn .btn,
.cid-v2Qm0qQLuT .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2Qm0qQLuT .col + .mbr-section-btn .btn,
  .cid-v2Qm0qQLuT .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2Qm0qQLuT .dragArea > *:nth-last-child(2).col,
  .cid-v2Qm0qQLuT .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2Qm0qQLuT .col + .mbr-section-btn,
  .cid-v2Qm0qQLuT .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2Qm0qQLuT .dragArea {
    flex-direction: column;
  }
}
.cid-v2Qm0qQLuT .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2Qm0qQLuT .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2Qm0qQLuT .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2Qm0qQLuT .form-group {
  max-width: 220px;
}
.cid-v2Qm0qQLuT .mbr-section-btn {
  padding-left: 0;
}
.cid-v2Qm0qQLuT .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2Qm0qQLuT .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2Qm0qQLuT .mbr-text {
  color: #444;
}
.cid-v2Qm0qQLuT h5 {
  margin-bottom: 0;
}
.cid-v2Qm0qQLuT .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2Qm0qQLuT .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2Qm0qQLuT .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2Qm0qQLuT .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2Qm0qQLuT .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2Qm0qQLuT .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2Qm0qQLuT .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2Qm0qQLuT .social-list a:hover {
  opacity: 0.4;
}
.cid-v2Qm0qQLuT .media-container-row > div {
  padding: 0px;
}
.cid-v2Qm0qQLuT .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2Qm0qQLuT .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2Qm0qQLuT .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2Qm0qQLuT .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2Qm0qQLuT .social-list,
  .cid-v2Qm0qQLuT .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2Qm0qQLuT h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2Qm0qQLuT .form-group {
    max-width: 180px;
  }
}
.cid-v2Qm0qQLuT .links span {
  color: #9e9e9e;
}
.cid-v2Qm0qQLuT .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2Qm0qQLuT .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulfCLOgtnn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulfCLOgtnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulfCLOgtnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulfCLOgtnn .text-wrapper {
    padding: 2rem;
  }
}
.cid-ulfCLOgtnn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-ulfCLOgtnn .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2QlVW3ncZ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QlVW3ncZ .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QlVW3ncZ .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QlVW3ncZ .col + .mbr-section-btn .btn,
.cid-v2QlVW3ncZ .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QlVW3ncZ .col + .mbr-section-btn .btn,
  .cid-v2QlVW3ncZ .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QlVW3ncZ .dragArea > *:nth-last-child(2).col,
  .cid-v2QlVW3ncZ .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QlVW3ncZ .col + .mbr-section-btn,
  .cid-v2QlVW3ncZ .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QlVW3ncZ .dragArea {
    flex-direction: column;
  }
}
.cid-v2QlVW3ncZ .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QlVW3ncZ .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QlVW3ncZ .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QlVW3ncZ .form-group {
  max-width: 220px;
}
.cid-v2QlVW3ncZ .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QlVW3ncZ .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QlVW3ncZ .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QlVW3ncZ .mbr-text {
  color: #444;
}
.cid-v2QlVW3ncZ h5 {
  margin-bottom: 0;
}
.cid-v2QlVW3ncZ .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QlVW3ncZ .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QlVW3ncZ .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QlVW3ncZ .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QlVW3ncZ .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QlVW3ncZ .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QlVW3ncZ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QlVW3ncZ .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QlVW3ncZ .media-container-row > div {
  padding: 0px;
}
.cid-v2QlVW3ncZ .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QlVW3ncZ .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QlVW3ncZ .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QlVW3ncZ .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QlVW3ncZ .social-list,
  .cid-v2QlVW3ncZ .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QlVW3ncZ h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QlVW3ncZ .form-group {
    max-width: 180px;
  }
}
.cid-v2QlVW3ncZ .links span {
  color: #9e9e9e;
}
.cid-v2QlVW3ncZ .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QlVW3ncZ .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulqdP4KNHy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulqdP4KNHy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulqdP4KNHy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulqcd6DE8i {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ulqcd6DE8i .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulqcd6DE8i .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-ulqcd6DE8i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ulqcd6DE8i .row {
  flex-direction: row-reverse;
}
.cid-ulqcd6DE8i img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ulqcd6DE8i .text-wrapper {
    padding: 2rem;
  }
}
.cid-ulqcQUDLat {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ulqcQUDLat .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulqcQUDLat .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-ulqcQUDLat .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ulqcQUDLat img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ulqcQUDLat .text-wrapper {
    padding: 2rem;
  }
}
.cid-ulqadPgZf3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulqadPgZf3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulqadPgZf3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QlS3Oenw {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QlS3Oenw .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QlS3Oenw .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QlS3Oenw .col + .mbr-section-btn .btn,
.cid-v2QlS3Oenw .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QlS3Oenw .col + .mbr-section-btn .btn,
  .cid-v2QlS3Oenw .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QlS3Oenw .dragArea > *:nth-last-child(2).col,
  .cid-v2QlS3Oenw .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QlS3Oenw .col + .mbr-section-btn,
  .cid-v2QlS3Oenw .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QlS3Oenw .dragArea {
    flex-direction: column;
  }
}
.cid-v2QlS3Oenw .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QlS3Oenw .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QlS3Oenw .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QlS3Oenw .form-group {
  max-width: 220px;
}
.cid-v2QlS3Oenw .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QlS3Oenw .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QlS3Oenw .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QlS3Oenw .mbr-text {
  color: #444;
}
.cid-v2QlS3Oenw h5 {
  margin-bottom: 0;
}
.cid-v2QlS3Oenw .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QlS3Oenw .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QlS3Oenw .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QlS3Oenw .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QlS3Oenw .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QlS3Oenw .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QlS3Oenw .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QlS3Oenw .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QlS3Oenw .media-container-row > div {
  padding: 0px;
}
.cid-v2QlS3Oenw .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QlS3Oenw .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QlS3Oenw .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QlS3Oenw .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QlS3Oenw .social-list,
  .cid-v2QlS3Oenw .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QlS3Oenw h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QlS3Oenw .form-group {
    max-width: 180px;
  }
}
.cid-v2QlS3Oenw .links span {
  color: #9e9e9e;
}
.cid-v2QlS3Oenw .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QlS3Oenw .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulfDHoc3mG {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ulfDHoc3mG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulfDHoc3mG .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-ulfDHoc3mG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ulfDHoc3mG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ulfDHoc3mG .text-wrapper {
    padding: 2rem;
  }
}
.cid-ulfuZxlRYz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulfuZxlRYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulfuZxlRYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QlNQZc6A {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QlNQZc6A .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QlNQZc6A .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QlNQZc6A .col + .mbr-section-btn .btn,
.cid-v2QlNQZc6A .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QlNQZc6A .col + .mbr-section-btn .btn,
  .cid-v2QlNQZc6A .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QlNQZc6A .dragArea > *:nth-last-child(2).col,
  .cid-v2QlNQZc6A .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QlNQZc6A .col + .mbr-section-btn,
  .cid-v2QlNQZc6A .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QlNQZc6A .dragArea {
    flex-direction: column;
  }
}
.cid-v2QlNQZc6A .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QlNQZc6A .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QlNQZc6A .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QlNQZc6A .form-group {
  max-width: 220px;
}
.cid-v2QlNQZc6A .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QlNQZc6A .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QlNQZc6A .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QlNQZc6A .mbr-text {
  color: #444;
}
.cid-v2QlNQZc6A h5 {
  margin-bottom: 0;
}
.cid-v2QlNQZc6A .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QlNQZc6A .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QlNQZc6A .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QlNQZc6A .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QlNQZc6A .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QlNQZc6A .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QlNQZc6A .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QlNQZc6A .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QlNQZc6A .media-container-row > div {
  padding: 0px;
}
.cid-v2QlNQZc6A .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QlNQZc6A .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QlNQZc6A .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QlNQZc6A .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QlNQZc6A .social-list,
  .cid-v2QlNQZc6A .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QlNQZc6A h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QlNQZc6A .form-group {
    max-width: 180px;
  }
}
.cid-v2QlNQZc6A .links span {
  color: #9e9e9e;
}
.cid-v2QlNQZc6A .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QlNQZc6A .logo-title {
  text-align: center;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  position: relative !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHBKuY2DWp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHBKuY2DWp .dropdown-item:hover,
.cid-sHBKuY2DWp .dropdown-item:focus {
  background: #747b4c !important;
  color: white !important;
}
.cid-sHBKuY2DWp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHBKuY2DWp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHBKuY2DWp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHBKuY2DWp .nav-link {
  position: relative;
}
.cid-sHBKuY2DWp .container {
  display: flex;
  margin: auto;
}
.cid-sHBKuY2DWp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown-menu,
.cid-sHBKuY2DWp .navbar.opened {
  background: #ffffff !important;
}
.cid-sHBKuY2DWp .nav-item:focus,
.cid-sHBKuY2DWp .nav-link:focus {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHBKuY2DWp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHBKuY2DWp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHBKuY2DWp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.opened {
  transition: all 0.3s;
}
.cid-sHBKuY2DWp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHBKuY2DWp .navbar .navbar-logo img {
  width: auto;
}
.cid-sHBKuY2DWp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHBKuY2DWp .navbar.collapsed {
  justify-content: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHBKuY2DWp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHBKuY2DWp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHBKuY2DWp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHBKuY2DWp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHBKuY2DWp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHBKuY2DWp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHBKuY2DWp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHBKuY2DWp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHBKuY2DWp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHBKuY2DWp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHBKuY2DWp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHBKuY2DWp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHBKuY2DWp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHBKuY2DWp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHBKuY2DWp .dropdown-item.active,
.cid-sHBKuY2DWp .dropdown-item:active {
  background-color: transparent;
}
.cid-sHBKuY2DWp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHBKuY2DWp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHBKuY2DWp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHBKuY2DWp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHBKuY2DWp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHBKuY2DWp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sHBKuY2DWp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHBKuY2DWp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHBKuY2DWp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHBKuY2DWp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sHBKuY2DWp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHBKuY2DWp .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-sHBKuY2DWp .navbar {
    height: 70px;
  }
  .cid-sHBKuY2DWp .navbar.opened {
    height: auto;
  }
  .cid-sHBKuY2DWp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-dn {
  /* Type valid CSS here */
}
#custom-html-dn div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-dn p {
  font-size: 60px;
  color: #777;
}
#custom-html-e9 {
  /* Type valid CSS here */
}
#custom-html-e9 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-e9 p {
  font-size: 60px;
  color: #777;
}
.cid-v2QlJkfpoX {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2QlJkfpoX .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-v2QlJkfpoX .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v2QlJkfpoX .col + .mbr-section-btn .btn,
.cid-v2QlJkfpoX .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v2QlJkfpoX .col + .mbr-section-btn .btn,
  .cid-v2QlJkfpoX .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v2QlJkfpoX .dragArea > *:nth-last-child(2).col,
  .cid-v2QlJkfpoX .dragArea > *:nth-last-child(2).col-auto,
  .cid-v2QlJkfpoX .col + .mbr-section-btn,
  .cid-v2QlJkfpoX .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v2QlJkfpoX .dragArea {
    flex-direction: column;
  }
}
.cid-v2QlJkfpoX .btn-primary {
  border: 1px solid #747b4c !important;
}
.cid-v2QlJkfpoX .btn-primary:hover {
  border: 1px solid #747b4c !important;
}
.cid-v2QlJkfpoX .stripe {
  border-bottom: 1px solid #747b4c;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v2QlJkfpoX .form-group {
  max-width: 220px;
}
.cid-v2QlJkfpoX .mbr-section-btn {
  padding-left: 0;
}
.cid-v2QlJkfpoX .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v2QlJkfpoX .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #000000;
  width: 85%;
}
.cid-v2QlJkfpoX .mbr-text {
  color: #444;
}
.cid-v2QlJkfpoX h5 {
  margin-bottom: 0;
}
.cid-v2QlJkfpoX .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v2QlJkfpoX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v2QlJkfpoX .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v2QlJkfpoX .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v2QlJkfpoX .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-v2QlJkfpoX .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v2QlJkfpoX .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v2QlJkfpoX .social-list a:hover {
  opacity: 0.4;
}
.cid-v2QlJkfpoX .media-container-row > div {
  padding: 0px;
}
.cid-v2QlJkfpoX .text2 {
  color: #747b4c;
  text-align: left;
}
.cid-v2QlJkfpoX .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-v2QlJkfpoX .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2QlJkfpoX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v2QlJkfpoX .social-list,
  .cid-v2QlJkfpoX .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v2QlJkfpoX h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v2QlJkfpoX .form-group {
    max-width: 180px;
  }
}
.cid-v2QlJkfpoX .links span {
  color: #9e9e9e;
}
.cid-v2QlJkfpoX .logo-sub-title {
  text-align: center;
  color: #353535;
}
.cid-v2QlJkfpoX .logo-title {
  text-align: center;
}
