.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4479d9 !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: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !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: #4479d9;
  color: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  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: #ff0f0f !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: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  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: #2a747e !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: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  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: #ff5f0f !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: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #4479d9 !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: #1f4a98 !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: #4479d9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.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: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #4479d9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #4479d9;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.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: #4479d9;
  border-bottom-color: #4479d9;
}
.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: #4479d9 !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='%234479d9' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFzxmVl7J6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-sFzxmVl7J6 .mbr-section-title {
  text-align: center;
}
.cid-sFzyUE9AaP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-sFzyUE9AaP .container {
    max-width: 1400px;
  }
}
.cid-sFzyUE9AaP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4479d9;
  margin-bottom: 2rem;
}
.cid-sFzyUE9AaP .card-wrapper {
  margin-top: 3rem;
}
.cid-sFzyUE9AaP .row {
  justify-content: center;
}
.cid-sFzyUE9AaP .card-title,
.cid-sFzyUE9AaP .iconfont-wrapper {
  color: #000000;
}
.cid-sFzyUE9AaP .card-text {
  color: #000000;
}
.cid-sFzyUE9AaP .mbr-section-title {
  color: #000000;
}
.cid-sFzFvgBfc0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sFzFvgBfc0 img,
.cid-sFzFvgBfc0 .item-img {
  width: 100%;
}
.cid-sFzFvgBfc0 .item:focus,
.cid-sFzFvgBfc0 span:focus {
  outline: none;
}
.cid-sFzFvgBfc0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFzFvgBfc0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sFzFvgBfc0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFzFvgBfc0 .mbr-section-title {
  color: #000000;
}
.cid-sFzFvgBfc0 .mbr-text,
.cid-sFzFvgBfc0 .mbr-section-btn {
  text-align: left;
}
.cid-sFzFvgBfc0 .item-title {
  text-align: left;
}
.cid-sFzFvgBfc0 .item-subtitle {
  text-align: left;
}
.cid-sFAyHxWQ1N {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sFAyHxWQ1N .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-sFAyHxWQ1N .item .icon-wrap {
  text-align: center;
}
.cid-sFAyHxWQ1N .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-sFAyHxWQ1N .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #4479d9;
}
.cid-sFAyHxWQ1N .item.first:before {
  display: none;
}
.cid-sFAyHxWQ1N .item.five:before {
  display: none;
}
.cid-sFAyHxWQ1N .icon-box {
  background: #4479d9;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-sFAyHxWQ1N .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-sFAyHxWQ1N .mbr-iconfont {
  color: #4479d9 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-sFAyHxWQ1N .item:before {
    display: none;
  }
  .cid-sFAyHxWQ1N .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzIdnt1ra {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tVV0oYFsdY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background: #fafafa;
}
.cid-tVV0oYFsdY .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tVV0oYFsdY .plan-body {
  padding-bottom: 2rem;
}
.cid-tVV0oYFsdY .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tVV0oYFsdY .price {
  color: #4479d9;
  text-align: center;
}
.cid-tVV0oYFsdY .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tVV0oYFsdY .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tVV0oYFsdY .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-tVV0oYFsdY .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tVV0oYFsdY .plan {
    margin-bottom: 2rem;
  }
}
.cid-sFzDs3t9EG {
  padding-top: 3rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-sFzDs3t9EG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sFzDs3t9EG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sFzDs3t9EG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sFzDs3t9EG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sFzDs3t9EG .mbr-section-title {
  color: #000000;
}
.cid-sFzDs3t9EG .mbr-section-subtitle {
  color: #000000;
}
.cid-tVV2TBcLdx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2N7ktnBpZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u2N7ktnBpZ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u2N7ktnBpZ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2N7ktnBpZ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2N7ktnBpZ .row .foot-menu li p {
  margin: 0;
}
.cid-u2N7ktnBpZ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u2N7ktnBpZ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2N7ktnBpZ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2N7ktnBpZ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u2N7ktnBpZ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2N7ktnBpZ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2N7ktnBpZ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2N7ktnBpZ .row .row-copirayt p {
  width: 100%;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urGiy7E0er {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #cbfffe;
}
.cid-urGiy7E0er .mbr-fallback-image.disabled {
  display: none;
}
.cid-urGiy7E0er .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urGiy7E0er .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-urGiy7E0er .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-urGiy7E0er .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-urGn8e4tQB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urGn8e4tQB .mbr-fallback-image.disabled {
  display: none;
}
.cid-urGn8e4tQB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urGn8e4tQB .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-urGn8e4tQB .card {
    margin-bottom: 2rem!important;
  }
  .cid-urGn8e4tQB .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-urGn8e4tQB .link-wrap {
    align-items: center;
  }
}
.cid-urGn8e4tQB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u22hlBdIe4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u22hlBdIe4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u22hlBdIe4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u22hlBdIe4 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u22hlBdIe4 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u22hlBdIe4 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u22hlBdIe4 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u22hlBdIe4 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u22hlBdIe4 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u22hlBdIe4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urFX4TdDpE {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urFX4TdDpE img,
.cid-urFX4TdDpE .item-img {
  width: 100%;
}
.cid-urFX4TdDpE .item:focus,
.cid-urFX4TdDpE span:focus {
  outline: none;
}
.cid-urFX4TdDpE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urFX4TdDpE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urFX4TdDpE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urFX4TdDpE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urFX4TdDpE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urFX4TdDpE .mbr-section-title {
  color: #232323;
}
.cid-urFX4TdDpE .mbr-text,
.cid-urFX4TdDpE .mbr-section-btn {
  text-align: left;
}
.cid-urFX4TdDpE .item-title {
  text-align: left;
}
.cid-urFX4TdDpE .item-subtitle {
  text-align: center;
}
.cid-urK7o4EO63 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urK7o4EO63 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urK7o4EO63 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-urK7o4EO63 .container {
    max-width: 1400px;
  }
}
.cid-urK7o4EO63 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-urK7o4EO63 .row {
  justify-content: center;
}
.cid-urK6r3eRXm {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-urK6r3eRXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-urK6r3eRXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-urK6r3eRXm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-urK6r3eRXm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urK6r3eRXm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-urK6r3eRXm .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-urK6r3eRXm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urK6r3eRXm .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-urK6r3eRXm .price {
  text-align: left;
}
.cid-urKnJwyDln {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-urKnJwyDln .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-urKnJwyDln form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-urKnJwyDln form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-urKnJwyDln form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-urKnJwyDln .mbr-section-title {
  color: #000000;
}
.cid-urKnJwyDln .mbr-section-subtitle {
  color: #000000;
}
.cid-u2N7ktnBpZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u2N7ktnBpZ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u2N7ktnBpZ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2N7ktnBpZ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2N7ktnBpZ .row .foot-menu li p {
  margin: 0;
}
.cid-u2N7ktnBpZ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u2N7ktnBpZ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2N7ktnBpZ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2N7ktnBpZ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u2N7ktnBpZ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2N7ktnBpZ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2N7ktnBpZ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2N7ktnBpZ .row .row-copirayt p {
  width: 100%;
}
.cid-u2MIS1aBrl {
  z-index: 1000;
  width: 100%;
}
.cid-u2MIS1aBrl nav.navbar {
  position: fixed;
}
.cid-u2MIS1aBrl .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-u2MIS1aBrl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2MIS1aBrl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2MIS1aBrl .dropdown-item:hover,
.cid-u2MIS1aBrl .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-u2MIS1aBrl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2MIS1aBrl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2MIS1aBrl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2MIS1aBrl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2MIS1aBrl .nav-link {
  position: relative;
}
.cid-u2MIS1aBrl .container {
  display: flex;
  margin: auto;
}
.cid-u2MIS1aBrl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2MIS1aBrl .dropdown-menu,
.cid-u2MIS1aBrl .navbar.opened {
  background: #fafafa !important;
}
.cid-u2MIS1aBrl .nav-item:focus,
.cid-u2MIS1aBrl .nav-link:focus {
  outline: none;
}
.cid-u2MIS1aBrl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2MIS1aBrl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2MIS1aBrl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2MIS1aBrl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2MIS1aBrl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2MIS1aBrl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2MIS1aBrl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-u2MIS1aBrl .navbar.opened {
  transition: all 0.3s;
}
.cid-u2MIS1aBrl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2MIS1aBrl .navbar .navbar-logo img {
  width: auto;
}
.cid-u2MIS1aBrl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2MIS1aBrl .navbar.collapsed {
  justify-content: center;
}
.cid-u2MIS1aBrl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2MIS1aBrl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2MIS1aBrl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u2MIS1aBrl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2MIS1aBrl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2MIS1aBrl .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-u2MIS1aBrl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2MIS1aBrl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2MIS1aBrl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2MIS1aBrl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2MIS1aBrl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2MIS1aBrl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2MIS1aBrl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2MIS1aBrl .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-u2MIS1aBrl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2MIS1aBrl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2MIS1aBrl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2MIS1aBrl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2MIS1aBrl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2MIS1aBrl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2MIS1aBrl .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2MIS1aBrl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2MIS1aBrl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2MIS1aBrl .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-u2MIS1aBrl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2MIS1aBrl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2MIS1aBrl .dropdown-item.active,
.cid-u2MIS1aBrl .dropdown-item:active {
  background-color: transparent;
}
.cid-u2MIS1aBrl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2MIS1aBrl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2MIS1aBrl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2MIS1aBrl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u2MIS1aBrl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2MIS1aBrl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2MIS1aBrl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2MIS1aBrl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2MIS1aBrl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2MIS1aBrl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2MIS1aBrl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2MIS1aBrl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2MIS1aBrl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2MIS1aBrl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2MIS1aBrl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2MIS1aBrl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2MIS1aBrl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2MIS1aBrl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2MIS1aBrl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2MIS1aBrl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2MIS1aBrl .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-u2MIS1aBrl .navbar {
    height: 70px;
  }
  .cid-u2MIS1aBrl .navbar.opened {
    height: auto;
  }
  .cid-u2MIS1aBrl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2ML8fTC0K {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u2ML8fTC0K .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2ML8fTC0K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2ML8fTC0K .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-u2ML8fTC0K .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u2ML8fTC0K .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2ML8fTC0K .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-u2ML8fTC0K .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #4479d9;
}
.cid-u2ML8fTC0K P {
  color: #4479d9;
}
.cid-u2ML8fTC0K .card-title {
  text-align: left;
}
.cid-u2ML8fTC0K .mbr-section-subtitle {
  color: #4479d9;
}
.cid-u2MXMQEH2m {
  padding-top: 4rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-u2MXMQEH2m .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u2MXMQEH2m form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u2MXMQEH2m form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-u2MXMQEH2m form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u2MXMQEH2m .mbr-section-title {
  color: #000000;
}
.cid-u2MXMQEH2m .mbr-section-subtitle {
  color: #000000;
}
.cid-u2N7ktnBpZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u2N7ktnBpZ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u2N7ktnBpZ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2N7ktnBpZ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2N7ktnBpZ .row .foot-menu li p {
  margin: 0;
}
.cid-u2N7ktnBpZ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u2N7ktnBpZ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2N7ktnBpZ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2N7ktnBpZ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u2N7ktnBpZ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2N7ktnBpZ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2N7ktnBpZ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2N7ktnBpZ .row .row-copirayt p {
  width: 100%;
}
.cid-u2N06DjEOf {
  z-index: 1000;
  width: 100%;
}
.cid-u2N06DjEOf nav.navbar {
  position: fixed;
}
.cid-u2N06DjEOf .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-u2N06DjEOf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2N06DjEOf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2N06DjEOf .dropdown-item:hover,
.cid-u2N06DjEOf .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-u2N06DjEOf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2N06DjEOf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2N06DjEOf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2N06DjEOf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2N06DjEOf .nav-link {
  position: relative;
}
.cid-u2N06DjEOf .container {
  display: flex;
  margin: auto;
}
.cid-u2N06DjEOf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2N06DjEOf .dropdown-menu,
.cid-u2N06DjEOf .navbar.opened {
  background: #fafafa !important;
}
.cid-u2N06DjEOf .nav-item:focus,
.cid-u2N06DjEOf .nav-link:focus {
  outline: none;
}
.cid-u2N06DjEOf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2N06DjEOf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2N06DjEOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2N06DjEOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2N06DjEOf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2N06DjEOf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2N06DjEOf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-u2N06DjEOf .navbar.opened {
  transition: all 0.3s;
}
.cid-u2N06DjEOf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2N06DjEOf .navbar .navbar-logo img {
  width: auto;
}
.cid-u2N06DjEOf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2N06DjEOf .navbar.collapsed {
  justify-content: center;
}
.cid-u2N06DjEOf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2N06DjEOf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2N06DjEOf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u2N06DjEOf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2N06DjEOf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2N06DjEOf .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-u2N06DjEOf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2N06DjEOf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2N06DjEOf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2N06DjEOf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2N06DjEOf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2N06DjEOf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2N06DjEOf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2N06DjEOf .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-u2N06DjEOf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2N06DjEOf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2N06DjEOf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2N06DjEOf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2N06DjEOf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2N06DjEOf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2N06DjEOf .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2N06DjEOf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2N06DjEOf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2N06DjEOf .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-u2N06DjEOf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2N06DjEOf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2N06DjEOf .dropdown-item.active,
.cid-u2N06DjEOf .dropdown-item:active {
  background-color: transparent;
}
.cid-u2N06DjEOf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2N06DjEOf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2N06DjEOf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2N06DjEOf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u2N06DjEOf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2N06DjEOf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2N06DjEOf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2N06DjEOf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2N06DjEOf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2N06DjEOf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2N06DjEOf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2N06DjEOf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2N06DjEOf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2N06DjEOf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2N06DjEOf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2N06DjEOf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2N06DjEOf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2N06DjEOf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2N06DjEOf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2N06DjEOf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2N06DjEOf .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-u2N06DjEOf .navbar {
    height: 70px;
  }
  .cid-u2N06DjEOf .navbar.opened {
    height: auto;
  }
  .cid-u2N06DjEOf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2N0Q4z0df {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u2N0Q4z0df .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u2N0Q4z0df .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u2N0Q4z0df .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u2N0Q4z0df .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u2N0Uyza5V {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-u2N4axqxaM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2N4axqxaM .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-u2N4axqxaM .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-u2N4axqxaM .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-u2N5gOSjxn {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u2N7ktnBpZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u2N7ktnBpZ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u2N7ktnBpZ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2N7ktnBpZ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2N7ktnBpZ .row .foot-menu li p {
  margin: 0;
}
.cid-u2N7ktnBpZ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u2N7ktnBpZ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2N7ktnBpZ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2N7ktnBpZ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u2N7ktnBpZ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2N7ktnBpZ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2N7ktnBpZ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2N7ktnBpZ .row .row-copirayt p {
  width: 100%;
}
.cid-urRUtXVwsd {
  z-index: 1000;
  width: 100%;
}
.cid-urRUtXVwsd nav.navbar {
  position: fixed;
}
.cid-urRUtXVwsd .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-urRUtXVwsd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urRUtXVwsd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urRUtXVwsd .dropdown-item:hover,
.cid-urRUtXVwsd .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-urRUtXVwsd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urRUtXVwsd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urRUtXVwsd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urRUtXVwsd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urRUtXVwsd .nav-link {
  position: relative;
}
.cid-urRUtXVwsd .container {
  display: flex;
  margin: auto;
}
.cid-urRUtXVwsd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urRUtXVwsd .dropdown-menu,
.cid-urRUtXVwsd .navbar.opened {
  background: #fafafa !important;
}
.cid-urRUtXVwsd .nav-item:focus,
.cid-urRUtXVwsd .nav-link:focus {
  outline: none;
}
.cid-urRUtXVwsd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urRUtXVwsd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urRUtXVwsd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urRUtXVwsd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urRUtXVwsd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urRUtXVwsd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urRUtXVwsd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-urRUtXVwsd .navbar.opened {
  transition: all 0.3s;
}
.cid-urRUtXVwsd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urRUtXVwsd .navbar .navbar-logo img {
  width: auto;
}
.cid-urRUtXVwsd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urRUtXVwsd .navbar.collapsed {
  justify-content: center;
}
.cid-urRUtXVwsd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urRUtXVwsd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urRUtXVwsd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-urRUtXVwsd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urRUtXVwsd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urRUtXVwsd .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-urRUtXVwsd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urRUtXVwsd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urRUtXVwsd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urRUtXVwsd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urRUtXVwsd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urRUtXVwsd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urRUtXVwsd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urRUtXVwsd .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-urRUtXVwsd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urRUtXVwsd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urRUtXVwsd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urRUtXVwsd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urRUtXVwsd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urRUtXVwsd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urRUtXVwsd .navbar.navbar-short {
  min-height: 60px;
}
.cid-urRUtXVwsd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urRUtXVwsd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urRUtXVwsd .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-urRUtXVwsd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urRUtXVwsd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urRUtXVwsd .dropdown-item.active,
.cid-urRUtXVwsd .dropdown-item:active {
  background-color: transparent;
}
.cid-urRUtXVwsd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urRUtXVwsd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urRUtXVwsd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urRUtXVwsd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-urRUtXVwsd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urRUtXVwsd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urRUtXVwsd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urRUtXVwsd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urRUtXVwsd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urRUtXVwsd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urRUtXVwsd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urRUtXVwsd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urRUtXVwsd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urRUtXVwsd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urRUtXVwsd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urRUtXVwsd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urRUtXVwsd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urRUtXVwsd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urRUtXVwsd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urRUtXVwsd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urRUtXVwsd .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-urRUtXVwsd .navbar {
    height: 70px;
  }
  .cid-urRUtXVwsd .navbar.opened {
    height: auto;
  }
  .cid-urRUtXVwsd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urRUtYEL9E {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #cbfffe;
}
.cid-urRUtYEL9E .mbr-fallback-image.disabled {
  display: none;
}
.cid-urRUtYEL9E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urRUtYEL9E .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-urRUtYEL9E .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-urRUtYEL9E .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-urRUtZqH4N {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urRUtZqH4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-urRUtZqH4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urRUtZqH4N .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-urRUtZqH4N .card {
    margin-bottom: 2rem!important;
  }
  .cid-urRUtZqH4N .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-urRUtZqH4N .link-wrap {
    align-items: center;
  }
}
.cid-urRUtZqH4N .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urRUu0cOgu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urRUu0cOgu .mbr-fallback-image.disabled {
  display: none;
}
.cid-urRUu0cOgu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urRUu0cOgu .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-urRUu0cOgu .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-urRUu0cOgu .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-urRUu0cOgu .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urRUu0cOgu .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-urRUu0cOgu .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-urRUu0cOgu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urS3QmJdGA {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-urS3QmJdGA .mbr-fallback-image.disabled {
  display: none;
}
.cid-urS3QmJdGA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urS3QmJdGA .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-urS3QmJdGA .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-urS3QmJdGA .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-urS3QmJdGA .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-urS3QmJdGA .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urS3QmJdGA .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-urS3QmJdGA .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-urS3QmJdGA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urS8AEEd3d {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urS8AEEd3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-urS8AEEd3d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urS8AEEd3d .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 991px) {
  .cid-urS8AEEd3d .item {
    margin-bottom: 4rem;
  }
}
.cid-urS8AEEd3d .item:last-child .icon-box:before {
  display: none;
}
.cid-urS8AEEd3d .item.last .icon-box:before {
  display: none;
}
.cid-urS8AEEd3d .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-urS8AEEd3d .icon-box {
    margin-right: 1rem;
  }
}
.cid-urS8AEEd3d .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 117%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-urS8AEEd3d span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-urS8AEEd3d .card {
    margin-bottom: 2rem;
  }
  .cid-urS8AEEd3d .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-urS8AEEd3d .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-urS8AEEd3d .icon-box::before {
    top: 114%;
  }
}
.cid-urSb3Hg1dh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urSb3Hg1dh .mbr-fallback-image.disabled {
  display: none;
}
.cid-urSb3Hg1dh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urSb3Hg1dh .row {
  flex-direction: row-reverse;
}
.cid-urSb3Hg1dh .video-wrapper iframe {
  width: 100%;
}
.cid-urSb3Hg1dh .mbr-section-title,
.cid-urSb3Hg1dh .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-urSb3Hg1dh .text-wrapper {
    padding: 2rem;
  }
}
.cid-urRUu25GYY {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urRUu25GYY .mbr-fallback-image.disabled {
  display: none;
}
.cid-urRUu25GYY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-urRUu25GYY .container {
    max-width: 1400px;
  }
}
.cid-urRUu25GYY .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-urRUu25GYY .row {
  justify-content: center;
}
.cid-urRUu39UdG {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-urRUu39UdG .mbr-fallback-image.disabled {
  display: none;
}
.cid-urRUu39UdG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-urRUu39UdG .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-urRUu39UdG .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urRUu39UdG .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-urRUu39UdG .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-urRUu39UdG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urRUu39UdG .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-urRUu39UdG .price {
  text-align: left;
}
.cid-urRUu4exN9 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-urRUu4exN9 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-urRUu4exN9 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-urRUu4exN9 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-urRUu4exN9 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-urRUu4exN9 .mbr-section-title {
  color: #000000;
}
.cid-urRUu4exN9 .mbr-section-subtitle {
  color: #000000;
}
.cid-urRUu50KvC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-urRUu50KvC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-urRUu50KvC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-urRUu50KvC .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-urRUu50KvC .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-urRUu50KvC .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-urRUu50KvC .row .foot-menu li p {
  margin: 0;
}
.cid-urRUu50KvC .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-urRUu50KvC .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-urRUu50KvC .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-urRUu50KvC .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-urRUu50KvC .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-urRUu50KvC .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-urRUu50KvC .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-urRUu50KvC .row .row-copirayt p {
  width: 100%;
}
.cid-usr3z8F4W4 {
  z-index: 1000;
  width: 100%;
}
.cid-usr3z8F4W4 nav.navbar {
  position: fixed;
}
.cid-usr3z8F4W4 .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-usr3z8F4W4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-usr3z8F4W4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-usr3z8F4W4 .dropdown-item:hover,
.cid-usr3z8F4W4 .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-usr3z8F4W4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-usr3z8F4W4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-usr3z8F4W4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-usr3z8F4W4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-usr3z8F4W4 .nav-link {
  position: relative;
}
.cid-usr3z8F4W4 .container {
  display: flex;
  margin: auto;
}
.cid-usr3z8F4W4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-usr3z8F4W4 .dropdown-menu,
.cid-usr3z8F4W4 .navbar.opened {
  background: #fafafa !important;
}
.cid-usr3z8F4W4 .nav-item:focus,
.cid-usr3z8F4W4 .nav-link:focus {
  outline: none;
}
.cid-usr3z8F4W4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-usr3z8F4W4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-usr3z8F4W4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-usr3z8F4W4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-usr3z8F4W4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-usr3z8F4W4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-usr3z8F4W4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-usr3z8F4W4 .navbar.opened {
  transition: all 0.3s;
}
.cid-usr3z8F4W4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-usr3z8F4W4 .navbar .navbar-logo img {
  width: auto;
}
.cid-usr3z8F4W4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-usr3z8F4W4 .navbar.collapsed {
  justify-content: center;
}
.cid-usr3z8F4W4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-usr3z8F4W4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-usr3z8F4W4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-usr3z8F4W4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-usr3z8F4W4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-usr3z8F4W4 .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-usr3z8F4W4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-usr3z8F4W4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-usr3z8F4W4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-usr3z8F4W4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-usr3z8F4W4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-usr3z8F4W4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-usr3z8F4W4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-usr3z8F4W4 .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-usr3z8F4W4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-usr3z8F4W4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-usr3z8F4W4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-usr3z8F4W4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-usr3z8F4W4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-usr3z8F4W4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-usr3z8F4W4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-usr3z8F4W4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-usr3z8F4W4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-usr3z8F4W4 .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-usr3z8F4W4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-usr3z8F4W4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-usr3z8F4W4 .dropdown-item.active,
.cid-usr3z8F4W4 .dropdown-item:active {
  background-color: transparent;
}
.cid-usr3z8F4W4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-usr3z8F4W4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-usr3z8F4W4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-usr3z8F4W4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-usr3z8F4W4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-usr3z8F4W4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-usr3z8F4W4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-usr3z8F4W4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-usr3z8F4W4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-usr3z8F4W4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-usr3z8F4W4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-usr3z8F4W4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usr3z8F4W4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usr3z8F4W4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-usr3z8F4W4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usr3z8F4W4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-usr3z8F4W4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-usr3z8F4W4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usr3z8F4W4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-usr3z8F4W4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-usr3z8F4W4 .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-usr3z8F4W4 .navbar {
    height: 70px;
  }
  .cid-usr3z8F4W4 .navbar.opened {
    height: auto;
  }
  .cid-usr3z8F4W4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usr3zaqiuT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #cbfffe;
}
.cid-usr3zaqiuT .mbr-fallback-image.disabled {
  display: none;
}
.cid-usr3zaqiuT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usr3zaqiuT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-usr3zaqiuT .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-usr3zaqiuT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-usr3zbrMmj {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usr3zbrMmj .mbr-fallback-image.disabled {
  display: none;
}
.cid-usr3zbrMmj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usr3zbrMmj .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-usr3zbrMmj .card {
    margin-bottom: 2rem!important;
  }
  .cid-usr3zbrMmj .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-usr3zbrMmj .link-wrap {
    align-items: center;
  }
}
.cid-usr3zbrMmj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-usr3zcdP9t {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usr3zcdP9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-usr3zcdP9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usr3zcdP9t .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-usr3zcdP9t .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-usr3zcdP9t .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-usr3zcdP9t .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usr3zcdP9t .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-usr3zcdP9t .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-usr3zcdP9t .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-usrlCrtuYc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-usrlCrtuYc .mbr-fallback-image.disabled {
  display: none;
}
.cid-usrlCrtuYc .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-usrlCrtuYc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usrlCrtuYc .row {
  flex-direction: row-reverse;
}
.cid-usrlCrtuYc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usrlCrtuYc .text-wrapper {
    padding: 2rem;
  }
}
.cid-usr3zd3U7s {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usr3zd3U7s img,
.cid-usr3zd3U7s .item-img {
  width: 100%;
}
.cid-usr3zd3U7s .item:focus,
.cid-usr3zd3U7s span:focus {
  outline: none;
}
.cid-usr3zd3U7s .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-usr3zd3U7s .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-usr3zd3U7s .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usr3zd3U7s .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-usr3zd3U7s .mbr-section-btn {
  margin-top: auto !important;
}
.cid-usr3zd3U7s .mbr-section-title {
  color: #232323;
}
.cid-usr3zd3U7s .mbr-text,
.cid-usr3zd3U7s .mbr-section-btn {
  text-align: left;
}
.cid-usr3zd3U7s .item-title {
  text-align: left;
}
.cid-usr3zd3U7s .item-subtitle {
  text-align: center;
}
.cid-usr3zekoyx {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usr3zekoyx .mbr-fallback-image.disabled {
  display: none;
}
.cid-usr3zekoyx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-usr3zekoyx .container {
    max-width: 1400px;
  }
}
.cid-usr3zekoyx .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-usr3zekoyx .row {
  justify-content: center;
}
.cid-usr3zfp2Vw {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-usr3zfp2Vw .mbr-fallback-image.disabled {
  display: none;
}
.cid-usr3zfp2Vw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-usr3zfp2Vw .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usr3zfp2Vw .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usr3zfp2Vw .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usr3zfp2Vw .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usr3zfp2Vw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-usr3zfp2Vw .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usr3zfp2Vw .price {
  text-align: left;
}
.cid-usr3zguV9h {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-usr3zguV9h .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-usr3zguV9h form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-usr3zguV9h form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-usr3zguV9h form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-usr3zguV9h .mbr-section-title {
  color: #000000;
}
.cid-usr3zguV9h .mbr-section-subtitle {
  color: #000000;
}
.cid-usr3zhhgYM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-usr3zhhgYM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usr3zhhgYM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-usr3zhhgYM .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-usr3zhhgYM .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usr3zhhgYM .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usr3zhhgYM .row .foot-menu li p {
  margin: 0;
}
.cid-usr3zhhgYM .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-usr3zhhgYM .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-usr3zhhgYM .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-usr3zhhgYM .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-usr3zhhgYM .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-usr3zhhgYM .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-usr3zhhgYM .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-usr3zhhgYM .row .row-copirayt p {
  width: 100%;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utbYo3zkS9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-utbYo3zkS9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utbYo3zkS9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utbYo3zkS9 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utbYo3zkS9 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-utbYo3zkS9 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uthOQamjun {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uthOQamjun .mbr-fallback-image.disabled {
  display: none;
}
.cid-uthOQamjun .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-uthOQamjun .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uthOQamjun .row {
  flex-direction: row-reverse;
}
.cid-uthOQamjun img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uthOQamjun .text-wrapper {
    padding: 2rem;
  }
}
.cid-uthPXXbW3c {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uthPXXbW3c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uthPXXbW3c .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-uthPXXbW3c .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uthPXXbW3c .row {
  flex-direction: row-reverse;
}
.cid-uthPXXbW3c img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uthPXXbW3c .text-wrapper {
    padding: 2rem;
  }
}
.cid-uthSfEesMc {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uthSfEesMc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uthSfEesMc .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-uthSfEesMc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uthSfEesMc .row {
  flex-direction: row-reverse;
}
.cid-uthSfEesMc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uthSfEesMc .text-wrapper {
    padding: 2rem;
  }
}
.cid-uthXvzT8Cd {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uthXvzT8Cd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uthXvzT8Cd .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-uthXvzT8Cd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uthXvzT8Cd .row {
  flex-direction: row-reverse;
}
.cid-uthXvzT8Cd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uthXvzT8Cd .text-wrapper {
    padding: 2rem;
  }
}
.cid-uthZ5jpNt4 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uthZ5jpNt4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uthZ5jpNt4 .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-uthZ5jpNt4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uthZ5jpNt4 .row {
  flex-direction: row-reverse;
}
.cid-uthZ5jpNt4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uthZ5jpNt4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-utQYpAxQ3q {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utQYpAxQ3q .mbr-fallback-image.disabled {
  display: none;
}
.cid-utQYpAxQ3q .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-utQYpAxQ3q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utQYpAxQ3q .row {
  flex-direction: row-reverse;
}
.cid-utQYpAxQ3q img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utQYpAxQ3q .text-wrapper {
    padding: 2rem;
  }
}
.cid-utQYqtNUjD {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utQYqtNUjD .mbr-fallback-image.disabled {
  display: none;
}
.cid-utQYqtNUjD .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-utQYqtNUjD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utQYqtNUjD .row {
  flex-direction: row-reverse;
}
.cid-utQYqtNUjD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utQYqtNUjD .text-wrapper {
    padding: 2rem;
  }
}
.cid-uti22BlOcJ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uti22BlOcJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti22BlOcJ .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-uti22BlOcJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uti22BlOcJ .row {
  flex-direction: row-reverse;
}
.cid-uti22BlOcJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uti22BlOcJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uvVcsjOpVt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uvVcsjOpVt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVcsjOpVt .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-uvVcsjOpVt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uvVcsjOpVt .row {
  flex-direction: row-reverse;
}
.cid-uvVcsjOpVt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uvVcsjOpVt .text-wrapper {
    padding: 2rem;
  }
}
.cid-uvVcsXKaEq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uvVcsXKaEq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVcsXKaEq .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-uvVcsXKaEq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uvVcsXKaEq .row {
  flex-direction: row-reverse;
}
.cid-uvVcsXKaEq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uvVcsXKaEq .text-wrapper {
    padding: 2rem;
  }
}
.cid-uti3nkoTVn {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uti3nkoTVn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti3nkoTVn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti3nkoTVn .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uti3nkoTVn .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uti3nkoTVn .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uti3nkoTVn .card {
    margin-bottom: 2rem;
  }
  .cid-uti3nkoTVn .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uti3nkoTVn .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utR5NKXLnz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utR5NKXLnz .mbr-fallback-image.disabled {
  display: none;
}
.cid-utR5NKXLnz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utR5NKXLnz .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-utR5NKXLnz .currentcost {
  color: #232323;
}
.cid-utR5NKXLnz .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-utR5NKXLnz .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-utR5NKXLnz .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utR5NKXLnz .text-box {
    padding: 1rem;
  }
}
.cid-utR5NKXLnz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uti8ssKmXG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uti8ssKmXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti8ssKmXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utWBpgRNhn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2N7ktnBpZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u2N7ktnBpZ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u2N7ktnBpZ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u2N7ktnBpZ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2N7ktnBpZ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2N7ktnBpZ .row .foot-menu li p {
  margin: 0;
}
.cid-u2N7ktnBpZ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u2N7ktnBpZ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2N7ktnBpZ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2N7ktnBpZ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u2N7ktnBpZ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2N7ktnBpZ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2N7ktnBpZ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2N7ktnBpZ .row .row-copirayt p {
  width: 100%;
}
.cid-utWByjv6IB {
  z-index: 1000;
  width: 100%;
}
.cid-utWByjv6IB nav.navbar {
  position: fixed;
}
.cid-utWByjv6IB .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-utWByjv6IB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utWByjv6IB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utWByjv6IB .dropdown-item:hover,
.cid-utWByjv6IB .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-utWByjv6IB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utWByjv6IB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utWByjv6IB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utWByjv6IB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utWByjv6IB .nav-link {
  position: relative;
}
.cid-utWByjv6IB .container {
  display: flex;
  margin: auto;
}
.cid-utWByjv6IB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utWByjv6IB .dropdown-menu,
.cid-utWByjv6IB .navbar.opened {
  background: #fafafa !important;
}
.cid-utWByjv6IB .nav-item:focus,
.cid-utWByjv6IB .nav-link:focus {
  outline: none;
}
.cid-utWByjv6IB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utWByjv6IB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utWByjv6IB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utWByjv6IB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utWByjv6IB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utWByjv6IB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utWByjv6IB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-utWByjv6IB .navbar.opened {
  transition: all 0.3s;
}
.cid-utWByjv6IB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utWByjv6IB .navbar .navbar-logo img {
  width: auto;
}
.cid-utWByjv6IB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utWByjv6IB .navbar.collapsed {
  justify-content: center;
}
.cid-utWByjv6IB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utWByjv6IB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utWByjv6IB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utWByjv6IB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utWByjv6IB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utWByjv6IB .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-utWByjv6IB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utWByjv6IB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utWByjv6IB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utWByjv6IB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utWByjv6IB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utWByjv6IB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utWByjv6IB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utWByjv6IB .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-utWByjv6IB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utWByjv6IB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utWByjv6IB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utWByjv6IB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utWByjv6IB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utWByjv6IB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utWByjv6IB .navbar.navbar-short {
  min-height: 60px;
}
.cid-utWByjv6IB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utWByjv6IB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utWByjv6IB .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-utWByjv6IB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utWByjv6IB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utWByjv6IB .dropdown-item.active,
.cid-utWByjv6IB .dropdown-item:active {
  background-color: transparent;
}
.cid-utWByjv6IB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utWByjv6IB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utWByjv6IB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utWByjv6IB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-utWByjv6IB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utWByjv6IB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utWByjv6IB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utWByjv6IB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utWByjv6IB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utWByjv6IB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-utWByjv6IB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utWByjv6IB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utWByjv6IB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utWByjv6IB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utWByjv6IB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utWByjv6IB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utWByjv6IB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utWByjv6IB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utWByjv6IB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utWByjv6IB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utWByjv6IB .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-utWByjv6IB .navbar {
    height: 70px;
  }
  .cid-utWByjv6IB .navbar.opened {
    height: auto;
  }
  .cid-utWByjv6IB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utWByh9kmJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-utWByh9kmJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWByh9kmJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utWByh9kmJ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utWByh9kmJ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-utWByh9kmJ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utWBylurQW {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWBylurQW .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWBylurQW .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-utWBylurQW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWBylurQW .row {
  flex-direction: row-reverse;
}
.cid-utWBylurQW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWBylurQW .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWBynNvAT {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWBynNvAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWBynNvAT .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-utWBynNvAT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWBynNvAT .row {
  flex-direction: row-reverse;
}
.cid-utWBynNvAT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWBynNvAT .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWBypV62z {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWBypV62z .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWBypV62z .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-utWBypV62z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWBypV62z .row {
  flex-direction: row-reverse;
}
.cid-utWBypV62z img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWBypV62z .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWByscrPY {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWByscrPY .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWByscrPY .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-utWByscrPY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWByscrPY .row {
  flex-direction: row-reverse;
}
.cid-utWByscrPY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWByscrPY .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWByug23w {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWByug23w .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWByug23w .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-utWByug23w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWByug23w .row {
  flex-direction: row-reverse;
}
.cid-utWByug23w img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWByug23w .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWByw3wXh {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWByw3wXh .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWByw3wXh .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-utWByw3wXh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWByw3wXh .row {
  flex-direction: row-reverse;
}
.cid-utWByw3wXh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWByw3wXh .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWByxWbV2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWByxWbV2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWByxWbV2 .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-utWByxWbV2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWByxWbV2 .row {
  flex-direction: row-reverse;
}
.cid-utWByxWbV2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWByxWbV2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWByzSBWM {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWByzSBWM .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWByzSBWM .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-utWByzSBWM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWByzSBWM .row {
  flex-direction: row-reverse;
}
.cid-utWByzSBWM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWByzSBWM .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWByBJWfQ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWByBJWfQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWByBJWfQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utWByBJWfQ .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-utWByBJWfQ .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-utWByBJWfQ .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-utWByBJWfQ .card {
    margin-bottom: 2rem;
  }
  .cid-utWByBJWfQ .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-utWByBJWfQ .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utWByEjsSA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utWByEjsSA .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWByEjsSA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utWByEjsSA .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-utWByEjsSA .currentcost {
  color: #232323;
}
.cid-utWByEjsSA .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-utWByEjsSA .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-utWByEjsSA .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utWByEjsSA .text-box {
    padding: 1rem;
  }
}
.cid-utWByEjsSA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utWByGgxLg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utWByGgxLg .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWByGgxLg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utWByIsjdY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utWByKRrS9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utWByKRrS9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utWByKRrS9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utWByKRrS9 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utWByKRrS9 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utWByKRrS9 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utWByKRrS9 .row .foot-menu li p {
  margin: 0;
}
.cid-utWByKRrS9 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utWByKRrS9 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utWByKRrS9 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utWByKRrS9 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utWByKRrS9 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utWByKRrS9 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utWByKRrS9 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utWByKRrS9 .row .row-copirayt p {
  width: 100%;
}
.cid-utWMP8ZqnI {
  z-index: 1000;
  width: 100%;
}
.cid-utWMP8ZqnI nav.navbar {
  position: fixed;
}
.cid-utWMP8ZqnI .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-utWMP8ZqnI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utWMP8ZqnI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utWMP8ZqnI .dropdown-item:hover,
.cid-utWMP8ZqnI .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-utWMP8ZqnI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utWMP8ZqnI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utWMP8ZqnI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utWMP8ZqnI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utWMP8ZqnI .nav-link {
  position: relative;
}
.cid-utWMP8ZqnI .container {
  display: flex;
  margin: auto;
}
.cid-utWMP8ZqnI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utWMP8ZqnI .dropdown-menu,
.cid-utWMP8ZqnI .navbar.opened {
  background: #fafafa !important;
}
.cid-utWMP8ZqnI .nav-item:focus,
.cid-utWMP8ZqnI .nav-link:focus {
  outline: none;
}
.cid-utWMP8ZqnI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utWMP8ZqnI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utWMP8ZqnI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utWMP8ZqnI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utWMP8ZqnI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utWMP8ZqnI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utWMP8ZqnI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-utWMP8ZqnI .navbar.opened {
  transition: all 0.3s;
}
.cid-utWMP8ZqnI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utWMP8ZqnI .navbar .navbar-logo img {
  width: auto;
}
.cid-utWMP8ZqnI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utWMP8ZqnI .navbar.collapsed {
  justify-content: center;
}
.cid-utWMP8ZqnI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utWMP8ZqnI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utWMP8ZqnI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utWMP8ZqnI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utWMP8ZqnI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utWMP8ZqnI .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-utWMP8ZqnI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utWMP8ZqnI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utWMP8ZqnI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utWMP8ZqnI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utWMP8ZqnI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utWMP8ZqnI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utWMP8ZqnI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utWMP8ZqnI .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-utWMP8ZqnI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utWMP8ZqnI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utWMP8ZqnI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utWMP8ZqnI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utWMP8ZqnI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utWMP8ZqnI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utWMP8ZqnI .navbar.navbar-short {
  min-height: 60px;
}
.cid-utWMP8ZqnI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utWMP8ZqnI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utWMP8ZqnI .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-utWMP8ZqnI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utWMP8ZqnI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utWMP8ZqnI .dropdown-item.active,
.cid-utWMP8ZqnI .dropdown-item:active {
  background-color: transparent;
}
.cid-utWMP8ZqnI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utWMP8ZqnI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utWMP8ZqnI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utWMP8ZqnI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-utWMP8ZqnI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utWMP8ZqnI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utWMP8ZqnI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utWMP8ZqnI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utWMP8ZqnI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utWMP8ZqnI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-utWMP8ZqnI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utWMP8ZqnI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utWMP8ZqnI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utWMP8ZqnI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utWMP8ZqnI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utWMP8ZqnI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utWMP8ZqnI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utWMP8ZqnI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utWMP8ZqnI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utWMP8ZqnI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utWMP8ZqnI .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-utWMP8ZqnI .navbar {
    height: 70px;
  }
  .cid-utWMP8ZqnI .navbar.opened {
    height: auto;
  }
  .cid-utWMP8ZqnI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utWMP679mm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-utWMP679mm .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMP679mm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utWMP679mm .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utWMP679mm .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-utWMP679mm .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utWMPaXZ48 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWMPaXZ48 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPaXZ48 .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-utWMPaXZ48 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWMPaXZ48 .row {
  flex-direction: row-reverse;
}
.cid-utWMPaXZ48 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWMPaXZ48 .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWMPmD0or {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWMPmD0or .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPmD0or .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-utWMPmD0or .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWMPmD0or .row {
  flex-direction: row-reverse;
}
.cid-utWMPmD0or img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWMPmD0or .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWMPcG7rg {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWMPcG7rg .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPcG7rg .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-utWMPcG7rg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWMPcG7rg .row {
  flex-direction: row-reverse;
}
.cid-utWMPcG7rg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWMPcG7rg .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWMPeAjls {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWMPeAjls .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPeAjls .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-utWMPeAjls .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWMPeAjls .row {
  flex-direction: row-reverse;
}
.cid-utWMPeAjls img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWMPeAjls .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWMPghvmC {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWMPghvmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPghvmC .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-utWMPghvmC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWMPghvmC .row {
  flex-direction: row-reverse;
}
.cid-utWMPghvmC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWMPghvmC .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWMPhKKbB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWMPhKKbB .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPhKKbB .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-utWMPhKKbB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWMPhKKbB .row {
  flex-direction: row-reverse;
}
.cid-utWMPhKKbB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWMPhKKbB .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWMPk0SKC {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWMPk0SKC .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPk0SKC .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-utWMPk0SKC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utWMPk0SKC .row {
  flex-direction: row-reverse;
}
.cid-utWMPk0SKC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utWMPk0SKC .text-wrapper {
    padding: 2rem;
  }
}
.cid-utWMPnDNbb {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utWMPnDNbb .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPnDNbb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utWMPnDNbb .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-utWMPnDNbb .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-utWMPnDNbb .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-utWMPnDNbb .card {
    margin-bottom: 2rem;
  }
  .cid-utWMPnDNbb .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-utWMPnDNbb .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utWMPoSnM5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utWMPoSnM5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPoSnM5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utWMPoSnM5 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-utWMPoSnM5 .currentcost {
  color: #232323;
}
.cid-utWMPoSnM5 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-utWMPoSnM5 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-utWMPoSnM5 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utWMPoSnM5 .text-box {
    padding: 1rem;
  }
}
.cid-utWMPoSnM5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utWMPq1sZ6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utWMPq1sZ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utWMPq1sZ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utWMPrdhDQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utWMPs4pTf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utWMPs4pTf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utWMPs4pTf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utWMPs4pTf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utWMPs4pTf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utWMPs4pTf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utWMPs4pTf .row .foot-menu li p {
  margin: 0;
}
.cid-utWMPs4pTf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utWMPs4pTf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utWMPs4pTf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utWMPs4pTf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utWMPs4pTf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utWMPs4pTf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utWMPs4pTf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utWMPs4pTf .row .row-copirayt p {
  width: 100%;
}
.cid-uuyOBHIo0y {
  z-index: 1000;
  width: 100%;
}
.cid-uuyOBHIo0y nav.navbar {
  position: fixed;
}
.cid-uuyOBHIo0y .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-uuyOBHIo0y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuyOBHIo0y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuyOBHIo0y .dropdown-item:hover,
.cid-uuyOBHIo0y .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-uuyOBHIo0y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuyOBHIo0y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuyOBHIo0y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuyOBHIo0y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuyOBHIo0y .nav-link {
  position: relative;
}
.cid-uuyOBHIo0y .container {
  display: flex;
  margin: auto;
}
.cid-uuyOBHIo0y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuyOBHIo0y .dropdown-menu,
.cid-uuyOBHIo0y .navbar.opened {
  background: #fafafa !important;
}
.cid-uuyOBHIo0y .nav-item:focus,
.cid-uuyOBHIo0y .nav-link:focus {
  outline: none;
}
.cid-uuyOBHIo0y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuyOBHIo0y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuyOBHIo0y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuyOBHIo0y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuyOBHIo0y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuyOBHIo0y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuyOBHIo0y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uuyOBHIo0y .navbar.opened {
  transition: all 0.3s;
}
.cid-uuyOBHIo0y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuyOBHIo0y .navbar .navbar-logo img {
  width: auto;
}
.cid-uuyOBHIo0y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuyOBHIo0y .navbar.collapsed {
  justify-content: center;
}
.cid-uuyOBHIo0y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuyOBHIo0y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuyOBHIo0y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uuyOBHIo0y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuyOBHIo0y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuyOBHIo0y .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-uuyOBHIo0y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuyOBHIo0y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuyOBHIo0y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuyOBHIo0y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuyOBHIo0y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuyOBHIo0y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuyOBHIo0y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuyOBHIo0y .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-uuyOBHIo0y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuyOBHIo0y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuyOBHIo0y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuyOBHIo0y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuyOBHIo0y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuyOBHIo0y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uuyOBHIo0y .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuyOBHIo0y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuyOBHIo0y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuyOBHIo0y .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-uuyOBHIo0y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuyOBHIo0y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuyOBHIo0y .dropdown-item.active,
.cid-uuyOBHIo0y .dropdown-item:active {
  background-color: transparent;
}
.cid-uuyOBHIo0y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuyOBHIo0y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuyOBHIo0y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuyOBHIo0y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uuyOBHIo0y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuyOBHIo0y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuyOBHIo0y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuyOBHIo0y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuyOBHIo0y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuyOBHIo0y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uuyOBHIo0y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuyOBHIo0y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuyOBHIo0y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuyOBHIo0y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuyOBHIo0y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuyOBHIo0y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuyOBHIo0y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuyOBHIo0y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuyOBHIo0y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuyOBHIo0y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuyOBHIo0y .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-uuyOBHIo0y .navbar {
    height: 70px;
  }
  .cid-uuyOBHIo0y .navbar.opened {
    height: auto;
  }
  .cid-uuyOBHIo0y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuyOBIIELE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffae6;
}
.cid-uuyOBIIELE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBIIELE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuyOBIIELE .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uuyOBIIELE .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uuyOBIIELE .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uuyOBJJxbL {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuyOBJJxbL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBJJxbL .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-uuyOBJJxbL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuyOBJJxbL .row {
  flex-direction: row-reverse;
}
.cid-uuyOBJJxbL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuyOBJJxbL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuyOBKvDjJ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuyOBKvDjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBKvDjJ .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-uuyOBKvDjJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuyOBKvDjJ .row {
  flex-direction: row-reverse;
}
.cid-uuyOBKvDjJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuyOBKvDjJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuyOBLjd2A {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuyOBLjd2A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBLjd2A .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-uuyOBLjd2A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuyOBLjd2A .row {
  flex-direction: row-reverse;
}
.cid-uuyOBLjd2A img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuyOBLjd2A .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuyOBM8GTG {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuyOBM8GTG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBM8GTG .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-uuyOBM8GTG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuyOBM8GTG .row {
  flex-direction: row-reverse;
}
.cid-uuyOBM8GTG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuyOBM8GTG .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuyOBMWyWQ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuyOBMWyWQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBMWyWQ .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-uuyOBMWyWQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuyOBMWyWQ .row {
  flex-direction: row-reverse;
}
.cid-uuyOBMWyWQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuyOBMWyWQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuyOBNW8iz {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuyOBNW8iz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBNW8iz .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-uuyOBNW8iz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuyOBNW8iz .row {
  flex-direction: row-reverse;
}
.cid-uuyOBNW8iz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuyOBNW8iz .text-wrapper {
    padding: 2rem;
  }
}
.cid-uRX19P4PwM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRX19P4PwM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRX19P4PwM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRX19P4PwM .row {
  flex-direction: row-reverse;
}
.cid-uRX19P4PwM .video-wrapper iframe {
  width: 100%;
}
.cid-uRX19P4PwM .mbr-section-title,
.cid-uRX19P4PwM .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uRX19P4PwM .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuyOBQhDau {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuyOBQhDau .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBQhDau .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuyOBQhDau .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uuyOBQhDau .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uuyOBQhDau .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuyOBQhDau .card {
    margin-bottom: 2rem;
  }
  .cid-uuyOBQhDau .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uuyOBQhDau .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uuyOBRfW3C {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uuyOBRfW3C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBRfW3C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuyOBRfW3C .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uuyOBRfW3C .currentcost {
  color: #232323;
}
.cid-uuyOBRfW3C .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uuyOBRfW3C .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uuyOBRfW3C .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuyOBRfW3C .text-box {
    padding: 1rem;
  }
}
.cid-uuyOBRfW3C .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuyOBS6Gpi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuyOBS6Gpi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyOBS6Gpi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuyOBSPIw0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuyOBTpUMN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uuyOBTpUMN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uuyOBTpUMN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uuyOBTpUMN .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uuyOBTpUMN .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uuyOBTpUMN .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uuyOBTpUMN .row .foot-menu li p {
  margin: 0;
}
.cid-uuyOBTpUMN .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uuyOBTpUMN .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uuyOBTpUMN .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uuyOBTpUMN .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uuyOBTpUMN .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uuyOBTpUMN .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uuyOBTpUMN .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uuyOBTpUMN .row .row-copirayt p {
  width: 100%;
}
.cid-uuGhuUJSXM {
  z-index: 1000;
  width: 100%;
}
.cid-uuGhuUJSXM nav.navbar {
  position: fixed;
}
.cid-uuGhuUJSXM .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-uuGhuUJSXM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuGhuUJSXM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuGhuUJSXM .dropdown-item:hover,
.cid-uuGhuUJSXM .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-uuGhuUJSXM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuGhuUJSXM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuGhuUJSXM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuGhuUJSXM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuGhuUJSXM .nav-link {
  position: relative;
}
.cid-uuGhuUJSXM .container {
  display: flex;
  margin: auto;
}
.cid-uuGhuUJSXM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuGhuUJSXM .dropdown-menu,
.cid-uuGhuUJSXM .navbar.opened {
  background: #fafafa !important;
}
.cid-uuGhuUJSXM .nav-item:focus,
.cid-uuGhuUJSXM .nav-link:focus {
  outline: none;
}
.cid-uuGhuUJSXM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuGhuUJSXM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuGhuUJSXM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuGhuUJSXM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuGhuUJSXM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuGhuUJSXM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuGhuUJSXM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uuGhuUJSXM .navbar.opened {
  transition: all 0.3s;
}
.cid-uuGhuUJSXM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuGhuUJSXM .navbar .navbar-logo img {
  width: auto;
}
.cid-uuGhuUJSXM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuGhuUJSXM .navbar.collapsed {
  justify-content: center;
}
.cid-uuGhuUJSXM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuGhuUJSXM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuGhuUJSXM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uuGhuUJSXM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuGhuUJSXM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuGhuUJSXM .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-uuGhuUJSXM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuGhuUJSXM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuGhuUJSXM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuGhuUJSXM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuGhuUJSXM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuGhuUJSXM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuGhuUJSXM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuGhuUJSXM .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-uuGhuUJSXM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuGhuUJSXM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuGhuUJSXM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuGhuUJSXM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuGhuUJSXM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuGhuUJSXM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uuGhuUJSXM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuGhuUJSXM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuGhuUJSXM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuGhuUJSXM .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-uuGhuUJSXM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuGhuUJSXM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuGhuUJSXM .dropdown-item.active,
.cid-uuGhuUJSXM .dropdown-item:active {
  background-color: transparent;
}
.cid-uuGhuUJSXM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuGhuUJSXM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuGhuUJSXM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuGhuUJSXM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uuGhuUJSXM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuGhuUJSXM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuGhuUJSXM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuGhuUJSXM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuGhuUJSXM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuGhuUJSXM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uuGhuUJSXM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuGhuUJSXM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuGhuUJSXM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuGhuUJSXM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuGhuUJSXM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuGhuUJSXM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuGhuUJSXM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuGhuUJSXM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuGhuUJSXM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuGhuUJSXM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuGhuUJSXM .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-uuGhuUJSXM .navbar {
    height: 70px;
  }
  .cid-uuGhuUJSXM .navbar.opened {
    height: auto;
  }
  .cid-uuGhuUJSXM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuGhuVVNFt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-uuGhuVVNFt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhuVVNFt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuGhuVVNFt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uuGhuVVNFt .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uuGhuVVNFt .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uuGhuWRTzA {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuGhuWRTzA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhuWRTzA .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-uuGhuWRTzA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuGhuWRTzA .row {
  flex-direction: row-reverse;
}
.cid-uuGhuWRTzA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuGhuWRTzA .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuGhuXS0MB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuGhuXS0MB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhuXS0MB .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-uuGhuXS0MB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuGhuXS0MB .row {
  flex-direction: row-reverse;
}
.cid-uuGhuXS0MB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuGhuXS0MB .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuGhuYFzxF {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuGhuYFzxF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhuYFzxF .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-uuGhuYFzxF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuGhuYFzxF .row {
  flex-direction: row-reverse;
}
.cid-uuGhuYFzxF img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuGhuYFzxF .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuGhuZqGkl {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuGhuZqGkl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhuZqGkl .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-uuGhuZqGkl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuGhuZqGkl .row {
  flex-direction: row-reverse;
}
.cid-uuGhuZqGkl img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuGhuZqGkl .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuGhv0oQzP {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuGhv0oQzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhv0oQzP .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-uuGhv0oQzP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuGhv0oQzP .row {
  flex-direction: row-reverse;
}
.cid-uuGhv0oQzP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuGhv0oQzP .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuGhv18t6V {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuGhv18t6V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhv18t6V .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-uuGhv18t6V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuGhv18t6V .row {
  flex-direction: row-reverse;
}
.cid-uuGhv18t6V img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuGhv18t6V .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuGpiOCz6v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuGpiOCz6v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGpiOCz6v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuGpiOCz6v .row {
  flex-direction: row-reverse;
}
.cid-uuGpiOCz6v .video-wrapper iframe {
  width: 100%;
}
.cid-uuGpiOCz6v .mbr-section-title,
.cid-uuGpiOCz6v .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uuGpiOCz6v .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuGhv1So3E {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuGhv1So3E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhv1So3E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuGhv1So3E .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uuGhv1So3E .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uuGhv1So3E .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuGhv1So3E .card {
    margin-bottom: 2rem;
  }
  .cid-uuGhv1So3E .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uuGhv1So3E .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uuGhv2RVtF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uuGhv2RVtF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhv2RVtF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuGhv2RVtF .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uuGhv2RVtF .currentcost {
  color: #232323;
}
.cid-uuGhv2RVtF .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uuGhv2RVtF .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uuGhv2RVtF .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuGhv2RVtF .text-box {
    padding: 1rem;
  }
}
.cid-uuGhv2RVtF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuGhv4BqHm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuGhv4BqHm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuGhv4BqHm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuGhv5nXP5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuGhv61yYE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uuGhv61yYE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uuGhv61yYE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uuGhv61yYE .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uuGhv61yYE .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uuGhv61yYE .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uuGhv61yYE .row .foot-menu li p {
  margin: 0;
}
.cid-uuGhv61yYE .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uuGhv61yYE .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uuGhv61yYE .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uuGhv61yYE .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uuGhv61yYE .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uuGhv61yYE .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uuGhv61yYE .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uuGhv61yYE .row .row-copirayt p {
  width: 100%;
}
.cid-uxfJoOkcsH {
  z-index: 1000;
  width: 100%;
}
.cid-uxfJoOkcsH nav.navbar {
  position: fixed;
}
.cid-uxfJoOkcsH .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-uxfJoOkcsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxfJoOkcsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxfJoOkcsH .dropdown-item:hover,
.cid-uxfJoOkcsH .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-uxfJoOkcsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxfJoOkcsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxfJoOkcsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxfJoOkcsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxfJoOkcsH .nav-link {
  position: relative;
}
.cid-uxfJoOkcsH .container {
  display: flex;
  margin: auto;
}
.cid-uxfJoOkcsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxfJoOkcsH .dropdown-menu,
.cid-uxfJoOkcsH .navbar.opened {
  background: #fafafa !important;
}
.cid-uxfJoOkcsH .nav-item:focus,
.cid-uxfJoOkcsH .nav-link:focus {
  outline: none;
}
.cid-uxfJoOkcsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxfJoOkcsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxfJoOkcsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxfJoOkcsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxfJoOkcsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxfJoOkcsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxfJoOkcsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uxfJoOkcsH .navbar.opened {
  transition: all 0.3s;
}
.cid-uxfJoOkcsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxfJoOkcsH .navbar .navbar-logo img {
  width: auto;
}
.cid-uxfJoOkcsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxfJoOkcsH .navbar.collapsed {
  justify-content: center;
}
.cid-uxfJoOkcsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxfJoOkcsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxfJoOkcsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uxfJoOkcsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxfJoOkcsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxfJoOkcsH .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-uxfJoOkcsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxfJoOkcsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxfJoOkcsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxfJoOkcsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxfJoOkcsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxfJoOkcsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxfJoOkcsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxfJoOkcsH .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-uxfJoOkcsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxfJoOkcsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxfJoOkcsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxfJoOkcsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxfJoOkcsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxfJoOkcsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uxfJoOkcsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxfJoOkcsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxfJoOkcsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxfJoOkcsH .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-uxfJoOkcsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxfJoOkcsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxfJoOkcsH .dropdown-item.active,
.cid-uxfJoOkcsH .dropdown-item:active {
  background-color: transparent;
}
.cid-uxfJoOkcsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxfJoOkcsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxfJoOkcsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxfJoOkcsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uxfJoOkcsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxfJoOkcsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxfJoOkcsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxfJoOkcsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxfJoOkcsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxfJoOkcsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uxfJoOkcsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxfJoOkcsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxfJoOkcsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxfJoOkcsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxfJoOkcsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxfJoOkcsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxfJoOkcsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxfJoOkcsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxfJoOkcsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uxfJoOkcsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxfJoOkcsH .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-uxfJoOkcsH .navbar {
    height: 70px;
  }
  .cid-uxfJoOkcsH .navbar.opened {
    height: auto;
  }
  .cid-uxfJoOkcsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxfJHjgVfz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxfJoYzjhK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uxfJoYzjhK .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uxfJoYzjhK .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uxfJoYzjhK .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uxfJoYzjhK .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uxfJoYzjhK .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uxfJoYzjhK .row .foot-menu li p {
  margin: 0;
}
.cid-uxfJoYzjhK .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uxfJoYzjhK .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uxfJoYzjhK .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uxfJoYzjhK .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uxfJoYzjhK .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uxfJoYzjhK .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uxfJoYzjhK .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uxfJoYzjhK .row .row-copirayt p {
  width: 100%;
}
