body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-shmleb6daN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-shmleb6daN nav.navbar {
  position: fixed;
}
.cid-shmleb6daN .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-shmleb6daN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-shmleb6daN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-shmleb6daN .dropdown-item:hover,
.cid-shmleb6daN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-shmleb6daN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-shmleb6daN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-shmleb6daN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-shmleb6daN .nav-link {
  position: relative;
}
.cid-shmleb6daN .container {
  display: flex;
  margin: auto;
}
.cid-shmleb6daN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-shmleb6daN .dropdown-menu,
.cid-shmleb6daN .navbar.opened {
  background: #000000 !important;
}
.cid-shmleb6daN .nav-item:focus,
.cid-shmleb6daN .nav-link:focus {
  outline: none;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shmleb6daN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shmleb6daN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-shmleb6daN .navbar.opened {
  transition: all 0.3s;
}
.cid-shmleb6daN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-shmleb6daN .navbar .navbar-logo img {
  width: auto;
}
.cid-shmleb6daN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-shmleb6daN .navbar.collapsed {
  justify-content: center;
}
.cid-shmleb6daN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shmleb6daN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shmleb6daN .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-shmleb6daN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-shmleb6daN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-shmleb6daN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shmleb6daN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shmleb6daN .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-shmleb6daN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-shmleb6daN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shmleb6daN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-shmleb6daN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-shmleb6daN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-shmleb6daN .navbar.navbar-short {
  min-height: 60px;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-shmleb6daN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shmleb6daN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shmleb6daN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shmleb6daN .dropdown-item.active,
.cid-shmleb6daN .dropdown-item:active {
  background-color: transparent;
}
.cid-shmleb6daN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shmleb6daN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shmleb6daN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-shmleb6daN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-shmleb6daN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-shmleb6daN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-shmleb6daN .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-shmleb6daN .navbar {
    height: 70px;
  }
  .cid-shmleb6daN .navbar.opened {
    height: auto;
  }
  .cid-shmleb6daN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shmpPvTLkd {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-shmpPvTLkd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-shmpPvTLkd .row {
  flex-direction: row-reverse;
}
.cid-shmpPvTLkd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-shmpPvTLkd .text-wrapper {
    padding: 2rem;
  }
}
.cid-shmpPvTLkd .mbr-section-title DIV {
  text-align: center;
}
.cid-shmpPvTLkd .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-shmpPvTLkd .mbr-description {
  color: #ffffff;
}
.cid-shmpPvTLkd .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sVOSbLiewC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVOSbLiewC .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sVOSbLiewC .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sVOSbLiewC .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tqCCiP5kG9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4479d9;
}
.cid-tqCCiP5kG9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqCCiP5kG9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqCCiP5kG9 .mbr-section-title {
  color: #ffffff;
}
.cid-tqCCKE5v15 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqCCKE5v15 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCCKE5v15 .row {
  flex-direction: row-reverse;
}
.cid-tqCCKE5v15 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCCKE5v15 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCCKE5v15 .mbr-text {
  color: #000000;
}
.cid-tqCCLxuDJl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-tqCCLxuDJl .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tqCCLxuDJl .plan-body {
  padding-bottom: 2rem;
}
.cid-tqCCLxuDJl .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tqCCLxuDJl .price {
  color: #e43f3f;
}
.cid-tqCCLxuDJl .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tqCCLxuDJl .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tqCCLxuDJl .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-tqCCLxuDJl .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tqCCLxuDJl .plan {
    margin-bottom: 2rem;
  }
}
.cid-tqCCMa8w14 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqCCMa8w14 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCCMa8w14 .row {
  flex-direction: row-reverse;
}
.cid-tqCCMa8w14 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCCMa8w14 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCCMa8w14 .mbr-text {
  color: #000000;
}
.cid-tqCCO7vmVZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-tqCCO7vmVZ .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tqCCO7vmVZ .plan-body {
  padding-bottom: 2rem;
}
.cid-tqCCO7vmVZ .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tqCCO7vmVZ .price {
  color: #e43f3f;
}
.cid-tqCCO7vmVZ .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tqCCO7vmVZ .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tqCCO7vmVZ .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-tqCCO7vmVZ .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tqCCO7vmVZ .plan {
    margin-bottom: 2rem;
  }
}
.cid-tqCCPqvATQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqCCPqvATQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCCPqvATQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCCPqvATQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCCQgTA3R {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqCCQgTA3R .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tqCCQgTA3R .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tqCCQgTA3R .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tqCCQgTA3R .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tqCCZACSpw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4479d9;
}
.cid-tqCCZACSpw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqCCZACSpw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqCCZACSpw .mbr-section-title {
  color: #ffffff;
}
.cid-tqCDCrUHKq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqCDCrUHKq .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tqCDCrUHKq .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tqCDCrUHKq .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-tqCDDT38NO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tqCDDT38NO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCDDT38NO .row {
  flex-direction: row-reverse;
}
.cid-tqCDDT38NO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCDDT38NO .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCDDT38NO .mbr-section-title {
  color: #ffffff;
}
.cid-tqCDDT38NO .mbr-text {
  color: #ffffff;
}
.cid-tqCDDT38NO .mbr-description {
  color: #ffffff;
}
.cid-tqCDEUuiyn {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqCDEUuiyn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCDEUuiyn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCDEUuiyn .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCDEUuiyn .mbr-section-title {
  color: #000000;
}
.cid-tqCDFVywjB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqCDFVywjB .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqCDHgYvDY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tqCDHgYvDY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCDHgYvDY .row {
  flex-direction: row-reverse;
}
.cid-tqCDHgYvDY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCDHgYvDY .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCDHgYvDY .mbr-text {
  color: #ffffff;
}
.cid-tqCDHgYvDY .mbr-section-title {
  color: #ffffff;
}
.cid-tqCDItFPvi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqCDItFPvi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCDItFPvi .row {
  flex-direction: row-reverse;
}
.cid-tqCDItFPvi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCDItFPvi .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCDItFPvi .mbr-section-title {
  color: #000000;
}
.cid-tqCDJhixwJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tqCDJhixwJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCDJhixwJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCDJhixwJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCDJhixwJ .mbr-section-title {
  color: #ffffff;
}
.cid-tqCDJhixwJ .mbr-text {
  color: #ffffff;
}
.cid-tqCDKd8gAW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqCDKd8gAW .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqCDKX5jpy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqCDKX5jpy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCDKX5jpy img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCDKX5jpy .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCDKX5jpy .mbr-section-title {
  color: #000000;
}
.cid-tqCDMtpURq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-tqCDMtpURq .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tqCDMtpURq .plan-body {
  padding-bottom: 2rem;
}
.cid-tqCDMtpURq .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tqCDMtpURq .price {
  color: #e43f3f;
}
.cid-tqCDMtpURq .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tqCDMtpURq .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tqCDMtpURq .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-tqCDMtpURq .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tqCDMtpURq .plan {
    margin-bottom: 2rem;
  }
}
.cid-tqCDNBKl6p {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tqCDNBKl6p .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tqCDNBKl6p .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tqCDNBKl6p .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tqCDNBKl6p .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tqCDNBKl6p .mbr-section-title {
  color: #e43f3f;
}
.cid-tqCDPEyLH6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4479d9;
}
.cid-tqCDPEyLH6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqCDPEyLH6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqCDPEyLH6 .mbr-section-title {
  color: #ffffff;
}
.cid-tqCEnYCoFm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqCEnYCoFm .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tqCEnYCoFm .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tqCEnYCoFm .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-tqCEoDZscS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqCEoDZscS .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqCEpoZipI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tqCEpoZipI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqCEpoZipI .row {
  flex-direction: row-reverse;
}
.cid-tqCEpoZipI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqCEpoZipI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqCEpoZipI .mbr-section-title {
  color: #ffffff;
}
.cid-tqCEpoZipI .mbr-text {
  color: #ffffff;
}
.cid-tqCEpoZipI .mbr-description {
  color: #ffffff;
}
.cid-tqCEpZUac8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqCEpZUac8 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqCErmL9tt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqCErmL9tt .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqCEtX7C8Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #e43f3f;
}
.cid-tqCEtX7C8Z .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tqCEtX7C8Z .plan-body {
  padding-bottom: 2rem;
}
.cid-tqCEtX7C8Z .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tqCEtX7C8Z .price {
  color: #e43f3f;
}
.cid-tqCEtX7C8Z .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tqCEtX7C8Z .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tqCEtX7C8Z .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-tqCEtX7C8Z .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tqCEtX7C8Z .plan {
    margin-bottom: 2rem;
  }
}
.cid-tqCEqESBkg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqCEqESBkg .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tqCEGl8355 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tqCEGl8355 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tqCEGl8355 .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tqCEGl8355 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tqCEGl8355 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tqCEGl8355 .mbr-section-title {
  color: #e43f3f;
}
.cid-tqCEv6l9tw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqCEv6l9tw .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-shmxRUq22Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-shmleb6daN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-shmleb6daN nav.navbar {
  position: fixed;
}
.cid-shmleb6daN .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-shmleb6daN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-shmleb6daN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-shmleb6daN .dropdown-item:hover,
.cid-shmleb6daN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-shmleb6daN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-shmleb6daN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-shmleb6daN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-shmleb6daN .nav-link {
  position: relative;
}
.cid-shmleb6daN .container {
  display: flex;
  margin: auto;
}
.cid-shmleb6daN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-shmleb6daN .dropdown-menu,
.cid-shmleb6daN .navbar.opened {
  background: #000000 !important;
}
.cid-shmleb6daN .nav-item:focus,
.cid-shmleb6daN .nav-link:focus {
  outline: none;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shmleb6daN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shmleb6daN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-shmleb6daN .navbar.opened {
  transition: all 0.3s;
}
.cid-shmleb6daN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-shmleb6daN .navbar .navbar-logo img {
  width: auto;
}
.cid-shmleb6daN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-shmleb6daN .navbar.collapsed {
  justify-content: center;
}
.cid-shmleb6daN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shmleb6daN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shmleb6daN .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-shmleb6daN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-shmleb6daN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-shmleb6daN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shmleb6daN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shmleb6daN .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-shmleb6daN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-shmleb6daN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shmleb6daN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-shmleb6daN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-shmleb6daN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-shmleb6daN .navbar.navbar-short {
  min-height: 60px;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-shmleb6daN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shmleb6daN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shmleb6daN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shmleb6daN .dropdown-item.active,
.cid-shmleb6daN .dropdown-item:active {
  background-color: transparent;
}
.cid-shmleb6daN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shmleb6daN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shmleb6daN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-shmleb6daN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-shmleb6daN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-shmleb6daN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-shmleb6daN .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-shmleb6daN .navbar {
    height: 70px;
  }
  .cid-shmleb6daN .navbar.opened {
    height: auto;
  }
  .cid-shmleb6daN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-siEBmteQLy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-siEBmteQLy .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-siEBmteQLy .mbr-section-subtitle {
  text-align: left;
}
.cid-shmxRUq22Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-shmleb6daN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-shmleb6daN nav.navbar {
  position: fixed;
}
.cid-shmleb6daN .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-shmleb6daN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-shmleb6daN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-shmleb6daN .dropdown-item:hover,
.cid-shmleb6daN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-shmleb6daN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-shmleb6daN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-shmleb6daN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-shmleb6daN .nav-link {
  position: relative;
}
.cid-shmleb6daN .container {
  display: flex;
  margin: auto;
}
.cid-shmleb6daN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-shmleb6daN .dropdown-menu,
.cid-shmleb6daN .navbar.opened {
  background: #000000 !important;
}
.cid-shmleb6daN .nav-item:focus,
.cid-shmleb6daN .nav-link:focus {
  outline: none;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shmleb6daN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shmleb6daN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-shmleb6daN .navbar.opened {
  transition: all 0.3s;
}
.cid-shmleb6daN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-shmleb6daN .navbar .navbar-logo img {
  width: auto;
}
.cid-shmleb6daN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-shmleb6daN .navbar.collapsed {
  justify-content: center;
}
.cid-shmleb6daN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shmleb6daN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shmleb6daN .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-shmleb6daN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-shmleb6daN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-shmleb6daN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shmleb6daN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shmleb6daN .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-shmleb6daN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-shmleb6daN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shmleb6daN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-shmleb6daN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-shmleb6daN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-shmleb6daN .navbar.navbar-short {
  min-height: 60px;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-shmleb6daN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shmleb6daN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shmleb6daN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shmleb6daN .dropdown-item.active,
.cid-shmleb6daN .dropdown-item:active {
  background-color: transparent;
}
.cid-shmleb6daN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shmleb6daN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shmleb6daN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-shmleb6daN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-shmleb6daN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-shmleb6daN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-shmleb6daN .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-shmleb6daN .navbar {
    height: 70px;
  }
  .cid-shmleb6daN .navbar.opened {
    height: auto;
  }
  .cid-shmleb6daN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-siEDLVtIDM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-shmxRUq22Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-shmleb6daN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-shmleb6daN nav.navbar {
  position: fixed;
}
.cid-shmleb6daN .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-shmleb6daN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-shmleb6daN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-shmleb6daN .dropdown-item:hover,
.cid-shmleb6daN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-shmleb6daN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-shmleb6daN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-shmleb6daN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-shmleb6daN .nav-link {
  position: relative;
}
.cid-shmleb6daN .container {
  display: flex;
  margin: auto;
}
.cid-shmleb6daN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-shmleb6daN .dropdown-menu,
.cid-shmleb6daN .navbar.opened {
  background: #000000 !important;
}
.cid-shmleb6daN .nav-item:focus,
.cid-shmleb6daN .nav-link:focus {
  outline: none;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shmleb6daN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shmleb6daN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-shmleb6daN .navbar.opened {
  transition: all 0.3s;
}
.cid-shmleb6daN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-shmleb6daN .navbar .navbar-logo img {
  width: auto;
}
.cid-shmleb6daN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-shmleb6daN .navbar.collapsed {
  justify-content: center;
}
.cid-shmleb6daN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shmleb6daN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shmleb6daN .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-shmleb6daN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-shmleb6daN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-shmleb6daN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shmleb6daN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shmleb6daN .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-shmleb6daN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-shmleb6daN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shmleb6daN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-shmleb6daN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-shmleb6daN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-shmleb6daN .navbar.navbar-short {
  min-height: 60px;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-shmleb6daN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shmleb6daN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shmleb6daN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shmleb6daN .dropdown-item.active,
.cid-shmleb6daN .dropdown-item:active {
  background-color: transparent;
}
.cid-shmleb6daN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shmleb6daN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shmleb6daN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-shmleb6daN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-shmleb6daN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-shmleb6daN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-shmleb6daN .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-shmleb6daN .navbar {
    height: 70px;
  }
  .cid-shmleb6daN .navbar.opened {
    height: auto;
  }
  .cid-shmleb6daN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shmB7VDRCL {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-shmB7VDRCL .mbr-section-title {
  color: #ffffff;
}
.cid-sVOTQEzjWp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sVOTQEzjWp .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sVOTQEzjWp .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sVOTQEzjWp .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-sVOTQEzjWp .mbr-text {
  color: #ffffff;
}
.cid-sVUbvsjjWW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sVUbvsjjWW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVUbvsjjWW .row {
  flex-direction: row-reverse;
}
.cid-sVUbvsjjWW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sVUbvsjjWW .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVUbvsjjWW .mbr-text {
  color: #000000;
}
.cid-tpZ675KqVq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-tpZ675KqVq .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tpZ675KqVq .plan-body {
  padding-bottom: 2rem;
}
.cid-tpZ675KqVq .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tpZ675KqVq .price {
  color: #e43f3f;
}
.cid-tpZ675KqVq .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tpZ675KqVq .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tpZ675KqVq .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-tpZ675KqVq .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tpZ675KqVq .plan {
    margin-bottom: 2rem;
  }
}
.cid-sVTHtYZrxx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sVTHtYZrxx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVTHtYZrxx .row {
  flex-direction: row-reverse;
}
.cid-sVTHtYZrxx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sVTHtYZrxx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVTHtYZrxx .mbr-text {
  color: #000000;
}
.cid-sm4pvqYjN8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-sm4pvqYjN8 .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sm4pvqYjN8 .plan-body {
  padding-bottom: 2rem;
}
.cid-sm4pvqYjN8 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sm4pvqYjN8 .price {
  color: #e43f3f;
}
.cid-sm4pvqYjN8 .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sm4pvqYjN8 .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sm4pvqYjN8 .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-sm4pvqYjN8 .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sm4pvqYjN8 .plan {
    margin-bottom: 2rem;
  }
}
.cid-sVTHv32tsj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sVTHv32tsj .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVTHv32tsj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sVTHv32tsj .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sVTHv32tsj .mbr-text {
  color: #000000;
}
.cid-shmCHza70U {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-shmCHza70U .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-shmCHza70U img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-shmCHza70U .text-wrapper {
    padding: 2rem;
  }
}
.cid-shmFIk3oKA {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-shmFIk3oKA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-shmFIk3oKA .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-shmFIk3oKA .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-shmFIk3oKA .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sm4qAceWoV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sm4qAceWoV .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sLOX765iLs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sLOX765iLs .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-shmxRUq22Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-shmleb6daN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-shmleb6daN nav.navbar {
  position: fixed;
}
.cid-shmleb6daN .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-shmleb6daN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-shmleb6daN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-shmleb6daN .dropdown-item:hover,
.cid-shmleb6daN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-shmleb6daN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-shmleb6daN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-shmleb6daN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-shmleb6daN .nav-link {
  position: relative;
}
.cid-shmleb6daN .container {
  display: flex;
  margin: auto;
}
.cid-shmleb6daN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-shmleb6daN .dropdown-menu,
.cid-shmleb6daN .navbar.opened {
  background: #000000 !important;
}
.cid-shmleb6daN .nav-item:focus,
.cid-shmleb6daN .nav-link:focus {
  outline: none;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shmleb6daN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shmleb6daN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-shmleb6daN .navbar.opened {
  transition: all 0.3s;
}
.cid-shmleb6daN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-shmleb6daN .navbar .navbar-logo img {
  width: auto;
}
.cid-shmleb6daN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-shmleb6daN .navbar.collapsed {
  justify-content: center;
}
.cid-shmleb6daN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shmleb6daN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shmleb6daN .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-shmleb6daN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-shmleb6daN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-shmleb6daN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shmleb6daN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shmleb6daN .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-shmleb6daN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-shmleb6daN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shmleb6daN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-shmleb6daN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-shmleb6daN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-shmleb6daN .navbar.navbar-short {
  min-height: 60px;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-shmleb6daN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shmleb6daN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shmleb6daN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shmleb6daN .dropdown-item.active,
.cid-shmleb6daN .dropdown-item:active {
  background-color: transparent;
}
.cid-shmleb6daN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shmleb6daN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shmleb6daN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-shmleb6daN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-shmleb6daN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-shmleb6daN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-shmleb6daN .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-shmleb6daN .navbar {
    height: 70px;
  }
  .cid-shmleb6daN .navbar.opened {
    height: auto;
  }
  .cid-shmleb6daN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-shrKwAdurR {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-shrKwAdurR .mbr-section-title {
  color: #ffffff;
}
.cid-sVOVwnop1I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVOVwnop1I .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sVOVwnop1I .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sVOVwnop1I .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-shrL4wmdyJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-shrL4wmdyJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-shrL4wmdyJ .row {
  flex-direction: row-reverse;
}
.cid-shrL4wmdyJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-shrL4wmdyJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-shrL4wmdyJ .mbr-section-title {
  color: #ffffff;
}
.cid-shrL4wmdyJ .mbr-text {
  color: #ffffff;
}
.cid-shrL4wmdyJ .mbr-description {
  color: #ffffff;
}
.cid-shrMBc2LN0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-shrMBc2LN0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-shrMBc2LN0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-shrMBc2LN0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-shrMBc2LN0 .mbr-section-title {
  color: #000000;
}
.cid-sogoSdHQRj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sogoSdHQRj .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-si1MXbvDov {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-si1MXbvDov .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-si1MXbvDov .row {
  flex-direction: row-reverse;
}
.cid-si1MXbvDov img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-si1MXbvDov .text-wrapper {
    padding: 2rem;
  }
}
.cid-si1MXbvDov .mbr-text {
  color: #ffffff;
}
.cid-si1MXbvDov .mbr-section-title {
  color: #ffffff;
}
.cid-shrNz513Lh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-shrNz513Lh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-shrNz513Lh .row {
  flex-direction: row-reverse;
}
.cid-shrNz513Lh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-shrNz513Lh .text-wrapper {
    padding: 2rem;
  }
}
.cid-shrNz513Lh .mbr-section-title {
  color: #000000;
}
.cid-sm4qXsLjkW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sm4qXsLjkW .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-shrXFT0O3P {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-shrXFT0O3P .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-shrXFT0O3P img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-shrXFT0O3P .text-wrapper {
    padding: 2rem;
  }
}
.cid-shrXFT0O3P .mbr-section-title {
  color: #ffffff;
}
.cid-shrXFT0O3P .mbr-text {
  color: #ffffff;
}
.cid-shrXXUAooT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-shrXXUAooT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-shrXXUAooT .row {
  flex-direction: row-reverse;
}
.cid-shrXXUAooT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-shrXXUAooT .text-wrapper {
    padding: 2rem;
  }
}
.cid-shrXXUAooT .mbr-section-title {
  color: #353535;
}
.cid-sm4qYrLSPE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sm4qYrLSPE .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-shrYk4eiwA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-shrYk4eiwA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-shrYk4eiwA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-shrYk4eiwA .text-wrapper {
    padding: 2rem;
  }
}
.cid-shrYk4eiwA .mbr-section-title {
  color: #000000;
}
.cid-sm4o1som4H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-sm4o1som4H .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sm4o1som4H .plan-body {
  padding-bottom: 2rem;
}
.cid-sm4o1som4H .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sm4o1som4H .price {
  color: #e43f3f;
}
.cid-sm4o1som4H .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sm4o1som4H .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sm4o1som4H .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-sm4o1som4H .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sm4o1som4H .plan {
    margin-bottom: 2rem;
  }
}
.cid-shs0lrRSXd {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-shs0lrRSXd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-shs0lrRSXd .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-shs0lrRSXd .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-shs0lrRSXd .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-shs0lrRSXd .mbr-section-title {
  color: #e43f3f;
}
.cid-sLOYe0rp0U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sLOYe0rp0U .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-shmxRUq22Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-shmleb6daN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-shmleb6daN nav.navbar {
  position: fixed;
}
.cid-shmleb6daN .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-shmleb6daN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-shmleb6daN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-shmleb6daN .dropdown-item:hover,
.cid-shmleb6daN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-shmleb6daN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-shmleb6daN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-shmleb6daN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-shmleb6daN .nav-link {
  position: relative;
}
.cid-shmleb6daN .container {
  display: flex;
  margin: auto;
}
.cid-shmleb6daN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-shmleb6daN .dropdown-menu,
.cid-shmleb6daN .navbar.opened {
  background: #000000 !important;
}
.cid-shmleb6daN .nav-item:focus,
.cid-shmleb6daN .nav-link:focus {
  outline: none;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shmleb6daN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shmleb6daN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-shmleb6daN .navbar.opened {
  transition: all 0.3s;
}
.cid-shmleb6daN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-shmleb6daN .navbar .navbar-logo img {
  width: auto;
}
.cid-shmleb6daN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-shmleb6daN .navbar.collapsed {
  justify-content: center;
}
.cid-shmleb6daN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shmleb6daN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shmleb6daN .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-shmleb6daN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-shmleb6daN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-shmleb6daN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shmleb6daN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shmleb6daN .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-shmleb6daN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-shmleb6daN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shmleb6daN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-shmleb6daN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-shmleb6daN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-shmleb6daN .navbar.navbar-short {
  min-height: 60px;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-shmleb6daN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shmleb6daN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shmleb6daN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shmleb6daN .dropdown-item.active,
.cid-shmleb6daN .dropdown-item:active {
  background-color: transparent;
}
.cid-shmleb6daN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shmleb6daN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shmleb6daN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-shmleb6daN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-shmleb6daN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-shmleb6daN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-shmleb6daN .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-shmleb6daN .navbar {
    height: 70px;
  }
  .cid-shmleb6daN .navbar.opened {
    height: auto;
  }
  .cid-shmleb6daN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-si1TPXSi2K {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-si1TPXSi2K .mbr-section-title {
  color: #ffffff;
}
.cid-si1UV4Ulrv {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-si1UV4Ulrv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-si1UV4Ulrv .row {
  flex-direction: row-reverse;
}
.cid-si1UV4Ulrv img {
  width: 100%;
}
.cid-sVOWoEJLdx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVOWoEJLdx .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sVOWoEJLdx .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sVOWoEJLdx .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-slqvmG8Pqx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvmG8Pqx .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-si1Vvq0r80 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-si1Vvq0r80 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-si1Vvq0r80 .row {
  flex-direction: row-reverse;
}
.cid-si1Vvq0r80 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-si1Vvq0r80 .text-wrapper {
    padding: 2rem;
  }
}
.cid-si1Vvq0r80 .mbr-section-title {
  color: #ffffff;
}
.cid-si1Vvq0r80 .mbr-text {
  color: #ffffff;
}
.cid-si1Vvq0r80 .mbr-description {
  color: #ffffff;
}
.cid-slqvnlbyUz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvnlbyUz .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-si23IP9ugj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-si23IP9ugj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-si23IP9ugj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-si23IP9ugj .text-wrapper {
    padding: 2rem;
  }
}
.cid-slqvTE1tJ3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvTE1tJ3 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-siFaMTvkzf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-siFaMTvkzf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-siFaMTvkzf .row {
  flex-direction: row-reverse;
}
.cid-siFaMTvkzf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-siFaMTvkzf .text-wrapper {
    padding: 2rem;
  }
}
.cid-slqvUOPaDe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvUOPaDe .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-siFnPSY3ZE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-siFnPSY3ZE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-siFnPSY3ZE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-siFnPSY3ZE .text-wrapper {
    padding: 2rem;
  }
}
.cid-slqvVmj0pt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvVmj0pt .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-slqwWN0FL7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-slqwWN0FL7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-slqwWN0FL7 .row {
  flex-direction: row-reverse;
}
.cid-slqwWN0FL7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-slqwWN0FL7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-slqwWN0FL7 .mbr-text {
  color: #ffffff;
}
.cid-slqwWN0FL7 .mbr-section-title {
  color: #ffffff;
}
.cid-slqwWN0FL7 .mbr-description {
  color: #ffffff;
}
.cid-slqvlltF9I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvlltF9I .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTxaVhvJbs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sTxaVhvJbs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTxaVhvJbs .row {
  flex-direction: row-reverse;
}
.cid-sTxaVhvJbs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sTxaVhvJbs .text-wrapper {
    padding: 2rem;
  }
}
.cid-sm4jWCyV5z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #e43f3f;
}
.cid-sm4jWCyV5z .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sm4jWCyV5z .plan-body {
  padding-bottom: 2rem;
}
.cid-sm4jWCyV5z .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sm4jWCyV5z .price {
  color: #e43f3f;
}
.cid-sm4jWCyV5z .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sm4jWCyV5z .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sm4jWCyV5z .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-sm4jWCyV5z .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sm4jWCyV5z .plan {
    margin-bottom: 2rem;
  }
}
.cid-sTxapDXBxz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #e43f3f;
}
.cid-sTxapDXBxz .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sTxapDXBxz .plan-body {
  padding-bottom: 2rem;
}
.cid-sTxapDXBxz .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sTxapDXBxz .price {
  color: #e43f3f;
}
.cid-sTxapDXBxz .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sTxapDXBxz .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sTxapDXBxz .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-sTxapDXBxz .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sTxapDXBxz .plan {
    margin-bottom: 2rem;
  }
}
.cid-slqvUfCj97 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvUfCj97 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sm4pckfRJ1 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sm4pckfRJ1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sm4pckfRJ1 .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sm4pckfRJ1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sm4pckfRJ1 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sm4pckfRJ1 .mbr-section-title {
  color: #e43f3f;
}
.cid-slqvVUBy5P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvVUBy5P .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-slqvWpbyah {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvWpbyah .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-slqvWUlC13 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvWUlC13 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-slqvXp1izb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvXp1izb .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-slqvXYZxd2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvXYZxd2 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-slqvYC4AV5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqvYC4AV5 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-slqwB55j3m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqwB55j3m .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-slqwBKcEov {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slqwBKcEov .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sLOZ2LmacI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sLOZ2LmacI .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-shmxRUq22Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-shmleb6daN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-shmleb6daN nav.navbar {
  position: fixed;
}
.cid-shmleb6daN .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-shmleb6daN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-shmleb6daN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-shmleb6daN .dropdown-item:hover,
.cid-shmleb6daN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-shmleb6daN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-shmleb6daN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-shmleb6daN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-shmleb6daN .nav-link {
  position: relative;
}
.cid-shmleb6daN .container {
  display: flex;
  margin: auto;
}
.cid-shmleb6daN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-shmleb6daN .dropdown-menu,
.cid-shmleb6daN .navbar.opened {
  background: #000000 !important;
}
.cid-shmleb6daN .nav-item:focus,
.cid-shmleb6daN .nav-link:focus {
  outline: none;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-shmleb6daN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-shmleb6daN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-shmleb6daN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-shmleb6daN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-shmleb6daN .navbar.opened {
  transition: all 0.3s;
}
.cid-shmleb6daN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-shmleb6daN .navbar .navbar-logo img {
  width: auto;
}
.cid-shmleb6daN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-shmleb6daN .navbar.collapsed {
  justify-content: center;
}
.cid-shmleb6daN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-shmleb6daN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shmleb6daN .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-shmleb6daN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shmleb6daN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-shmleb6daN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-shmleb6daN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-shmleb6daN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shmleb6daN .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-shmleb6daN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-shmleb6daN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shmleb6daN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-shmleb6daN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-shmleb6daN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-shmleb6daN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-shmleb6daN .navbar.navbar-short {
  min-height: 60px;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-shmleb6daN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-shmleb6daN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-shmleb6daN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shmleb6daN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shmleb6daN .dropdown-item.active,
.cid-shmleb6daN .dropdown-item:active {
  background-color: transparent;
}
.cid-shmleb6daN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shmleb6daN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-shmleb6daN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shmleb6daN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shmleb6daN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-shmleb6daN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-shmleb6daN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shmleb6daN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-shmleb6daN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shmleb6daN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-shmleb6daN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-shmleb6daN .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-shmleb6daN .navbar {
    height: 70px;
  }
  .cid-shmleb6daN .navbar.opened {
    height: auto;
  }
  .cid-shmleb6daN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sm4bwZFJdb {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-sm4bwZFJdb .mbr-section-title {
  color: #ffffff;
}
.cid-sVOXBoEYfB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVOXBoEYfB .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sVOXBoEYfB .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sVOXBoEYfB .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-sm4aGLVHhS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sm4aGLVHhS .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sm4cEf9NyP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sm4cEf9NyP .video-wrapper iframe {
  width: 100%;
}
.cid-sm4cEf9NyP .mbr-section-title,
.cid-sm4cEf9NyP .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sm4cEf9NyP .text-wrapper {
    padding: 2rem;
  }
}
.cid-sm4cgRQC5f {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-sm4cgRQC5f .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sm4cgRQC5f .row {
  flex-direction: row-reverse;
}
.cid-sm4cgRQC5f img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sm4cgRQC5f .text-wrapper {
    padding: 2rem;
  }
}
.cid-sm4cgRQC5f .mbr-section-title {
  color: #ffffff;
}
.cid-sm4cgRQC5f .mbr-text {
  color: #ffffff;
}
.cid-sm4cgRQC5f .mbr-description {
  color: #ffffff;
}
.cid-sm4aO2k6FN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sm4aO2k6FN .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sm4aT4eOJk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sm4aT4eOJk .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sm4hcDpSlw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #e43f3f;
}
.cid-sm4hcDpSlw .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sm4hcDpSlw .plan-body {
  padding-bottom: 2rem;
}
.cid-sm4hcDpSlw .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sm4hcDpSlw .price {
  color: #e43f3f;
}
.cid-sm4hcDpSlw .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sm4hcDpSlw .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sm4hcDpSlw .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-sm4hcDpSlw .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sm4hcDpSlw .plan {
    margin-bottom: 2rem;
  }
}
.cid-sm4b47uK8W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sm4b47uK8W .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sm4pik14Oq {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sm4pik14Oq .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sm4pik14Oq .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sm4pik14Oq .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sm4pik14Oq .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sm4pik14Oq .mbr-section-title {
  color: #e43f3f;
}
.cid-shmxRUq22Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
