body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #66458e !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.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: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #66458e;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #66458e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #66458e;
  border-bottom-color: #66458e;
}
.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: #66458e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ca4336 !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%;
}
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='%2366458e' %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;
}
.cid-rMoGkKT5ZL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #e96188;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMoGkKT5ZL .nav-item,
.cid-rMoGkKT5ZL .nav-link,
.cid-rMoGkKT5ZL .navbar-caption {
  font-weight: normal;
}
.cid-rMoGkKT5ZL .nav-item:focus,
.cid-rMoGkKT5ZL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rMoGkKT5ZL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMoGkKT5ZL .nav-item .nav-link {
    position: relative;
  }
  .cid-rMoGkKT5ZL .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #e96188;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rMoGkKT5ZL .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-rMoGkKT5ZL .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMoGkKT5ZL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMoGkKT5ZL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMoGkKT5ZL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rMoGkKT5ZL .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rMoGkKT5ZL .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rMoGkKT5ZL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rMoGkKT5ZL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rMoGkKT5ZL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rMoGkKT5ZL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rMoGkKT5ZL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rMoGkKT5ZL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rMoGkKT5ZL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rMoGkKT5ZL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rMoGkKT5ZL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rMoGkKT5ZL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rMoGkKT5ZL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rMoGkKT5ZL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rMoGkKT5ZL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rMoGkKT5ZL .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rMoGkKT5ZL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rMoGkKT5ZL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rMoGkKT5ZL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rMoGkKT5ZL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rMoGkKT5ZL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rMoGkKT5ZL .dropdown-item.active,
.cid-rMoGkKT5ZL .dropdown-item:active {
  background-color: transparent;
}
.cid-rMoGkKT5ZL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rMoGkKT5ZL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rMoGkKT5ZL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rMoGkKT5ZL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-rMoGkKT5ZL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-rMoGkKT5ZL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rMoGkKT5ZL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rMoGkKT5ZL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMoGkKT5ZL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rMoGkKT5ZL .navbar-buttons {
  text-align: center;
}
.cid-rMoGkKT5ZL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMoGkKT5ZL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMoGkKT5ZL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMoGkKT5ZL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMoGkKT5ZL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMoGkKT5ZL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rMoGkKT5ZL a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMoGkKT5ZL .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-rMoGkKT5ZL .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rMoGkKT5ZL .soc-item {
  margin: .5rem .3rem;
}
.cid-rMoGkKT5ZL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMoGkKT5ZL a.nav-link,
.cid-rMoGkKT5ZL a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rMoGkKT5ZL a.nav-link .mbr-iconfont-btn,
.cid-rMoGkKT5ZL a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rMoGkKT5ZL a.nav-link:hover .mbr-iconfont-btn,
.cid-rMoGkKT5ZL a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rMoGkKT5ZL a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMoGkKT5ZL .navbar {
    height: 77px;
  }
  .cid-rMoGkKT5ZL .navbar.opened {
    height: auto;
  }
  .cid-rMoGkKT5ZL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rNfh1aXBiE {
  background: #ffffff;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-rNfh1aXBiE .container-fluid {
  padding: 0 3rem;
}
.cid-rNfh1aXBiE .image-block {
  position: relative;
  margin: auto;
}
.cid-rNfh1aXBiE .image-block img {
  width: 100%;
}
.cid-rNfh1aXBiE .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rNfh1aXBiE .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rNfh1aXBiE .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-rNfh1aXBiE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rNfhsQtkyJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fbffdb;
}
.cid-rNfhsQtkyJ .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-rNfhsQtkyJ .mbr-section-btn,
  .cid-rNfhsQtkyJ .mbr-section-subtitle,
  .cid-rNfhsQtkyJ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-rNfjbPjT3V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5ffa4;
}
.cid-rNfjbPjT3V .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rNfjbPjT3V .mbr-section-btn,
  .cid-rNfjbPjT3V .mbr-section-subtitle,
  .cid-rNfjbPjT3V .mbr-section-title {
    text-align: center !important;
  }
}
.cid-rNfjbPjT3V .mbr-section-title {
  color: #000000;
}
.cid-vbQ4N1fl90 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbQ4N1fl90 .container-fluid {
  padding: 0 3rem;
}
.cid-vbQ4N1fl90 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #66458e, #ca4336);
  display: inline-block;
}
.cid-vbQ4N1fl90 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbQ4N1fl90 .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-vbQ4N1fl90 .card .card-wrapper {
  height: 1%;
}
.cid-vbQ4N1fl90 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-vbQ4N1fl90 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vbQ4N1fl90 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-vbQ4N1fl90 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vbQ4N1fl90 .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-vbQ4N1fl90 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rNfkUgEWfn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rNfkUgEWfn .card {
  display: block;
  position: relative;
}
.cid-rNfkUgEWfn .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rNfkUgEWfn .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rNfkUgEWfn .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rNfkUgEWfn .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rNfkUgEWfn .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rNfkUgEWfn .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rNfkUgEWfn .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rNfkUgEWfn .img-text {
  text-align: left;
}
.cid-rNfmgyulsr {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rNfmgyulsr .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rNfmgyulsr .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rNfmgyulsr .list-group-item {
  padding: .75rem 0rem;
}
.cid-rNfmgyulsr .plan-subtitle {
  color: #66458e;
}
.cid-rNfmgyulsr .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rNfmgyulsr .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rNfmgyulsr .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rNfmgyulsr .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rNfmgyulsr .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rNfmgyulsr .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rNfmgyulsr .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rNfmgyulsr .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rNfmgyulsr .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rNfmgyulsr .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rNfmgyulsr .plan {
    margin-bottom: 30px;
  }
}
.cid-rNfmgyulsr .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rNfmgyulsr .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rNfmgyulsr .plan-title {
  color: #ffffff;
}
.cid-rNfmgyulsr .price-figure {
  color: #ffffff;
}
.cid-rNfmgyulsr .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rNfmgyulsr LI {
  color: #ffffff;
}
.cid-rNfpiOVvSS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fbffdb;
}
.cid-rNfpiOVvSS .card {
  display: block;
  position: relative;
}
.cid-rNfpiOVvSS .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-rNfpiOVvSS .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rNfpiOVvSS .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rNfpiOVvSS .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-rNfpiOVvSS .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rNfpiOVvSS .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rNfpiOVvSS .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-vbQ4s7X4fS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fbffdb;
}
.cid-vbQ4s7X4fS .card {
  display: block;
  position: relative;
}
.cid-vbQ4s7X4fS .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-vbQ4s7X4fS .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-vbQ4s7X4fS .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vbQ4s7X4fS .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-vbQ4s7X4fS .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vbQ4s7X4fS .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vbQ4s7X4fS .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-vbQ4seN1nR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fbffdb;
}
.cid-vbQ4seN1nR .card {
  display: block;
  position: relative;
}
.cid-vbQ4seN1nR .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-vbQ4seN1nR .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-vbQ4seN1nR .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vbQ4seN1nR .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-vbQ4seN1nR .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vbQ4seN1nR .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vbQ4seN1nR .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-vbQ4rURqEt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fbffdb;
}
.cid-vbQ4rURqEt .card {
  display: block;
  position: relative;
}
.cid-vbQ4rURqEt .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-vbQ4rURqEt .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-vbQ4rURqEt .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vbQ4rURqEt .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-vbQ4rURqEt .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vbQ4rURqEt .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vbQ4rURqEt .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-vbQ4jkwonM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fbffdb;
}
.cid-vbQ4jkwonM .card {
  display: block;
  position: relative;
}
.cid-vbQ4jkwonM .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-vbQ4jkwonM .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-vbQ4jkwonM .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vbQ4jkwonM .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-vbQ4jkwonM .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vbQ4jkwonM .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vbQ4jkwonM .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-rNfpZZkVmn {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #fbffdb;
}
.cid-rNfpZZkVmn .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rNfpZZkVmn .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rNfpZZkVmn .list-group-item {
  padding: .75rem 0rem;
}
.cid-rNfpZZkVmn .plan-subtitle {
  color: #66458e;
}
.cid-rNfpZZkVmn .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rNfpZZkVmn .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rNfpZZkVmn .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rNfpZZkVmn .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rNfpZZkVmn .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rNfpZZkVmn .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rNfpZZkVmn .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rNfpZZkVmn .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rNfpZZkVmn .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rNfpZZkVmn .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rNfpZZkVmn .plan {
    margin-bottom: 30px;
  }
}
.cid-rNfpZZkVmn .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rNfpZZkVmn .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rNfpZZkVmn .plan-title {
  color: #ffffff;
}
.cid-rNfpZZkVmn .price-figure {
  color: #ffffff;
}
.cid-rNfpZZkVmn .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rNfpZZkVmn LI {
  color: #ffffff;
}
.cid-sGN1IEurRx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGN1IEurRx .container-fluid {
  padding: 0 3rem;
}
.cid-sGN1IEurRx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #66458e, #ca4336);
  display: inline-block;
}
.cid-sGN1IEurRx .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGN1IEurRx .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sGN1IEurRx .card .card-wrapper {
  height: 1%;
}
.cid-sGN1IEurRx .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-sGN1IEurRx .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sGN1IEurRx .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-sGN1IEurRx .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sGN1IEurRx .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-sGN1IEurRx .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGN1MIh63T {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-sGN1MIh63T .plan-body .btn-bgr {
  z-index: 0;
}
.cid-sGN1MIh63T .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-sGN1MIh63T .list-group-item {
  padding: .75rem 0rem;
}
.cid-sGN1MIh63T .plan-subtitle {
  color: #66458e;
}
.cid-sGN1MIh63T .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-sGN1MIh63T .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-sGN1MIh63T .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-sGN1MIh63T .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-sGN1MIh63T .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-sGN1MIh63T .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-sGN1MIh63T .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-sGN1MIh63T .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-sGN1MIh63T .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-sGN1MIh63T .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-sGN1MIh63T .plan {
    margin-bottom: 30px;
  }
}
.cid-sGN1MIh63T .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-sGN1MIh63T .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sGN1MIh63T .plan-title {
  color: #ffffff;
  text-align: center;
}
.cid-sGN1MIh63T .price-figure {
  color: #ffffff;
}
.cid-sGN1MIh63T .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-sGN1MIh63T LI {
  color: #ffffff;
}
.cid-rNfsP3BfHi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNfsP3BfHi .container-fluid {
  padding: 0 3rem;
}
.cid-rNfsP3BfHi .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #66458e, #ca4336);
  display: inline-block;
}
.cid-rNfsP3BfHi .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rNfsP3BfHi .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rNfsP3BfHi .card .card-wrapper {
  height: 1%;
}
.cid-rNfsP3BfHi .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rNfsP3BfHi .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rNfsP3BfHi .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-rNfsP3BfHi .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rNfsP3BfHi .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rNfsP3BfHi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rNftJai6Kl {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-rNftJai6Kl .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rNftJai6Kl .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rNftJai6Kl .list-group-item {
  padding: .75rem 0rem;
}
.cid-rNftJai6Kl .plan-subtitle {
  color: #66458e;
}
.cid-rNftJai6Kl .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rNftJai6Kl .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rNftJai6Kl .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rNftJai6Kl .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rNftJai6Kl .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rNftJai6Kl .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rNftJai6Kl .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rNftJai6Kl .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rNftJai6Kl .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rNftJai6Kl .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rNftJai6Kl .plan {
    margin-bottom: 30px;
  }
}
.cid-rNftJai6Kl .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rNftJai6Kl .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rNftJai6Kl .plan-title {
  color: #ffffff;
}
.cid-rNftJai6Kl .price-figure {
  color: #ffffff;
}
.cid-rNftJai6Kl .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rNftJai6Kl LI {
  color: #ffffff;
}
.cid-rNfuJ5f3cw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fbffdb;
}
.cid-rNfuJ5f3cw .container-fluid {
  padding: 0 3rem;
}
.cid-rNfuJ5f3cw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #66458e, #ca4336);
  display: inline-block;
}
.cid-rNfuJ5f3cw .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rNfuJ5f3cw .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rNfuJ5f3cw .card .card-wrapper {
  height: 1%;
}
.cid-rNfuJ5f3cw .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rNfuJ5f3cw .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rNfuJ5f3cw .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-rNfuJ5f3cw .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rNfuJ5f3cw .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rNfuJ5f3cw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rNfuQl0qlf {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #fbffdb;
}
.cid-rNfuQl0qlf .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rNfuQl0qlf .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rNfuQl0qlf .list-group-item {
  padding: .75rem 0rem;
}
.cid-rNfuQl0qlf .plan-subtitle {
  color: #66458e;
}
.cid-rNfuQl0qlf .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rNfuQl0qlf .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rNfuQl0qlf .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rNfuQl0qlf .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rNfuQl0qlf .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rNfuQl0qlf .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rNfuQl0qlf .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rNfuQl0qlf .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rNfuQl0qlf .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rNfuQl0qlf .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rNfuQl0qlf .plan {
    margin-bottom: 30px;
  }
}
.cid-rNfuQl0qlf .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rNfuQl0qlf .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rNfuQl0qlf .plan-title {
  color: #ffffff;
}
.cid-rNfuQl0qlf .price-figure {
  color: #ffffff;
}
.cid-rNfuQl0qlf .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rNfuQl0qlf LI {
  color: #ffffff;
}
.cid-vbQ4IQN1a8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbQ4IQN1a8 .container-fluid {
  padding: 0 3rem;
}
.cid-vbQ4IQN1a8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #66458e, #ca4336);
  display: inline-block;
}
.cid-vbQ4IQN1a8 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbQ4IQN1a8 .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-vbQ4IQN1a8 .card .card-wrapper {
  height: 1%;
}
.cid-vbQ4IQN1a8 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-vbQ4IQN1a8 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vbQ4IQN1a8 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-vbQ4IQN1a8 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vbQ4IQN1a8 .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-vbQ4IQN1a8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-vbQ4JuosfN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbQ4JuosfN .container-fluid {
  padding: 0 3rem;
}
.cid-vbQ4JuosfN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #66458e, #ca4336);
  display: inline-block;
}
.cid-vbQ4JuosfN .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbQ4JuosfN .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-vbQ4JuosfN .card .card-wrapper {
  height: 1%;
}
.cid-vbQ4JuosfN .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-vbQ4JuosfN .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vbQ4JuosfN .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-vbQ4JuosfN .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vbQ4JuosfN .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-vbQ4JuosfN .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rRiVWVCeWg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #e96188;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRiVWVCeWg .nav-item,
.cid-rRiVWVCeWg .nav-link,
.cid-rRiVWVCeWg .navbar-caption {
  font-weight: normal;
}
.cid-rRiVWVCeWg .nav-item:focus,
.cid-rRiVWVCeWg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rRiVWVCeWg .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rRiVWVCeWg .nav-item .nav-link {
    position: relative;
  }
  .cid-rRiVWVCeWg .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #e96188;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rRiVWVCeWg .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-rRiVWVCeWg .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-rRiVWVCeWg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rRiVWVCeWg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rRiVWVCeWg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rRiVWVCeWg .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rRiVWVCeWg .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rRiVWVCeWg .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rRiVWVCeWg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rRiVWVCeWg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rRiVWVCeWg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rRiVWVCeWg .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rRiVWVCeWg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rRiVWVCeWg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rRiVWVCeWg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rRiVWVCeWg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rRiVWVCeWg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-rRiVWVCeWg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rRiVWVCeWg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rRiVWVCeWg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rRiVWVCeWg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rRiVWVCeWg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rRiVWVCeWg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rRiVWVCeWg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rRiVWVCeWg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rRiVWVCeWg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rRiVWVCeWg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rRiVWVCeWg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rRiVWVCeWg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rRiVWVCeWg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rRiVWVCeWg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rRiVWVCeWg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rRiVWVCeWg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rRiVWVCeWg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rRiVWVCeWg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rRiVWVCeWg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rRiVWVCeWg .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rRiVWVCeWg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rRiVWVCeWg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rRiVWVCeWg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rRiVWVCeWg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rRiVWVCeWg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rRiVWVCeWg .dropdown-item.active,
.cid-rRiVWVCeWg .dropdown-item:active {
  background-color: transparent;
}
.cid-rRiVWVCeWg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rRiVWVCeWg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rRiVWVCeWg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rRiVWVCeWg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-rRiVWVCeWg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-rRiVWVCeWg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rRiVWVCeWg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rRiVWVCeWg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rRiVWVCeWg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRiVWVCeWg .navbar-buttons {
  text-align: center;
}
.cid-rRiVWVCeWg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rRiVWVCeWg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rRiVWVCeWg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rRiVWVCeWg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rRiVWVCeWg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rRiVWVCeWg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rRiVWVCeWg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRiVWVCeWg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rRiVWVCeWg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rRiVWVCeWg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRiVWVCeWg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rRiVWVCeWg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rRiVWVCeWg .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-rRiVWVCeWg .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rRiVWVCeWg .soc-item {
  margin: .5rem .3rem;
}
.cid-rRiVWVCeWg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rRiVWVCeWg a.nav-link,
.cid-rRiVWVCeWg a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rRiVWVCeWg a.nav-link .mbr-iconfont-btn,
.cid-rRiVWVCeWg a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rRiVWVCeWg a.nav-link:hover .mbr-iconfont-btn,
.cid-rRiVWVCeWg a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rRiVWVCeWg a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRiVWVCeWg .navbar {
    height: 77px;
  }
  .cid-rRiVWVCeWg .navbar.opened {
    height: auto;
  }
  .cid-rRiVWVCeWg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRiVWRKhIn {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #fffbdb;
}
.cid-rRiVWRKhIn .mbr-overlay {
  background: #879a9f;
}
.cid-rRiVWRKhIn .mbr-section-title {
  letter-spacing: -1px;
  color: #000000;
  text-align: center;
}
.cid-rRj0GdKu3p {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRj0GdKu3p .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRj0GdKu3p .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRj0GdKu3p .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRj0GdKu3p .plan-subtitle {
  color: #66458e;
}
.cid-rRj0GdKu3p .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRj0GdKu3p .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRj0GdKu3p .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRj0GdKu3p .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRj0GdKu3p .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRj0GdKu3p .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRj0GdKu3p .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRj0GdKu3p .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRj0GdKu3p .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRj0GdKu3p .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRj0GdKu3p .plan {
    margin-bottom: 30px;
  }
}
.cid-rRj0GdKu3p .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRj0GdKu3p .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRj0GdKu3p .plan-title {
  color: #ffffff;
}
.cid-rRj0GdKu3p .price-figure {
  color: #ffffff;
}
.cid-rRj0GdKu3p .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRj0GdKu3p LI {
  color: #ffffff;
}
.cid-rRj1AcfSE3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRj1AcfSE3 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRj1AcfSE3 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRj1AcfSE3 .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRj1AcfSE3 .plan-subtitle {
  color: #66458e;
}
.cid-rRj1AcfSE3 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRj1AcfSE3 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRj1AcfSE3 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRj1AcfSE3 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRj1AcfSE3 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRj1AcfSE3 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRj1AcfSE3 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRj1AcfSE3 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRj1AcfSE3 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRj1AcfSE3 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRj1AcfSE3 .plan {
    margin-bottom: 30px;
  }
}
.cid-rRj1AcfSE3 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRj1AcfSE3 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRj1AcfSE3 .plan-title {
  color: #ffffff;
}
.cid-rRj1AcfSE3 .price-figure {
  color: #ffffff;
}
.cid-rRj1AcfSE3 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRj1AcfSE3 LI {
  color: #ffffff;
}
.cid-tesi0jBMh9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tesi0jBMh9 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tesi0jBMh9 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tesi0jBMh9 .list-group-item {
  padding: .75rem 0rem;
}
.cid-tesi0jBMh9 .plan-subtitle {
  color: #66458e;
}
.cid-tesi0jBMh9 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tesi0jBMh9 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tesi0jBMh9 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tesi0jBMh9 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tesi0jBMh9 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tesi0jBMh9 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tesi0jBMh9 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tesi0jBMh9 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tesi0jBMh9 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tesi0jBMh9 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tesi0jBMh9 .plan {
    margin-bottom: 30px;
  }
}
.cid-tesi0jBMh9 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tesi0jBMh9 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tesi0jBMh9 .plan-title {
  color: #ffffff;
}
.cid-tesi0jBMh9 .price-figure {
  color: #ffffff;
}
.cid-tesi0jBMh9 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tesi0jBMh9 LI {
  color: #ffffff;
}
.cid-rRiVWY1bsY {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRiVWY1bsY .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRiVWY1bsY .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRiVWY1bsY .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRiVWY1bsY .plan-subtitle {
  color: #66458e;
}
.cid-rRiVWY1bsY .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRiVWY1bsY .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRiVWY1bsY .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRiVWY1bsY .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRiVWY1bsY .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRiVWY1bsY .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRiVWY1bsY .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRiVWY1bsY .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRiVWY1bsY .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRiVWY1bsY .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRiVWY1bsY .plan {
    margin-bottom: 30px;
  }
}
.cid-rRiVWY1bsY .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRiVWY1bsY .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRiVWY1bsY .plan-title {
  color: #ffffff;
}
.cid-rRiVWY1bsY .price-figure {
  color: #ffffff;
}
.cid-rRiVWY1bsY .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRiVWY1bsY LI {
  color: #ffffff;
}
.cid-rRiZb1thlE {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRiZb1thlE .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRiZb1thlE .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRiZb1thlE .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRiZb1thlE .plan-subtitle {
  color: #66458e;
}
.cid-rRiZb1thlE .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRiZb1thlE .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRiZb1thlE .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRiZb1thlE .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRiZb1thlE .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRiZb1thlE .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRiZb1thlE .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRiZb1thlE .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRiZb1thlE .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRiZb1thlE .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRiZb1thlE .plan {
    margin-bottom: 30px;
  }
}
.cid-rRiZb1thlE .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRiZb1thlE .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRiZb1thlE .plan-title {
  color: #ffffff;
}
.cid-rRiZb1thlE .price-figure {
  color: #ffffff;
}
.cid-rRiZb1thlE .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRiZb1thlE LI {
  color: #ffffff;
}
.cid-rTbsATzLOZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbsATzLOZ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbsATzLOZ .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbsATzLOZ .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbsATzLOZ .plan-subtitle {
  color: #66458e;
}
.cid-rTbsATzLOZ .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbsATzLOZ .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbsATzLOZ .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbsATzLOZ .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbsATzLOZ .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbsATzLOZ .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbsATzLOZ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbsATzLOZ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbsATzLOZ .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbsATzLOZ .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbsATzLOZ .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbsATzLOZ .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbsATzLOZ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbsATzLOZ .plan-title {
  color: #ffffff;
}
.cid-rTbsATzLOZ .price-figure {
  color: #ffffff;
}
.cid-rTbsATzLOZ .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbsATzLOZ LI {
  color: #ffffff;
}
.cid-rTbuXtioUc {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbuXtioUc .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbuXtioUc .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbuXtioUc .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbuXtioUc .plan-subtitle {
  color: #66458e;
}
.cid-rTbuXtioUc .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbuXtioUc .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbuXtioUc .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbuXtioUc .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbuXtioUc .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbuXtioUc .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbuXtioUc .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbuXtioUc .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbuXtioUc .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbuXtioUc .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbuXtioUc .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbuXtioUc .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbuXtioUc .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbuXtioUc .plan-title {
  color: #ffffff;
}
.cid-rTbuXtioUc .price-figure {
  color: #ffffff;
}
.cid-rTbuXtioUc .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbuXtioUc LI {
  color: #ffffff;
}
.cid-rRj0eknzTo {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRj0eknzTo .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRj0eknzTo .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRj0eknzTo .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRj0eknzTo .plan-subtitle {
  color: #66458e;
}
.cid-rRj0eknzTo .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRj0eknzTo .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRj0eknzTo .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRj0eknzTo .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRj0eknzTo .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRj0eknzTo .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRj0eknzTo .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRj0eknzTo .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRj0eknzTo .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRj0eknzTo .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRj0eknzTo .plan {
    margin-bottom: 30px;
  }
}
.cid-rRj0eknzTo .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRj0eknzTo .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRj0eknzTo .plan-title {
  color: #ffffff;
}
.cid-rRj0eknzTo .price-figure {
  color: #ffffff;
}
.cid-rRj0eknzTo .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRj0eknzTo LI {
  color: #ffffff;
}
.cid-rTbvzyzQX5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbvzyzQX5 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbvzyzQX5 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbvzyzQX5 .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbvzyzQX5 .plan-subtitle {
  color: #66458e;
}
.cid-rTbvzyzQX5 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbvzyzQX5 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbvzyzQX5 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbvzyzQX5 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbvzyzQX5 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbvzyzQX5 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbvzyzQX5 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbvzyzQX5 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbvzyzQX5 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbvzyzQX5 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbvzyzQX5 .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbvzyzQX5 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbvzyzQX5 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbvzyzQX5 .plan-title {
  color: #ffffff;
}
.cid-rTbvzyzQX5 .price-figure {
  color: #ffffff;
}
.cid-rTbvzyzQX5 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbvzyzQX5 LI {
  color: #ffffff;
}
.cid-rTbxctRAVl {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbxctRAVl .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbxctRAVl .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbxctRAVl .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbxctRAVl .plan-subtitle {
  color: #66458e;
}
.cid-rTbxctRAVl .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbxctRAVl .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbxctRAVl .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbxctRAVl .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbxctRAVl .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbxctRAVl .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbxctRAVl .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbxctRAVl .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbxctRAVl .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbxctRAVl .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbxctRAVl .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbxctRAVl .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbxctRAVl .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbxctRAVl .plan-title {
  color: #ffffff;
}
.cid-rTbxctRAVl .price-figure {
  color: #ffffff;
}
.cid-rTbxctRAVl .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbxctRAVl LI {
  color: #ffffff;
}
.cid-teslD9I29q {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-teslD9I29q .plan-body .btn-bgr {
  z-index: 0;
}
.cid-teslD9I29q .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-teslD9I29q .list-group-item {
  padding: .75rem 0rem;
}
.cid-teslD9I29q .plan-subtitle {
  color: #66458e;
}
.cid-teslD9I29q .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-teslD9I29q .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-teslD9I29q .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-teslD9I29q .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-teslD9I29q .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-teslD9I29q .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-teslD9I29q .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-teslD9I29q .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-teslD9I29q .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-teslD9I29q .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-teslD9I29q .plan {
    margin-bottom: 30px;
  }
}
.cid-teslD9I29q .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-teslD9I29q .price-figure {
    font-size: 4.25rem;
  }
}
.cid-teslD9I29q .plan-title {
  color: #ffffff;
}
.cid-teslD9I29q .price-figure {
  color: #ffffff;
}
.cid-teslD9I29q .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-teslD9I29q LI {
  color: #ffffff;
}
.cid-rTbxL1ZKBV {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbxL1ZKBV .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbxL1ZKBV .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbxL1ZKBV .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbxL1ZKBV .plan-subtitle {
  color: #66458e;
}
.cid-rTbxL1ZKBV .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbxL1ZKBV .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbxL1ZKBV .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbxL1ZKBV .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbxL1ZKBV .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbxL1ZKBV .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbxL1ZKBV .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbxL1ZKBV .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbxL1ZKBV .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbxL1ZKBV .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbxL1ZKBV .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbxL1ZKBV .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbxL1ZKBV .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbxL1ZKBV .plan-title {
  color: #ffffff;
}
.cid-rTbxL1ZKBV .price-figure {
  color: #ffffff;
}
.cid-rTbxL1ZKBV .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbxL1ZKBV LI {
  color: #ffffff;
}
.cid-tesnOXu54j {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tesnOXu54j .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tesnOXu54j .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tesnOXu54j .list-group-item {
  padding: .75rem 0rem;
}
.cid-tesnOXu54j .plan-subtitle {
  color: #66458e;
}
.cid-tesnOXu54j .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tesnOXu54j .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tesnOXu54j .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tesnOXu54j .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tesnOXu54j .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tesnOXu54j .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tesnOXu54j .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tesnOXu54j .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tesnOXu54j .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tesnOXu54j .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tesnOXu54j .plan {
    margin-bottom: 30px;
  }
}
.cid-tesnOXu54j .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tesnOXu54j .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tesnOXu54j .plan-title {
  color: #ffffff;
}
.cid-tesnOXu54j .price-figure {
  color: #ffffff;
}
.cid-tesnOXu54j .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tesnOXu54j LI {
  color: #ffffff;
}
.cid-rTbyvN3qLV {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbyvN3qLV .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbyvN3qLV .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbyvN3qLV .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbyvN3qLV .plan-subtitle {
  color: #66458e;
}
.cid-rTbyvN3qLV .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbyvN3qLV .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbyvN3qLV .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbyvN3qLV .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbyvN3qLV .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbyvN3qLV .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbyvN3qLV .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbyvN3qLV .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbyvN3qLV .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbyvN3qLV .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbyvN3qLV .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbyvN3qLV .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbyvN3qLV .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbyvN3qLV .plan-title {
  color: #ffffff;
}
.cid-rTbyvN3qLV .price-figure {
  color: #ffffff;
}
.cid-rTbyvN3qLV .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbyvN3qLV LI {
  color: #ffffff;
}
.cid-rTbAMu5xDz {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbAMu5xDz .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbAMu5xDz .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbAMu5xDz .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbAMu5xDz .plan-subtitle {
  color: #66458e;
}
.cid-rTbAMu5xDz .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbAMu5xDz .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbAMu5xDz .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbAMu5xDz .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbAMu5xDz .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbAMu5xDz .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbAMu5xDz .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbAMu5xDz .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbAMu5xDz .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbAMu5xDz .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbAMu5xDz .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbAMu5xDz .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbAMu5xDz .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbAMu5xDz .plan-title {
  color: #ffffff;
}
.cid-rTbAMu5xDz .price-figure {
  color: #ffffff;
}
.cid-rTbAMu5xDz .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbAMu5xDz LI {
  color: #ffffff;
}
.cid-tesn15CLly {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tesn15CLly .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tesn15CLly .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tesn15CLly .list-group-item {
  padding: .75rem 0rem;
}
.cid-tesn15CLly .plan-subtitle {
  color: #66458e;
}
.cid-tesn15CLly .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tesn15CLly .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tesn15CLly .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tesn15CLly .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tesn15CLly .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tesn15CLly .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tesn15CLly .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tesn15CLly .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tesn15CLly .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tesn15CLly .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tesn15CLly .plan {
    margin-bottom: 30px;
  }
}
.cid-tesn15CLly .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tesn15CLly .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tesn15CLly .plan-title {
  color: #ffffff;
}
.cid-tesn15CLly .price-figure {
  color: #ffffff;
}
.cid-tesn15CLly .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tesn15CLly LI {
  color: #ffffff;
}
.cid-rTbC7ldQr6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbC7ldQr6 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbC7ldQr6 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbC7ldQr6 .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbC7ldQr6 .plan-subtitle {
  color: #66458e;
}
.cid-rTbC7ldQr6 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbC7ldQr6 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbC7ldQr6 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbC7ldQr6 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbC7ldQr6 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbC7ldQr6 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbC7ldQr6 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbC7ldQr6 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbC7ldQr6 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbC7ldQr6 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbC7ldQr6 .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbC7ldQr6 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbC7ldQr6 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbC7ldQr6 .plan-title {
  color: #ffffff;
}
.cid-rTbC7ldQr6 .price-figure {
  color: #ffffff;
}
.cid-rTbC7ldQr6 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbC7ldQr6 LI {
  color: #ffffff;
}
.cid-rRj2hoMIUQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRj2hoMIUQ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRj2hoMIUQ .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRj2hoMIUQ .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRj2hoMIUQ .plan-subtitle {
  color: #66458e;
}
.cid-rRj2hoMIUQ .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRj2hoMIUQ .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRj2hoMIUQ .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRj2hoMIUQ .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRj2hoMIUQ .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRj2hoMIUQ .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRj2hoMIUQ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRj2hoMIUQ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRj2hoMIUQ .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRj2hoMIUQ .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRj2hoMIUQ .plan {
    margin-bottom: 30px;
  }
}
.cid-rRj2hoMIUQ .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRj2hoMIUQ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRj2hoMIUQ .plan-title {
  color: #ffffff;
}
.cid-rRj2hoMIUQ .price-figure {
  color: #ffffff;
}
.cid-rRj2hoMIUQ .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRj2hoMIUQ LI {
  color: #ffffff;
}
.cid-rTbDbVVwKv {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbDbVVwKv .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbDbVVwKv .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbDbVVwKv .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbDbVVwKv .plan-subtitle {
  color: #66458e;
}
.cid-rTbDbVVwKv .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbDbVVwKv .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbDbVVwKv .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbDbVVwKv .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbDbVVwKv .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbDbVVwKv .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbDbVVwKv .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbDbVVwKv .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbDbVVwKv .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbDbVVwKv .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbDbVVwKv .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbDbVVwKv .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbDbVVwKv .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbDbVVwKv .plan-title {
  color: #ffffff;
}
.cid-rTbDbVVwKv .price-figure {
  color: #ffffff;
}
.cid-rTbDbVVwKv .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbDbVVwKv LI {
  color: #ffffff;
}
.cid-rTbE95s9Tl {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbE95s9Tl .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbE95s9Tl .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbE95s9Tl .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbE95s9Tl .plan-subtitle {
  color: #66458e;
}
.cid-rTbE95s9Tl .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbE95s9Tl .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbE95s9Tl .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbE95s9Tl .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbE95s9Tl .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbE95s9Tl .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbE95s9Tl .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbE95s9Tl .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbE95s9Tl .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbE95s9Tl .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbE95s9Tl .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbE95s9Tl .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbE95s9Tl .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbE95s9Tl .plan-title {
  color: #ffffff;
}
.cid-rTbE95s9Tl .price-figure {
  color: #ffffff;
}
.cid-rTbE95s9Tl .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbE95s9Tl LI {
  color: #ffffff;
}
.cid-rTbF5oJhgZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbF5oJhgZ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbF5oJhgZ .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbF5oJhgZ .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbF5oJhgZ .plan-subtitle {
  color: #66458e;
}
.cid-rTbF5oJhgZ .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbF5oJhgZ .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbF5oJhgZ .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbF5oJhgZ .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbF5oJhgZ .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbF5oJhgZ .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbF5oJhgZ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbF5oJhgZ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbF5oJhgZ .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbF5oJhgZ .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbF5oJhgZ .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbF5oJhgZ .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbF5oJhgZ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbF5oJhgZ .plan-title {
  color: #ffffff;
}
.cid-rTbF5oJhgZ .price-figure {
  color: #ffffff;
}
.cid-rTbF5oJhgZ .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbF5oJhgZ LI {
  color: #ffffff;
}
.cid-rTbGlUejTV {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbGlUejTV .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbGlUejTV .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbGlUejTV .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbGlUejTV .plan-subtitle {
  color: #66458e;
}
.cid-rTbGlUejTV .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbGlUejTV .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbGlUejTV .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbGlUejTV .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbGlUejTV .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbGlUejTV .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbGlUejTV .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbGlUejTV .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbGlUejTV .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbGlUejTV .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbGlUejTV .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbGlUejTV .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbGlUejTV .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbGlUejTV .plan-title {
  color: #ffffff;
}
.cid-rTbGlUejTV .price-figure {
  color: #ffffff;
}
.cid-rTbGlUejTV .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbGlUejTV LI {
  color: #ffffff;
}
.cid-rTbHHkay4I {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbHHkay4I .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbHHkay4I .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbHHkay4I .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbHHkay4I .plan-subtitle {
  color: #66458e;
}
.cid-rTbHHkay4I .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbHHkay4I .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbHHkay4I .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbHHkay4I .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbHHkay4I .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbHHkay4I .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbHHkay4I .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbHHkay4I .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbHHkay4I .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbHHkay4I .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbHHkay4I .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbHHkay4I .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbHHkay4I .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbHHkay4I .plan-title {
  color: #ffffff;
}
.cid-rTbHHkay4I .price-figure {
  color: #ffffff;
}
.cid-rTbHHkay4I .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbHHkay4I LI {
  color: #ffffff;
}
.cid-rTbKaekbL5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTbKaekbL5 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTbKaekbL5 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTbKaekbL5 .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTbKaekbL5 .plan-subtitle {
  color: #66458e;
}
.cid-rTbKaekbL5 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTbKaekbL5 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTbKaekbL5 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTbKaekbL5 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTbKaekbL5 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTbKaekbL5 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTbKaekbL5 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTbKaekbL5 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTbKaekbL5 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTbKaekbL5 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTbKaekbL5 .plan {
    margin-bottom: 30px;
  }
}
.cid-rTbKaekbL5 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTbKaekbL5 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTbKaekbL5 .plan-title {
  color: #ffffff;
}
.cid-rTbKaekbL5 .price-figure {
  color: #ffffff;
}
.cid-rTbKaekbL5 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTbKaekbL5 LI {
  color: #ffffff;
}
.cid-rTEW2xqas7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTEW2xqas7 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTEW2xqas7 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTEW2xqas7 .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTEW2xqas7 .plan-subtitle {
  color: #66458e;
}
.cid-rTEW2xqas7 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTEW2xqas7 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTEW2xqas7 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTEW2xqas7 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTEW2xqas7 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTEW2xqas7 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTEW2xqas7 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTEW2xqas7 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTEW2xqas7 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTEW2xqas7 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTEW2xqas7 .plan {
    margin-bottom: 30px;
  }
}
.cid-rTEW2xqas7 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTEW2xqas7 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTEW2xqas7 .plan-title {
  color: #ffffff;
}
.cid-rTEW2xqas7 .price-figure {
  color: #ffffff;
}
.cid-rTEW2xqas7 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTEW2xqas7 LI {
  color: #ffffff;
}
.cid-rTEWRssulk {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTEWRssulk .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTEWRssulk .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTEWRssulk .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTEWRssulk .plan-subtitle {
  color: #66458e;
}
.cid-rTEWRssulk .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTEWRssulk .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTEWRssulk .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTEWRssulk .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTEWRssulk .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTEWRssulk .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTEWRssulk .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTEWRssulk .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTEWRssulk .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTEWRssulk .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTEWRssulk .plan {
    margin-bottom: 30px;
  }
}
.cid-rTEWRssulk .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTEWRssulk .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTEWRssulk .plan-title {
  color: #ffffff;
}
.cid-rTEWRssulk .price-figure {
  color: #ffffff;
}
.cid-rTEWRssulk .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTEWRssulk LI {
  color: #ffffff;
}
.cid-rTEXfldgLK {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rTEXfldgLK .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rTEXfldgLK .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rTEXfldgLK .list-group-item {
  padding: .75rem 0rem;
}
.cid-rTEXfldgLK .plan-subtitle {
  color: #66458e;
}
.cid-rTEXfldgLK .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rTEXfldgLK .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rTEXfldgLK .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rTEXfldgLK .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rTEXfldgLK .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rTEXfldgLK .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rTEXfldgLK .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rTEXfldgLK .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rTEXfldgLK .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rTEXfldgLK .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rTEXfldgLK .plan {
    margin-bottom: 30px;
  }
}
.cid-rTEXfldgLK .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rTEXfldgLK .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTEXfldgLK .plan-title {
  color: #ffffff;
}
.cid-rTEXfldgLK .price-figure {
  color: #ffffff;
}
.cid-rTEXfldgLK .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rTEXfldgLK LI {
  color: #ffffff;
}
.cid-tcFn0szRP1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tcFn0szRP1 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tcFn0szRP1 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tcFn0szRP1 .list-group-item {
  padding: .75rem 0rem;
}
.cid-tcFn0szRP1 .plan-subtitle {
  color: #66458e;
}
.cid-tcFn0szRP1 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tcFn0szRP1 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tcFn0szRP1 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tcFn0szRP1 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tcFn0szRP1 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tcFn0szRP1 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tcFn0szRP1 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tcFn0szRP1 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tcFn0szRP1 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tcFn0szRP1 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tcFn0szRP1 .plan {
    margin-bottom: 30px;
  }
}
.cid-tcFn0szRP1 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tcFn0szRP1 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tcFn0szRP1 .plan-title {
  color: #ffffff;
}
.cid-tcFn0szRP1 .price-figure {
  color: #ffffff;
}
.cid-tcFn0szRP1 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tcFn0szRP1 LI {
  color: #ffffff;
}
.cid-rWRxGy8fyH {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rWRxGy8fyH .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rWRxGy8fyH .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rWRxGy8fyH .list-group-item {
  padding: .75rem 0rem;
}
.cid-rWRxGy8fyH .plan-subtitle {
  color: #66458e;
}
.cid-rWRxGy8fyH .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rWRxGy8fyH .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rWRxGy8fyH .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rWRxGy8fyH .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rWRxGy8fyH .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rWRxGy8fyH .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rWRxGy8fyH .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rWRxGy8fyH .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rWRxGy8fyH .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rWRxGy8fyH .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rWRxGy8fyH .plan {
    margin-bottom: 30px;
  }
}
.cid-rWRxGy8fyH .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rWRxGy8fyH .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rWRxGy8fyH .plan-title {
  color: #ffffff;
}
.cid-rWRxGy8fyH .price-figure {
  color: #ffffff;
}
.cid-rWRxGy8fyH .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rWRxGy8fyH LI {
  color: #ffffff;
}
.cid-rWRyyfvivU {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rWRyyfvivU .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rWRyyfvivU .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rWRyyfvivU .list-group-item {
  padding: .75rem 0rem;
}
.cid-rWRyyfvivU .plan-subtitle {
  color: #66458e;
}
.cid-rWRyyfvivU .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rWRyyfvivU .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rWRyyfvivU .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rWRyyfvivU .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rWRyyfvivU .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rWRyyfvivU .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rWRyyfvivU .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rWRyyfvivU .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rWRyyfvivU .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rWRyyfvivU .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rWRyyfvivU .plan {
    margin-bottom: 30px;
  }
}
.cid-rWRyyfvivU .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rWRyyfvivU .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rWRyyfvivU .plan-title {
  color: #ffffff;
}
.cid-rWRyyfvivU .price-figure {
  color: #ffffff;
}
.cid-rWRyyfvivU .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rWRyyfvivU LI {
  color: #ffffff;
}
.cid-rWRzgXN1Rh {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rWRzgXN1Rh .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rWRzgXN1Rh .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rWRzgXN1Rh .list-group-item {
  padding: .75rem 0rem;
}
.cid-rWRzgXN1Rh .plan-subtitle {
  color: #66458e;
}
.cid-rWRzgXN1Rh .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rWRzgXN1Rh .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rWRzgXN1Rh .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rWRzgXN1Rh .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rWRzgXN1Rh .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rWRzgXN1Rh .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rWRzgXN1Rh .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rWRzgXN1Rh .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rWRzgXN1Rh .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rWRzgXN1Rh .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rWRzgXN1Rh .plan {
    margin-bottom: 30px;
  }
}
.cid-rWRzgXN1Rh .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rWRzgXN1Rh .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rWRzgXN1Rh .plan-title {
  color: #ffffff;
}
.cid-rWRzgXN1Rh .price-figure {
  color: #ffffff;
}
.cid-rWRzgXN1Rh .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rWRzgXN1Rh LI {
  color: #ffffff;
}
.cid-rWRA0MWvVB {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rWRA0MWvVB .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rWRA0MWvVB .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rWRA0MWvVB .list-group-item {
  padding: .75rem 0rem;
}
.cid-rWRA0MWvVB .plan-subtitle {
  color: #66458e;
}
.cid-rWRA0MWvVB .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rWRA0MWvVB .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rWRA0MWvVB .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rWRA0MWvVB .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rWRA0MWvVB .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rWRA0MWvVB .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rWRA0MWvVB .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rWRA0MWvVB .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rWRA0MWvVB .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rWRA0MWvVB .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rWRA0MWvVB .plan {
    margin-bottom: 30px;
  }
}
.cid-rWRA0MWvVB .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rWRA0MWvVB .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rWRA0MWvVB .plan-title {
  color: #ffffff;
}
.cid-rWRA0MWvVB .price-figure {
  color: #ffffff;
}
.cid-rWRA0MWvVB .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rWRA0MWvVB LI {
  color: #ffffff;
}
.cid-rWRAXQDh0M {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rWRAXQDh0M .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rWRAXQDh0M .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rWRAXQDh0M .list-group-item {
  padding: .75rem 0rem;
}
.cid-rWRAXQDh0M .plan-subtitle {
  color: #66458e;
}
.cid-rWRAXQDh0M .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rWRAXQDh0M .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rWRAXQDh0M .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rWRAXQDh0M .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rWRAXQDh0M .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rWRAXQDh0M .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rWRAXQDh0M .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rWRAXQDh0M .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rWRAXQDh0M .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rWRAXQDh0M .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rWRAXQDh0M .plan {
    margin-bottom: 30px;
  }
}
.cid-rWRAXQDh0M .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rWRAXQDh0M .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rWRAXQDh0M .plan-title {
  color: #ffffff;
}
.cid-rWRAXQDh0M .price-figure {
  color: #ffffff;
}
.cid-rWRAXQDh0M .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rWRAXQDh0M LI {
  color: #ffffff;
}
.cid-rXO060ZEaD {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rXO060ZEaD .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rXO060ZEaD .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rXO060ZEaD .list-group-item {
  padding: .75rem 0rem;
}
.cid-rXO060ZEaD .plan-subtitle {
  color: #66458e;
}
.cid-rXO060ZEaD .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rXO060ZEaD .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rXO060ZEaD .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rXO060ZEaD .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rXO060ZEaD .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rXO060ZEaD .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rXO060ZEaD .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rXO060ZEaD .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rXO060ZEaD .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rXO060ZEaD .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rXO060ZEaD .plan {
    margin-bottom: 30px;
  }
}
.cid-rXO060ZEaD .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rXO060ZEaD .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rXO060ZEaD .plan-title {
  color: #ffffff;
}
.cid-rXO060ZEaD .price-figure {
  color: #ffffff;
}
.cid-rXO060ZEaD .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rXO060ZEaD LI {
  color: #ffffff;
}
.cid-rXNTa3WqED {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rXNTa3WqED .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rXNTa3WqED .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rXNTa3WqED .list-group-item {
  padding: .75rem 0rem;
}
.cid-rXNTa3WqED .plan-subtitle {
  color: #66458e;
}
.cid-rXNTa3WqED .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rXNTa3WqED .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rXNTa3WqED .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rXNTa3WqED .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rXNTa3WqED .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rXNTa3WqED .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rXNTa3WqED .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rXNTa3WqED .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rXNTa3WqED .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rXNTa3WqED .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rXNTa3WqED .plan {
    margin-bottom: 30px;
  }
}
.cid-rXNTa3WqED .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rXNTa3WqED .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rXNTa3WqED .plan-title {
  color: #ffffff;
}
.cid-rXNTa3WqED .price-figure {
  color: #ffffff;
}
.cid-rXNTa3WqED .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rXNTa3WqED LI {
  color: #ffffff;
}
.cid-rXNQuspDYn {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rXNQuspDYn .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rXNQuspDYn .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rXNQuspDYn .list-group-item {
  padding: .75rem 0rem;
}
.cid-rXNQuspDYn .plan-subtitle {
  color: #66458e;
}
.cid-rXNQuspDYn .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rXNQuspDYn .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rXNQuspDYn .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rXNQuspDYn .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rXNQuspDYn .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rXNQuspDYn .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rXNQuspDYn .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rXNQuspDYn .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rXNQuspDYn .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rXNQuspDYn .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rXNQuspDYn .plan {
    margin-bottom: 30px;
  }
}
.cid-rXNQuspDYn .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rXNQuspDYn .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rXNQuspDYn .plan-title {
  color: #ffffff;
}
.cid-rXNQuspDYn .price-figure {
  color: #ffffff;
}
.cid-rXNQuspDYn .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rXNQuspDYn LI {
  color: #ffffff;
}
.cid-rXNPgff6lr {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rXNPgff6lr .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rXNPgff6lr .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rXNPgff6lr .list-group-item {
  padding: .75rem 0rem;
}
.cid-rXNPgff6lr .plan-subtitle {
  color: #66458e;
}
.cid-rXNPgff6lr .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rXNPgff6lr .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rXNPgff6lr .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rXNPgff6lr .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rXNPgff6lr .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rXNPgff6lr .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rXNPgff6lr .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rXNPgff6lr .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rXNPgff6lr .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rXNPgff6lr .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rXNPgff6lr .plan {
    margin-bottom: 30px;
  }
}
.cid-rXNPgff6lr .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rXNPgff6lr .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rXNPgff6lr .plan-title {
  color: #ffffff;
}
.cid-rXNPgff6lr .price-figure {
  color: #ffffff;
}
.cid-rXNPgff6lr .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rXNPgff6lr LI {
  color: #ffffff;
}
.cid-rXNUpf73IE {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rXNUpf73IE .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rXNUpf73IE .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rXNUpf73IE .list-group-item {
  padding: .75rem 0rem;
}
.cid-rXNUpf73IE .plan-subtitle {
  color: #66458e;
}
.cid-rXNUpf73IE .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rXNUpf73IE .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rXNUpf73IE .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rXNUpf73IE .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rXNUpf73IE .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rXNUpf73IE .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rXNUpf73IE .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rXNUpf73IE .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rXNUpf73IE .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rXNUpf73IE .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rXNUpf73IE .plan {
    margin-bottom: 30px;
  }
}
.cid-rXNUpf73IE .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rXNUpf73IE .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rXNUpf73IE .plan-title {
  color: #ffffff;
}
.cid-rXNUpf73IE .price-figure {
  color: #ffffff;
}
.cid-rXNUpf73IE .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rXNUpf73IE LI {
  color: #ffffff;
}
.cid-tesjDCjR63 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tesjDCjR63 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tesjDCjR63 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tesjDCjR63 .list-group-item {
  padding: .75rem 0rem;
}
.cid-tesjDCjR63 .plan-subtitle {
  color: #66458e;
}
.cid-tesjDCjR63 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tesjDCjR63 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tesjDCjR63 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tesjDCjR63 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tesjDCjR63 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tesjDCjR63 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tesjDCjR63 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tesjDCjR63 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tesjDCjR63 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tesjDCjR63 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tesjDCjR63 .plan {
    margin-bottom: 30px;
  }
}
.cid-tesjDCjR63 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tesjDCjR63 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tesjDCjR63 .plan-title {
  color: #ffffff;
}
.cid-tesjDCjR63 .price-figure {
  color: #ffffff;
}
.cid-tesjDCjR63 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tesjDCjR63 LI {
  color: #ffffff;
}
.cid-teskuYbkCZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-teskuYbkCZ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-teskuYbkCZ .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-teskuYbkCZ .list-group-item {
  padding: .75rem 0rem;
}
.cid-teskuYbkCZ .plan-subtitle {
  color: #66458e;
}
.cid-teskuYbkCZ .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-teskuYbkCZ .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-teskuYbkCZ .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-teskuYbkCZ .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-teskuYbkCZ .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-teskuYbkCZ .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-teskuYbkCZ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-teskuYbkCZ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-teskuYbkCZ .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-teskuYbkCZ .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-teskuYbkCZ .plan {
    margin-bottom: 30px;
  }
}
.cid-teskuYbkCZ .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-teskuYbkCZ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-teskuYbkCZ .plan-title {
  color: #ffffff;
}
.cid-teskuYbkCZ .price-figure {
  color: #ffffff;
}
.cid-teskuYbkCZ .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-teskuYbkCZ LI {
  color: #ffffff;
}
.cid-rRj2Qz3DUz {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRj2Qz3DUz .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRj2Qz3DUz .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRj2Qz3DUz .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRj2Qz3DUz .plan-subtitle {
  color: #66458e;
}
.cid-rRj2Qz3DUz .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRj2Qz3DUz .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRj2Qz3DUz .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRj2Qz3DUz .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRj2Qz3DUz .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRj2Qz3DUz .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRj2Qz3DUz .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRj2Qz3DUz .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRj2Qz3DUz .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRj2Qz3DUz .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRj2Qz3DUz .plan {
    margin-bottom: 30px;
  }
}
.cid-rRj2Qz3DUz .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRj2Qz3DUz .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRj2Qz3DUz .plan-title {
  color: #ffffff;
}
.cid-rRj2Qz3DUz .price-figure {
  color: #ffffff;
}
.cid-rRj2Qz3DUz .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRj2Qz3DUz LI {
  color: #ffffff;
}
.cid-rXNSpOAvcQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rXNSpOAvcQ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rXNSpOAvcQ .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rXNSpOAvcQ .list-group-item {
  padding: .75rem 0rem;
}
.cid-rXNSpOAvcQ .plan-subtitle {
  color: #66458e;
}
.cid-rXNSpOAvcQ .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rXNSpOAvcQ .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rXNSpOAvcQ .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rXNSpOAvcQ .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rXNSpOAvcQ .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rXNSpOAvcQ .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rXNSpOAvcQ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rXNSpOAvcQ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rXNSpOAvcQ .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rXNSpOAvcQ .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rXNSpOAvcQ .plan {
    margin-bottom: 30px;
  }
}
.cid-rXNSpOAvcQ .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rXNSpOAvcQ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rXNSpOAvcQ .plan-title {
  color: #ffffff;
}
.cid-rXNSpOAvcQ .price-figure {
  color: #ffffff;
}
.cid-rXNSpOAvcQ .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rXNSpOAvcQ LI {
  color: #ffffff;
}
.cid-rRiZT2OULI {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRiZT2OULI .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRiZT2OULI .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRiZT2OULI .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRiZT2OULI .plan-subtitle {
  color: #66458e;
}
.cid-rRiZT2OULI .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRiZT2OULI .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRiZT2OULI .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRiZT2OULI .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRiZT2OULI .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRiZT2OULI .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRiZT2OULI .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRiZT2OULI .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRiZT2OULI .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRiZT2OULI .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRiZT2OULI .plan {
    margin-bottom: 30px;
  }
}
.cid-rRiZT2OULI .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRiZT2OULI .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRiZT2OULI .plan-title {
  color: #ffffff;
}
.cid-rRiZT2OULI .price-figure {
  color: #ffffff;
}
.cid-rRiZT2OULI .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRiZT2OULI LI {
  color: #ffffff;
}
.cid-rMoGkKT5ZL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #e96188;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMoGkKT5ZL .nav-item,
.cid-rMoGkKT5ZL .nav-link,
.cid-rMoGkKT5ZL .navbar-caption {
  font-weight: normal;
}
.cid-rMoGkKT5ZL .nav-item:focus,
.cid-rMoGkKT5ZL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rMoGkKT5ZL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMoGkKT5ZL .nav-item .nav-link {
    position: relative;
  }
  .cid-rMoGkKT5ZL .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #e96188;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rMoGkKT5ZL .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-rMoGkKT5ZL .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMoGkKT5ZL .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMoGkKT5ZL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMoGkKT5ZL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMoGkKT5ZL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rMoGkKT5ZL .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rMoGkKT5ZL .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rMoGkKT5ZL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rMoGkKT5ZL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rMoGkKT5ZL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rMoGkKT5ZL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rMoGkKT5ZL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rMoGkKT5ZL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rMoGkKT5ZL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rMoGkKT5ZL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rMoGkKT5ZL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rMoGkKT5ZL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rMoGkKT5ZL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rMoGkKT5ZL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rMoGkKT5ZL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rMoGkKT5ZL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rMoGkKT5ZL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rMoGkKT5ZL .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rMoGkKT5ZL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rMoGkKT5ZL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rMoGkKT5ZL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rMoGkKT5ZL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rMoGkKT5ZL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rMoGkKT5ZL .dropdown-item.active,
.cid-rMoGkKT5ZL .dropdown-item:active {
  background-color: transparent;
}
.cid-rMoGkKT5ZL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rMoGkKT5ZL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rMoGkKT5ZL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rMoGkKT5ZL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-rMoGkKT5ZL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-rMoGkKT5ZL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rMoGkKT5ZL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rMoGkKT5ZL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMoGkKT5ZL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rMoGkKT5ZL .navbar-buttons {
  text-align: center;
}
.cid-rMoGkKT5ZL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMoGkKT5ZL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMoGkKT5ZL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMoGkKT5ZL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMoGkKT5ZL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMoGkKT5ZL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMoGkKT5ZL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rMoGkKT5ZL a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMoGkKT5ZL .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-rMoGkKT5ZL .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rMoGkKT5ZL .soc-item {
  margin: .5rem .3rem;
}
.cid-rMoGkKT5ZL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMoGkKT5ZL a.nav-link,
.cid-rMoGkKT5ZL a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rMoGkKT5ZL a.nav-link .mbr-iconfont-btn,
.cid-rMoGkKT5ZL a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rMoGkKT5ZL a.nav-link:hover .mbr-iconfont-btn,
.cid-rMoGkKT5ZL a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rMoGkKT5ZL a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMoGkKT5ZL .navbar {
    height: 77px;
  }
  .cid-rMoGkKT5ZL .navbar.opened {
    height: auto;
  }
  .cid-rMoGkKT5ZL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMoNdMgjbU {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #fffbdb;
}
.cid-rMoNdMgjbU .mbr-overlay {
  background: #879a9f;
}
.cid-rMoNdMgjbU .mbr-section-title {
  letter-spacing: -1px;
  color: #000000;
  text-align: center;
}
.cid-rMoGZiVdgp {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rMoGZiVdgp .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rMoGZiVdgp .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rMoGZiVdgp .list-group-item {
  padding: .75rem 0rem;
}
.cid-rMoGZiVdgp .plan-subtitle {
  color: #66458e;
}
.cid-rMoGZiVdgp .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rMoGZiVdgp .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rMoGZiVdgp .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rMoGZiVdgp .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rMoGZiVdgp .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rMoGZiVdgp .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rMoGZiVdgp .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rMoGZiVdgp .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rMoGZiVdgp .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rMoGZiVdgp .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rMoGZiVdgp .plan {
    margin-bottom: 30px;
  }
}
.cid-rMoGZiVdgp .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rMoGZiVdgp .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rMoGZiVdgp .plan-title {
  color: #ffffff;
}
.cid-rMoGZiVdgp .price-figure {
  color: #ffffff;
}
.cid-rMoGZiVdgp .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rMoGZiVdgp LI {
  color: #ffffff;
}
.cid-rMoOiNPBej {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rMoOiNPBej .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rMoOiNPBej .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rMoOiNPBej .list-group-item {
  padding: .75rem 0rem;
}
.cid-rMoOiNPBej .plan-subtitle {
  color: #66458e;
}
.cid-rMoOiNPBej .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rMoOiNPBej .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rMoOiNPBej .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rMoOiNPBej .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rMoOiNPBej .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rMoOiNPBej .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rMoOiNPBej .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rMoOiNPBej .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rMoOiNPBej .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rMoOiNPBej .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rMoOiNPBej .plan {
    margin-bottom: 30px;
  }
}
.cid-rMoOiNPBej .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rMoOiNPBej .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rMoOiNPBej .plan-title {
  color: #ffffff;
}
.cid-rMoOiNPBej .price-figure {
  color: #ffffff;
}
.cid-rMoOiNPBej .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rMoOiNPBej LI {
  color: #ffffff;
}
.cid-rPTnZcl36G {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rPTnZcl36G .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rPTnZcl36G .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rPTnZcl36G .list-group-item {
  padding: .75rem 0rem;
}
.cid-rPTnZcl36G .plan-subtitle {
  color: #66458e;
}
.cid-rPTnZcl36G .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rPTnZcl36G .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rPTnZcl36G .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rPTnZcl36G .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rPTnZcl36G .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rPTnZcl36G .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rPTnZcl36G .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rPTnZcl36G .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rPTnZcl36G .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rPTnZcl36G .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rPTnZcl36G .plan {
    margin-bottom: 30px;
  }
}
.cid-rPTnZcl36G .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rPTnZcl36G .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rPTnZcl36G .plan-title {
  color: #ffffff;
}
.cid-rPTnZcl36G .price-figure {
  color: #ffffff;
}
.cid-rPTnZcl36G .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rPTnZcl36G LI {
  color: #ffffff;
}
.cid-rQynWwG5XA {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rQynWwG5XA .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rQynWwG5XA .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rQynWwG5XA .list-group-item {
  padding: .75rem 0rem;
}
.cid-rQynWwG5XA .plan-subtitle {
  color: #66458e;
}
.cid-rQynWwG5XA .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rQynWwG5XA .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rQynWwG5XA .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rQynWwG5XA .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rQynWwG5XA .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rQynWwG5XA .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rQynWwG5XA .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rQynWwG5XA .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rQynWwG5XA .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rQynWwG5XA .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rQynWwG5XA .plan {
    margin-bottom: 30px;
  }
}
.cid-rQynWwG5XA .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rQynWwG5XA .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rQynWwG5XA .plan-title {
  color: #ffffff;
}
.cid-rQynWwG5XA .price-figure {
  color: #ffffff;
}
.cid-rQynWwG5XA .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rQynWwG5XA LI {
  color: #ffffff;
}
.cid-rPTqHH9BWA {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rPTqHH9BWA .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rPTqHH9BWA .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rPTqHH9BWA .list-group-item {
  padding: .75rem 0rem;
}
.cid-rPTqHH9BWA .plan-subtitle {
  color: #66458e;
}
.cid-rPTqHH9BWA .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rPTqHH9BWA .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rPTqHH9BWA .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rPTqHH9BWA .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rPTqHH9BWA .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rPTqHH9BWA .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rPTqHH9BWA .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rPTqHH9BWA .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rPTqHH9BWA .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rPTqHH9BWA .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rPTqHH9BWA .plan {
    margin-bottom: 30px;
  }
}
.cid-rPTqHH9BWA .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rPTqHH9BWA .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rPTqHH9BWA .plan-title {
  color: #ffffff;
}
.cid-rPTqHH9BWA .price-figure {
  color: #ffffff;
}
.cid-rPTqHH9BWA .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rPTqHH9BWA LI {
  color: #ffffff;
}
.cid-rQyoVWjHiW {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rQyoVWjHiW .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rQyoVWjHiW .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rQyoVWjHiW .list-group-item {
  padding: .75rem 0rem;
}
.cid-rQyoVWjHiW .plan-subtitle {
  color: #66458e;
}
.cid-rQyoVWjHiW .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rQyoVWjHiW .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rQyoVWjHiW .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rQyoVWjHiW .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rQyoVWjHiW .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rQyoVWjHiW .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rQyoVWjHiW .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rQyoVWjHiW .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rQyoVWjHiW .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rQyoVWjHiW .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rQyoVWjHiW .plan {
    margin-bottom: 30px;
  }
}
.cid-rQyoVWjHiW .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rQyoVWjHiW .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rQyoVWjHiW .plan-title {
  color: #ffffff;
}
.cid-rQyoVWjHiW .price-figure {
  color: #ffffff;
}
.cid-rQyoVWjHiW .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rQyoVWjHiW LI {
  color: #ffffff;
}
.cid-rQBusbex8A {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rQBusbex8A .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rQBusbex8A .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rQBusbex8A .list-group-item {
  padding: .75rem 0rem;
}
.cid-rQBusbex8A .plan-subtitle {
  color: #66458e;
}
.cid-rQBusbex8A .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rQBusbex8A .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rQBusbex8A .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rQBusbex8A .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rQBusbex8A .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rQBusbex8A .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rQBusbex8A .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rQBusbex8A .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rQBusbex8A .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rQBusbex8A .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rQBusbex8A .plan {
    margin-bottom: 30px;
  }
}
.cid-rQBusbex8A .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rQBusbex8A .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rQBusbex8A .plan-title {
  color: #ffffff;
}
.cid-rQBusbex8A .price-figure {
  color: #ffffff;
}
.cid-rQBusbex8A .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rQBusbex8A LI {
  color: #ffffff;
}
.cid-rQBuYS9P2u {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rQBuYS9P2u .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rQBuYS9P2u .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rQBuYS9P2u .list-group-item {
  padding: .75rem 0rem;
}
.cid-rQBuYS9P2u .plan-subtitle {
  color: #66458e;
}
.cid-rQBuYS9P2u .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rQBuYS9P2u .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rQBuYS9P2u .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rQBuYS9P2u .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rQBuYS9P2u .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rQBuYS9P2u .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rQBuYS9P2u .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rQBuYS9P2u .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rQBuYS9P2u .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rQBuYS9P2u .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rQBuYS9P2u .plan {
    margin-bottom: 30px;
  }
}
.cid-rQBuYS9P2u .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rQBuYS9P2u .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rQBuYS9P2u .plan-title {
  color: #ffffff;
}
.cid-rQBuYS9P2u .price-figure {
  color: #ffffff;
}
.cid-rQBuYS9P2u .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rQBuYS9P2u LI {
  color: #ffffff;
}
.cid-rQBwFHfOqc {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rQBwFHfOqc .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rQBwFHfOqc .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rQBwFHfOqc .list-group-item {
  padding: .75rem 0rem;
}
.cid-rQBwFHfOqc .plan-subtitle {
  color: #66458e;
}
.cid-rQBwFHfOqc .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rQBwFHfOqc .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rQBwFHfOqc .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rQBwFHfOqc .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rQBwFHfOqc .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rQBwFHfOqc .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rQBwFHfOqc .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rQBwFHfOqc .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rQBwFHfOqc .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rQBwFHfOqc .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rQBwFHfOqc .plan {
    margin-bottom: 30px;
  }
}
.cid-rQBwFHfOqc .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rQBwFHfOqc .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rQBwFHfOqc .plan-title {
  color: #ffffff;
}
.cid-rQBwFHfOqc .price-figure {
  color: #ffffff;
}
.cid-rQBwFHfOqc .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rQBwFHfOqc LI {
  color: #ffffff;
}
.cid-tYouuZ9MHn {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYouuZ9MHn .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYouuZ9MHn .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYouuZ9MHn .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYouuZ9MHn .plan-subtitle {
  color: #66458e;
}
.cid-tYouuZ9MHn .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYouuZ9MHn .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYouuZ9MHn .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYouuZ9MHn .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYouuZ9MHn .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYouuZ9MHn .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYouuZ9MHn .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYouuZ9MHn .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYouuZ9MHn .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYouuZ9MHn .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYouuZ9MHn .plan {
    margin-bottom: 30px;
  }
}
.cid-tYouuZ9MHn .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYouuZ9MHn .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYouuZ9MHn .plan-title {
  color: #ffffff;
}
.cid-tYouuZ9MHn .price-figure {
  color: #ffffff;
}
.cid-tYouuZ9MHn .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYouuZ9MHn LI {
  color: #ffffff;
}
.cid-tXPtvhRolv {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXPtvhRolv .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXPtvhRolv .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXPtvhRolv .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXPtvhRolv .plan-subtitle {
  color: #66458e;
}
.cid-tXPtvhRolv .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXPtvhRolv .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXPtvhRolv .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXPtvhRolv .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXPtvhRolv .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXPtvhRolv .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXPtvhRolv .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXPtvhRolv .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXPtvhRolv .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXPtvhRolv .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXPtvhRolv .plan {
    margin-bottom: 30px;
  }
}
.cid-tXPtvhRolv .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXPtvhRolv .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXPtvhRolv .plan-title {
  color: #ffffff;
}
.cid-tXPtvhRolv .price-figure {
  color: #ffffff;
}
.cid-tXPtvhRolv .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXPtvhRolv LI {
  color: #ffffff;
}
.cid-tXVdmcWDig {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXVdmcWDig .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXVdmcWDig .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXVdmcWDig .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXVdmcWDig .plan-subtitle {
  color: #66458e;
}
.cid-tXVdmcWDig .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXVdmcWDig .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXVdmcWDig .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXVdmcWDig .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXVdmcWDig .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXVdmcWDig .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXVdmcWDig .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXVdmcWDig .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXVdmcWDig .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXVdmcWDig .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXVdmcWDig .plan {
    margin-bottom: 30px;
  }
}
.cid-tXVdmcWDig .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXVdmcWDig .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXVdmcWDig .plan-title {
  color: #ffffff;
}
.cid-tXVdmcWDig .price-figure {
  color: #ffffff;
}
.cid-tXVdmcWDig .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXVdmcWDig LI {
  color: #ffffff;
}
.cid-tXVbl8lOOc {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXVbl8lOOc .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXVbl8lOOc .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXVbl8lOOc .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXVbl8lOOc .plan-subtitle {
  color: #66458e;
}
.cid-tXVbl8lOOc .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXVbl8lOOc .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXVbl8lOOc .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXVbl8lOOc .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXVbl8lOOc .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXVbl8lOOc .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXVbl8lOOc .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXVbl8lOOc .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXVbl8lOOc .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXVbl8lOOc .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXVbl8lOOc .plan {
    margin-bottom: 30px;
  }
}
.cid-tXVbl8lOOc .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXVbl8lOOc .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXVbl8lOOc .plan-title {
  color: #ffffff;
}
.cid-tXVbl8lOOc .price-figure {
  color: #ffffff;
}
.cid-tXVbl8lOOc .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXVbl8lOOc LI {
  color: #ffffff;
}
.cid-tYouVHlRuU {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYouVHlRuU .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYouVHlRuU .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYouVHlRuU .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYouVHlRuU .plan-subtitle {
  color: #66458e;
}
.cid-tYouVHlRuU .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYouVHlRuU .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYouVHlRuU .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYouVHlRuU .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYouVHlRuU .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYouVHlRuU .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYouVHlRuU .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYouVHlRuU .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYouVHlRuU .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYouVHlRuU .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYouVHlRuU .plan {
    margin-bottom: 30px;
  }
}
.cid-tYouVHlRuU .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYouVHlRuU .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYouVHlRuU .plan-title {
  color: #ffffff;
}
.cid-tYouVHlRuU .price-figure {
  color: #ffffff;
}
.cid-tYouVHlRuU .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYouVHlRuU LI {
  color: #ffffff;
}
.cid-tYG8KzhfNY {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYG8KzhfNY .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYG8KzhfNY .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYG8KzhfNY .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYG8KzhfNY .plan-subtitle {
  color: #66458e;
}
.cid-tYG8KzhfNY .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYG8KzhfNY .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYG8KzhfNY .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYG8KzhfNY .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYG8KzhfNY .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYG8KzhfNY .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYG8KzhfNY .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYG8KzhfNY .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYG8KzhfNY .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYG8KzhfNY .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYG8KzhfNY .plan {
    margin-bottom: 30px;
  }
}
.cid-tYG8KzhfNY .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYG8KzhfNY .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYG8KzhfNY .plan-title {
  color: #ffffff;
}
.cid-tYG8KzhfNY .price-figure {
  color: #ffffff;
}
.cid-tYG8KzhfNY .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYG8KzhfNY LI {
  color: #ffffff;
}
.cid-tXVfvjBZOl {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXVfvjBZOl .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXVfvjBZOl .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXVfvjBZOl .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXVfvjBZOl .plan-subtitle {
  color: #66458e;
}
.cid-tXVfvjBZOl .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXVfvjBZOl .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXVfvjBZOl .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXVfvjBZOl .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXVfvjBZOl .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXVfvjBZOl .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXVfvjBZOl .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXVfvjBZOl .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXVfvjBZOl .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXVfvjBZOl .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXVfvjBZOl .plan {
    margin-bottom: 30px;
  }
}
.cid-tXVfvjBZOl .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXVfvjBZOl .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXVfvjBZOl .plan-title {
  color: #ffffff;
}
.cid-tXVfvjBZOl .price-figure {
  color: #ffffff;
}
.cid-tXVfvjBZOl .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXVfvjBZOl LI {
  color: #ffffff;
}
.cid-tXPsrs7KjO {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXPsrs7KjO .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXPsrs7KjO .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXPsrs7KjO .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXPsrs7KjO .plan-subtitle {
  color: #66458e;
}
.cid-tXPsrs7KjO .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXPsrs7KjO .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXPsrs7KjO .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXPsrs7KjO .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXPsrs7KjO .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXPsrs7KjO .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXPsrs7KjO .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXPsrs7KjO .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXPsrs7KjO .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXPsrs7KjO .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXPsrs7KjO .plan {
    margin-bottom: 30px;
  }
}
.cid-tXPsrs7KjO .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXPsrs7KjO .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXPsrs7KjO .plan-title {
  color: #ffffff;
}
.cid-tXPsrs7KjO .price-figure {
  color: #ffffff;
}
.cid-tXPsrs7KjO .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXPsrs7KjO LI {
  color: #ffffff;
}
.cid-tXPt3krFrq {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXPt3krFrq .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXPt3krFrq .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXPt3krFrq .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXPt3krFrq .plan-subtitle {
  color: #66458e;
}
.cid-tXPt3krFrq .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXPt3krFrq .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXPt3krFrq .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXPt3krFrq .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXPt3krFrq .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXPt3krFrq .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXPt3krFrq .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXPt3krFrq .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXPt3krFrq .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXPt3krFrq .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXPt3krFrq .plan {
    margin-bottom: 30px;
  }
}
.cid-tXPt3krFrq .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXPt3krFrq .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXPt3krFrq .plan-title {
  color: #ffffff;
}
.cid-tXPt3krFrq .price-figure {
  color: #ffffff;
}
.cid-tXPt3krFrq .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXPt3krFrq LI {
  color: #ffffff;
}
.cid-tYG9LAEZAc {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYG9LAEZAc .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYG9LAEZAc .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYG9LAEZAc .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYG9LAEZAc .plan-subtitle {
  color: #66458e;
}
.cid-tYG9LAEZAc .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYG9LAEZAc .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYG9LAEZAc .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYG9LAEZAc .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYG9LAEZAc .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYG9LAEZAc .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYG9LAEZAc .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYG9LAEZAc .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYG9LAEZAc .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYG9LAEZAc .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYG9LAEZAc .plan {
    margin-bottom: 30px;
  }
}
.cid-tYG9LAEZAc .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYG9LAEZAc .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYG9LAEZAc .plan-title {
  color: #ffffff;
}
.cid-tYG9LAEZAc .price-figure {
  color: #ffffff;
}
.cid-tYG9LAEZAc .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYG9LAEZAc LI {
  color: #ffffff;
}
.cid-tYGaiLUaC9 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYGaiLUaC9 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYGaiLUaC9 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYGaiLUaC9 .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYGaiLUaC9 .plan-subtitle {
  color: #66458e;
}
.cid-tYGaiLUaC9 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYGaiLUaC9 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYGaiLUaC9 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYGaiLUaC9 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYGaiLUaC9 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYGaiLUaC9 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYGaiLUaC9 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYGaiLUaC9 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYGaiLUaC9 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYGaiLUaC9 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYGaiLUaC9 .plan {
    margin-bottom: 30px;
  }
}
.cid-tYGaiLUaC9 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYGaiLUaC9 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYGaiLUaC9 .plan-title {
  color: #ffffff;
}
.cid-tYGaiLUaC9 .price-figure {
  color: #ffffff;
}
.cid-tYGaiLUaC9 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYGaiLUaC9 LI {
  color: #ffffff;
}
.cid-tYGaJfpThW {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYGaJfpThW .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYGaJfpThW .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYGaJfpThW .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYGaJfpThW .plan-subtitle {
  color: #66458e;
}
.cid-tYGaJfpThW .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYGaJfpThW .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYGaJfpThW .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYGaJfpThW .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYGaJfpThW .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYGaJfpThW .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYGaJfpThW .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYGaJfpThW .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYGaJfpThW .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYGaJfpThW .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYGaJfpThW .plan {
    margin-bottom: 30px;
  }
}
.cid-tYGaJfpThW .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYGaJfpThW .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYGaJfpThW .plan-title {
  color: #ffffff;
}
.cid-tYGaJfpThW .price-figure {
  color: #ffffff;
}
.cid-tYGaJfpThW .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYGaJfpThW LI {
  color: #ffffff;
}
.cid-tXVcogYqe9 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXVcogYqe9 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXVcogYqe9 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXVcogYqe9 .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXVcogYqe9 .plan-subtitle {
  color: #66458e;
}
.cid-tXVcogYqe9 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXVcogYqe9 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXVcogYqe9 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXVcogYqe9 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXVcogYqe9 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXVcogYqe9 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXVcogYqe9 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXVcogYqe9 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXVcogYqe9 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXVcogYqe9 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXVcogYqe9 .plan {
    margin-bottom: 30px;
  }
}
.cid-tXVcogYqe9 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXVcogYqe9 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXVcogYqe9 .plan-title {
  color: #ffffff;
}
.cid-tXVcogYqe9 .price-figure {
  color: #ffffff;
}
.cid-tXVcogYqe9 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXVcogYqe9 LI {
  color: #ffffff;
}
.cid-tXVdRfAWRH {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXVdRfAWRH .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXVdRfAWRH .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXVdRfAWRH .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXVdRfAWRH .plan-subtitle {
  color: #66458e;
}
.cid-tXVdRfAWRH .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXVdRfAWRH .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXVdRfAWRH .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXVdRfAWRH .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXVdRfAWRH .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXVdRfAWRH .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXVdRfAWRH .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXVdRfAWRH .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXVdRfAWRH .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXVdRfAWRH .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXVdRfAWRH .plan {
    margin-bottom: 30px;
  }
}
.cid-tXVdRfAWRH .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXVdRfAWRH .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXVdRfAWRH .plan-title {
  color: #ffffff;
}
.cid-tXVdRfAWRH .price-figure {
  color: #ffffff;
}
.cid-tXVdRfAWRH .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXVdRfAWRH LI {
  color: #ffffff;
}
.cid-tYGbhj2muA {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYGbhj2muA .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYGbhj2muA .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYGbhj2muA .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYGbhj2muA .plan-subtitle {
  color: #66458e;
}
.cid-tYGbhj2muA .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYGbhj2muA .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYGbhj2muA .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYGbhj2muA .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYGbhj2muA .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYGbhj2muA .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYGbhj2muA .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYGbhj2muA .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYGbhj2muA .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYGbhj2muA .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYGbhj2muA .plan {
    margin-bottom: 30px;
  }
}
.cid-tYGbhj2muA .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYGbhj2muA .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYGbhj2muA .plan-title {
  color: #ffffff;
}
.cid-tYGbhj2muA .price-figure {
  color: #ffffff;
}
.cid-tYGbhj2muA .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYGbhj2muA LI {
  color: #ffffff;
}
.cid-tXVhJL4nLz {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXVhJL4nLz .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXVhJL4nLz .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXVhJL4nLz .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXVhJL4nLz .plan-subtitle {
  color: #66458e;
}
.cid-tXVhJL4nLz .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXVhJL4nLz .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXVhJL4nLz .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXVhJL4nLz .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXVhJL4nLz .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXVhJL4nLz .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXVhJL4nLz .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXVhJL4nLz .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXVhJL4nLz .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXVhJL4nLz .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXVhJL4nLz .plan {
    margin-bottom: 30px;
  }
}
.cid-tXVhJL4nLz .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXVhJL4nLz .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXVhJL4nLz .plan-title {
  color: #ffffff;
}
.cid-tXVhJL4nLz .price-figure {
  color: #ffffff;
}
.cid-tXVhJL4nLz .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXVhJL4nLz LI {
  color: #ffffff;
}
.cid-tXVh4Ro8RI {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXVh4Ro8RI .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXVh4Ro8RI .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXVh4Ro8RI .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXVh4Ro8RI .plan-subtitle {
  color: #66458e;
}
.cid-tXVh4Ro8RI .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXVh4Ro8RI .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXVh4Ro8RI .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXVh4Ro8RI .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXVh4Ro8RI .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXVh4Ro8RI .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXVh4Ro8RI .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXVh4Ro8RI .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXVh4Ro8RI .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXVh4Ro8RI .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXVh4Ro8RI .plan {
    margin-bottom: 30px;
  }
}
.cid-tXVh4Ro8RI .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXVh4Ro8RI .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXVh4Ro8RI .plan-title {
  color: #ffffff;
}
.cid-tXVh4Ro8RI .price-figure {
  color: #ffffff;
}
.cid-tXVh4Ro8RI .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXVh4Ro8RI LI {
  color: #ffffff;
}
.cid-rMoOldPddH {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rMoOldPddH .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rMoOldPddH .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rMoOldPddH .list-group-item {
  padding: .75rem 0rem;
}
.cid-rMoOldPddH .plan-subtitle {
  color: #66458e;
}
.cid-rMoOldPddH .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rMoOldPddH .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rMoOldPddH .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rMoOldPddH .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rMoOldPddH .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rMoOldPddH .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rMoOldPddH .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rMoOldPddH .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rMoOldPddH .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rMoOldPddH .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rMoOldPddH .plan {
    margin-bottom: 30px;
  }
}
.cid-rMoOldPddH .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rMoOldPddH .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rMoOldPddH .plan-title {
  color: #ffffff;
}
.cid-rMoOldPddH .price-figure {
  color: #ffffff;
}
.cid-rMoOldPddH .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rMoOldPddH LI {
  color: #ffffff;
}
.cid-rMoOlZxfk4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rMoOlZxfk4 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rMoOlZxfk4 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rMoOlZxfk4 .list-group-item {
  padding: .75rem 0rem;
}
.cid-rMoOlZxfk4 .plan-subtitle {
  color: #66458e;
}
.cid-rMoOlZxfk4 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rMoOlZxfk4 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rMoOlZxfk4 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rMoOlZxfk4 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rMoOlZxfk4 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rMoOlZxfk4 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rMoOlZxfk4 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rMoOlZxfk4 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rMoOlZxfk4 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rMoOlZxfk4 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rMoOlZxfk4 .plan {
    margin-bottom: 30px;
  }
}
.cid-rMoOlZxfk4 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rMoOlZxfk4 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rMoOlZxfk4 .plan-title {
  color: #ffffff;
}
.cid-rMoOlZxfk4 .price-figure {
  color: #ffffff;
}
.cid-rMoOlZxfk4 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rMoOlZxfk4 LI {
  color: #ffffff;
}
.cid-rMoOnlx5Dy {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rMoOnlx5Dy .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rMoOnlx5Dy .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rMoOnlx5Dy .list-group-item {
  padding: .75rem 0rem;
}
.cid-rMoOnlx5Dy .plan-subtitle {
  color: #66458e;
}
.cid-rMoOnlx5Dy .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rMoOnlx5Dy .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rMoOnlx5Dy .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rMoOnlx5Dy .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rMoOnlx5Dy .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rMoOnlx5Dy .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rMoOnlx5Dy .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rMoOnlx5Dy .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rMoOnlx5Dy .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rMoOnlx5Dy .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rMoOnlx5Dy .plan {
    margin-bottom: 30px;
  }
}
.cid-rMoOnlx5Dy .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rMoOnlx5Dy .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rMoOnlx5Dy .plan-title {
  color: #ffffff;
}
.cid-rMoOnlx5Dy .price-figure {
  color: #ffffff;
}
.cid-rMoOnlx5Dy .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rMoOnlx5Dy LI {
  color: #ffffff;
}
.cid-tYGbMviAIZ {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYGbMviAIZ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYGbMviAIZ .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYGbMviAIZ .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYGbMviAIZ .plan-subtitle {
  color: #66458e;
}
.cid-tYGbMviAIZ .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYGbMviAIZ .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYGbMviAIZ .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYGbMviAIZ .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYGbMviAIZ .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYGbMviAIZ .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYGbMviAIZ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYGbMviAIZ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYGbMviAIZ .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYGbMviAIZ .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYGbMviAIZ .plan {
    margin-bottom: 30px;
  }
}
.cid-tYGbMviAIZ .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYGbMviAIZ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYGbMviAIZ .plan-title {
  color: #ffffff;
}
.cid-tYGbMviAIZ .price-figure {
  color: #ffffff;
}
.cid-tYGbMviAIZ .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYGbMviAIZ LI {
  color: #ffffff;
}
.cid-u3VjunLVKN {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u3VjunLVKN .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u3VjunLVKN .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u3VjunLVKN .list-group-item {
  padding: .75rem 0rem;
}
.cid-u3VjunLVKN .plan-subtitle {
  color: #66458e;
}
.cid-u3VjunLVKN .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u3VjunLVKN .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u3VjunLVKN .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u3VjunLVKN .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u3VjunLVKN .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u3VjunLVKN .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u3VjunLVKN .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u3VjunLVKN .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u3VjunLVKN .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u3VjunLVKN .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u3VjunLVKN .plan {
    margin-bottom: 30px;
  }
}
.cid-u3VjunLVKN .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u3VjunLVKN .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u3VjunLVKN .plan-title {
  color: #ffffff;
}
.cid-u3VjunLVKN .price-figure {
  color: #ffffff;
}
.cid-u3VjunLVKN .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u3VjunLVKN LI {
  color: #ffffff;
}
.cid-u3X8ICeSv2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u3X8ICeSv2 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u3X8ICeSv2 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u3X8ICeSv2 .list-group-item {
  padding: .75rem 0rem;
}
.cid-u3X8ICeSv2 .plan-subtitle {
  color: #66458e;
}
.cid-u3X8ICeSv2 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u3X8ICeSv2 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u3X8ICeSv2 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u3X8ICeSv2 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u3X8ICeSv2 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u3X8ICeSv2 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u3X8ICeSv2 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u3X8ICeSv2 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u3X8ICeSv2 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u3X8ICeSv2 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u3X8ICeSv2 .plan {
    margin-bottom: 30px;
  }
}
.cid-u3X8ICeSv2 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u3X8ICeSv2 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u3X8ICeSv2 .plan-title {
  color: #ffffff;
}
.cid-u3X8ICeSv2 .price-figure {
  color: #ffffff;
}
.cid-u3X8ICeSv2 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u3X8ICeSv2 LI {
  color: #ffffff;
}
.cid-u3X9lxDmEF {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u3X9lxDmEF .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u3X9lxDmEF .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u3X9lxDmEF .list-group-item {
  padding: .75rem 0rem;
}
.cid-u3X9lxDmEF .plan-subtitle {
  color: #66458e;
}
.cid-u3X9lxDmEF .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u3X9lxDmEF .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u3X9lxDmEF .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u3X9lxDmEF .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u3X9lxDmEF .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u3X9lxDmEF .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u3X9lxDmEF .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u3X9lxDmEF .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u3X9lxDmEF .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u3X9lxDmEF .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u3X9lxDmEF .plan {
    margin-bottom: 30px;
  }
}
.cid-u3X9lxDmEF .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u3X9lxDmEF .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u3X9lxDmEF .plan-title {
  color: #ffffff;
}
.cid-u3X9lxDmEF .price-figure {
  color: #ffffff;
}
.cid-u3X9lxDmEF .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u3X9lxDmEF LI {
  color: #ffffff;
}
.cid-rMoOmGYpwX {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rMoOmGYpwX .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rMoOmGYpwX .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rMoOmGYpwX .list-group-item {
  padding: .75rem 0rem;
}
.cid-rMoOmGYpwX .plan-subtitle {
  color: #66458e;
}
.cid-rMoOmGYpwX .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rMoOmGYpwX .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rMoOmGYpwX .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rMoOmGYpwX .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rMoOmGYpwX .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rMoOmGYpwX .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rMoOmGYpwX .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rMoOmGYpwX .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rMoOmGYpwX .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rMoOmGYpwX .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rMoOmGYpwX .plan {
    margin-bottom: 30px;
  }
}
.cid-rMoOmGYpwX .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rMoOmGYpwX .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rMoOmGYpwX .plan-title {
  color: #ffffff;
}
.cid-rMoOmGYpwX .price-figure {
  color: #ffffff;
}
.cid-rMoOmGYpwX .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rMoOmGYpwX LI {
  color: #ffffff;
}
.cid-tZl2TjtXpR {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tZl2TjtXpR .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tZl2TjtXpR .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tZl2TjtXpR .list-group-item {
  padding: .75rem 0rem;
}
.cid-tZl2TjtXpR .plan-subtitle {
  color: #66458e;
}
.cid-tZl2TjtXpR .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tZl2TjtXpR .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tZl2TjtXpR .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tZl2TjtXpR .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tZl2TjtXpR .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tZl2TjtXpR .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tZl2TjtXpR .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tZl2TjtXpR .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tZl2TjtXpR .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tZl2TjtXpR .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tZl2TjtXpR .plan {
    margin-bottom: 30px;
  }
}
.cid-tZl2TjtXpR .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tZl2TjtXpR .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tZl2TjtXpR .plan-title {
  color: #ffffff;
}
.cid-tZl2TjtXpR .price-figure {
  color: #ffffff;
}
.cid-tZl2TjtXpR .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tZl2TjtXpR LI {
  color: #ffffff;
}
.cid-tYXDNqxkwG {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYXDNqxkwG .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYXDNqxkwG .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYXDNqxkwG .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYXDNqxkwG .plan-subtitle {
  color: #66458e;
}
.cid-tYXDNqxkwG .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYXDNqxkwG .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYXDNqxkwG .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYXDNqxkwG .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYXDNqxkwG .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYXDNqxkwG .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYXDNqxkwG .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYXDNqxkwG .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYXDNqxkwG .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYXDNqxkwG .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYXDNqxkwG .plan {
    margin-bottom: 30px;
  }
}
.cid-tYXDNqxkwG .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYXDNqxkwG .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYXDNqxkwG .plan-title {
  color: #ffffff;
}
.cid-tYXDNqxkwG .price-figure {
  color: #ffffff;
}
.cid-tYXDNqxkwG .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYXDNqxkwG LI {
  color: #ffffff;
}
.cid-tYXEjikUzs {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYXEjikUzs .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYXEjikUzs .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYXEjikUzs .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYXEjikUzs .plan-subtitle {
  color: #66458e;
}
.cid-tYXEjikUzs .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYXEjikUzs .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYXEjikUzs .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYXEjikUzs .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYXEjikUzs .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYXEjikUzs .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYXEjikUzs .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYXEjikUzs .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYXEjikUzs .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYXEjikUzs .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYXEjikUzs .plan {
    margin-bottom: 30px;
  }
}
.cid-tYXEjikUzs .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYXEjikUzs .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYXEjikUzs .plan-title {
  color: #ffffff;
}
.cid-tYXEjikUzs .price-figure {
  color: #ffffff;
}
.cid-tYXEjikUzs .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYXEjikUzs LI {
  color: #ffffff;
}
.cid-tZl54Bnd3z {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tZl54Bnd3z .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tZl54Bnd3z .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tZl54Bnd3z .list-group-item {
  padding: .75rem 0rem;
}
.cid-tZl54Bnd3z .plan-subtitle {
  color: #66458e;
}
.cid-tZl54Bnd3z .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tZl54Bnd3z .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tZl54Bnd3z .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tZl54Bnd3z .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tZl54Bnd3z .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tZl54Bnd3z .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tZl54Bnd3z .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tZl54Bnd3z .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tZl54Bnd3z .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tZl54Bnd3z .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tZl54Bnd3z .plan {
    margin-bottom: 30px;
  }
}
.cid-tZl54Bnd3z .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tZl54Bnd3z .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tZl54Bnd3z .plan-title {
  color: #ffffff;
}
.cid-tZl54Bnd3z .price-figure {
  color: #ffffff;
}
.cid-tZl54Bnd3z .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tZl54Bnd3z LI {
  color: #ffffff;
}
.cid-rMoOnZUM0e {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rMoOnZUM0e .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rMoOnZUM0e .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rMoOnZUM0e .list-group-item {
  padding: .75rem 0rem;
}
.cid-rMoOnZUM0e .plan-subtitle {
  color: #66458e;
}
.cid-rMoOnZUM0e .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rMoOnZUM0e .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rMoOnZUM0e .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rMoOnZUM0e .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rMoOnZUM0e .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rMoOnZUM0e .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rMoOnZUM0e .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rMoOnZUM0e .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rMoOnZUM0e .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rMoOnZUM0e .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rMoOnZUM0e .plan {
    margin-bottom: 30px;
  }
}
.cid-rMoOnZUM0e .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rMoOnZUM0e .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rMoOnZUM0e .plan-title {
  color: #ffffff;
}
.cid-rMoOnZUM0e .price-figure {
  color: #ffffff;
}
.cid-rMoOnZUM0e .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rMoOnZUM0e LI {
  color: #ffffff;
}
.cid-tZflnouMZ4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tZflnouMZ4 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tZflnouMZ4 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tZflnouMZ4 .list-group-item {
  padding: .75rem 0rem;
}
.cid-tZflnouMZ4 .plan-subtitle {
  color: #66458e;
}
.cid-tZflnouMZ4 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tZflnouMZ4 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tZflnouMZ4 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tZflnouMZ4 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tZflnouMZ4 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tZflnouMZ4 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tZflnouMZ4 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tZflnouMZ4 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tZflnouMZ4 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tZflnouMZ4 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tZflnouMZ4 .plan {
    margin-bottom: 30px;
  }
}
.cid-tZflnouMZ4 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tZflnouMZ4 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tZflnouMZ4 .plan-title {
  color: #ffffff;
}
.cid-tZflnouMZ4 .price-figure {
  color: #ffffff;
}
.cid-tZflnouMZ4 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tZflnouMZ4 LI {
  color: #ffffff;
}
.cid-tZl3t7tqoi {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tZl3t7tqoi .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tZl3t7tqoi .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tZl3t7tqoi .list-group-item {
  padding: .75rem 0rem;
}
.cid-tZl3t7tqoi .plan-subtitle {
  color: #66458e;
}
.cid-tZl3t7tqoi .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tZl3t7tqoi .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tZl3t7tqoi .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tZl3t7tqoi .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tZl3t7tqoi .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tZl3t7tqoi .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tZl3t7tqoi .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tZl3t7tqoi .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tZl3t7tqoi .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tZl3t7tqoi .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tZl3t7tqoi .plan {
    margin-bottom: 30px;
  }
}
.cid-tZl3t7tqoi .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tZl3t7tqoi .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tZl3t7tqoi .plan-title {
  color: #ffffff;
}
.cid-tZl3t7tqoi .price-figure {
  color: #ffffff;
}
.cid-tZl3t7tqoi .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tZl3t7tqoi LI {
  color: #ffffff;
}
.cid-tZl4maiG09 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tZl4maiG09 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tZl4maiG09 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tZl4maiG09 .list-group-item {
  padding: .75rem 0rem;
}
.cid-tZl4maiG09 .plan-subtitle {
  color: #66458e;
}
.cid-tZl4maiG09 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tZl4maiG09 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tZl4maiG09 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tZl4maiG09 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tZl4maiG09 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tZl4maiG09 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tZl4maiG09 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tZl4maiG09 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tZl4maiG09 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tZl4maiG09 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tZl4maiG09 .plan {
    margin-bottom: 30px;
  }
}
.cid-tZl4maiG09 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tZl4maiG09 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tZl4maiG09 .plan-title {
  color: #ffffff;
}
.cid-tZl4maiG09 .price-figure {
  color: #ffffff;
}
.cid-tZl4maiG09 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tZl4maiG09 LI {
  color: #ffffff;
}
.cid-tZl3XjYYYy {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tZl3XjYYYy .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tZl3XjYYYy .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tZl3XjYYYy .list-group-item {
  padding: .75rem 0rem;
}
.cid-tZl3XjYYYy .plan-subtitle {
  color: #66458e;
}
.cid-tZl3XjYYYy .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tZl3XjYYYy .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tZl3XjYYYy .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tZl3XjYYYy .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tZl3XjYYYy .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tZl3XjYYYy .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tZl3XjYYYy .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tZl3XjYYYy .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tZl3XjYYYy .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tZl3XjYYYy .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tZl3XjYYYy .plan {
    margin-bottom: 30px;
  }
}
.cid-tZl3XjYYYy .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tZl3XjYYYy .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tZl3XjYYYy .plan-title {
  color: #ffffff;
}
.cid-tZl3XjYYYy .price-figure {
  color: #ffffff;
}
.cid-tZl3XjYYYy .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tZl3XjYYYy LI {
  color: #ffffff;
}
.cid-tYXF8y6edG {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYXF8y6edG .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYXF8y6edG .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYXF8y6edG .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYXF8y6edG .plan-subtitle {
  color: #66458e;
}
.cid-tYXF8y6edG .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYXF8y6edG .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYXF8y6edG .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYXF8y6edG .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYXF8y6edG .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYXF8y6edG .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYXF8y6edG .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYXF8y6edG .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYXF8y6edG .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYXF8y6edG .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYXF8y6edG .plan {
    margin-bottom: 30px;
  }
}
.cid-tYXF8y6edG .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYXF8y6edG .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYXF8y6edG .plan-title {
  color: #ffffff;
}
.cid-tYXF8y6edG .price-figure {
  color: #ffffff;
}
.cid-tYXF8y6edG .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYXF8y6edG LI {
  color: #ffffff;
}
.cid-tYGcd9wkkg {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYGcd9wkkg .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYGcd9wkkg .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYGcd9wkkg .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYGcd9wkkg .plan-subtitle {
  color: #66458e;
}
.cid-tYGcd9wkkg .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYGcd9wkkg .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYGcd9wkkg .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYGcd9wkkg .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYGcd9wkkg .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYGcd9wkkg .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYGcd9wkkg .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYGcd9wkkg .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYGcd9wkkg .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYGcd9wkkg .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYGcd9wkkg .plan {
    margin-bottom: 30px;
  }
}
.cid-tYGcd9wkkg .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYGcd9wkkg .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYGcd9wkkg .plan-title {
  color: #ffffff;
}
.cid-tYGcd9wkkg .price-figure {
  color: #ffffff;
}
.cid-tYGcd9wkkg .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYGcd9wkkg LI {
  color: #ffffff;
}
.cid-u3VlwpA0c9 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u3VlwpA0c9 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u3VlwpA0c9 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u3VlwpA0c9 .list-group-item {
  padding: .75rem 0rem;
}
.cid-u3VlwpA0c9 .plan-subtitle {
  color: #66458e;
}
.cid-u3VlwpA0c9 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u3VlwpA0c9 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u3VlwpA0c9 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u3VlwpA0c9 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u3VlwpA0c9 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u3VlwpA0c9 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u3VlwpA0c9 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u3VlwpA0c9 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u3VlwpA0c9 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u3VlwpA0c9 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u3VlwpA0c9 .plan {
    margin-bottom: 30px;
  }
}
.cid-u3VlwpA0c9 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u3VlwpA0c9 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u3VlwpA0c9 .plan-title {
  color: #ffffff;
}
.cid-u3VlwpA0c9 .price-figure {
  color: #ffffff;
}
.cid-u3VlwpA0c9 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u3VlwpA0c9 LI {
  color: #ffffff;
}
.cid-u129panpaB {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u129panpaB .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u129panpaB .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u129panpaB .list-group-item {
  padding: .75rem 0rem;
}
.cid-u129panpaB .plan-subtitle {
  color: #66458e;
}
.cid-u129panpaB .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u129panpaB .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u129panpaB .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u129panpaB .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u129panpaB .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u129panpaB .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u129panpaB .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u129panpaB .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u129panpaB .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u129panpaB .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u129panpaB .plan {
    margin-bottom: 30px;
  }
}
.cid-u129panpaB .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u129panpaB .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u129panpaB .plan-title {
  color: #ffffff;
}
.cid-u129panpaB .price-figure {
  color: #ffffff;
}
.cid-u129panpaB .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u129panpaB LI {
  color: #ffffff;
}
.cid-tTRxXcH3lf {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tTRxXcH3lf .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tTRxXcH3lf .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tTRxXcH3lf .list-group-item {
  padding: .75rem 0rem;
}
.cid-tTRxXcH3lf .plan-subtitle {
  color: #66458e;
}
.cid-tTRxXcH3lf .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tTRxXcH3lf .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tTRxXcH3lf .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tTRxXcH3lf .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tTRxXcH3lf .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tTRxXcH3lf .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tTRxXcH3lf .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tTRxXcH3lf .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tTRxXcH3lf .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tTRxXcH3lf .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tTRxXcH3lf .plan {
    margin-bottom: 30px;
  }
}
.cid-tTRxXcH3lf .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tTRxXcH3lf .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tTRxXcH3lf .plan-title {
  color: #ffffff;
}
.cid-tTRxXcH3lf .price-figure {
  color: #ffffff;
}
.cid-tTRxXcH3lf .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tTRxXcH3lf LI {
  color: #ffffff;
}
.cid-u128isuCMa {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u128isuCMa .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u128isuCMa .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u128isuCMa .list-group-item {
  padding: .75rem 0rem;
}
.cid-u128isuCMa .plan-subtitle {
  color: #66458e;
}
.cid-u128isuCMa .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u128isuCMa .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u128isuCMa .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u128isuCMa .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u128isuCMa .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u128isuCMa .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u128isuCMa .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u128isuCMa .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u128isuCMa .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u128isuCMa .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u128isuCMa .plan {
    margin-bottom: 30px;
  }
}
.cid-u128isuCMa .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u128isuCMa .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u128isuCMa .plan-title {
  color: #ffffff;
}
.cid-u128isuCMa .price-figure {
  color: #ffffff;
}
.cid-u128isuCMa .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u128isuCMa LI {
  color: #ffffff;
}
.cid-tZl5BHMbRC {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tZl5BHMbRC .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tZl5BHMbRC .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tZl5BHMbRC .list-group-item {
  padding: .75rem 0rem;
}
.cid-tZl5BHMbRC .plan-subtitle {
  color: #66458e;
}
.cid-tZl5BHMbRC .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tZl5BHMbRC .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tZl5BHMbRC .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tZl5BHMbRC .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tZl5BHMbRC .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tZl5BHMbRC .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tZl5BHMbRC .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tZl5BHMbRC .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tZl5BHMbRC .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tZl5BHMbRC .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tZl5BHMbRC .plan {
    margin-bottom: 30px;
  }
}
.cid-tZl5BHMbRC .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tZl5BHMbRC .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tZl5BHMbRC .plan-title {
  color: #ffffff;
}
.cid-tZl5BHMbRC .price-figure {
  color: #ffffff;
}
.cid-tZl5BHMbRC .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tZl5BHMbRC LI {
  color: #ffffff;
}
.cid-u122q9A0rG {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u122q9A0rG .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u122q9A0rG .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u122q9A0rG .list-group-item {
  padding: .75rem 0rem;
}
.cid-u122q9A0rG .plan-subtitle {
  color: #66458e;
}
.cid-u122q9A0rG .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u122q9A0rG .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u122q9A0rG .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u122q9A0rG .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u122q9A0rG .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u122q9A0rG .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u122q9A0rG .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u122q9A0rG .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u122q9A0rG .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u122q9A0rG .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u122q9A0rG .plan {
    margin-bottom: 30px;
  }
}
.cid-u122q9A0rG .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u122q9A0rG .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u122q9A0rG .plan-title {
  color: #ffffff;
}
.cid-u122q9A0rG .price-figure {
  color: #ffffff;
}
.cid-u122q9A0rG .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u122q9A0rG LI {
  color: #ffffff;
}
.cid-tYXCYNwzkK {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tYXCYNwzkK .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tYXCYNwzkK .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tYXCYNwzkK .list-group-item {
  padding: .75rem 0rem;
}
.cid-tYXCYNwzkK .plan-subtitle {
  color: #66458e;
}
.cid-tYXCYNwzkK .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tYXCYNwzkK .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tYXCYNwzkK .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tYXCYNwzkK .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tYXCYNwzkK .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tYXCYNwzkK .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tYXCYNwzkK .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tYXCYNwzkK .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tYXCYNwzkK .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tYXCYNwzkK .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tYXCYNwzkK .plan {
    margin-bottom: 30px;
  }
}
.cid-tYXCYNwzkK .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tYXCYNwzkK .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tYXCYNwzkK .plan-title {
  color: #ffffff;
}
.cid-tYXCYNwzkK .price-figure {
  color: #ffffff;
}
.cid-tYXCYNwzkK .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tYXCYNwzkK LI {
  color: #ffffff;
}
.cid-u12cFNcVGa {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u12cFNcVGa .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u12cFNcVGa .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u12cFNcVGa .list-group-item {
  padding: .75rem 0rem;
}
.cid-u12cFNcVGa .plan-subtitle {
  color: #66458e;
}
.cid-u12cFNcVGa .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u12cFNcVGa .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u12cFNcVGa .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u12cFNcVGa .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u12cFNcVGa .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u12cFNcVGa .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u12cFNcVGa .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u12cFNcVGa .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u12cFNcVGa .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u12cFNcVGa .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u12cFNcVGa .plan {
    margin-bottom: 30px;
  }
}
.cid-u12cFNcVGa .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u12cFNcVGa .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u12cFNcVGa .plan-title {
  color: #ffffff;
}
.cid-u12cFNcVGa .price-figure {
  color: #ffffff;
}
.cid-u12cFNcVGa .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u12cFNcVGa LI {
  color: #ffffff;
}
.cid-u12bOSyfZn {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u12bOSyfZn .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u12bOSyfZn .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u12bOSyfZn .list-group-item {
  padding: .75rem 0rem;
}
.cid-u12bOSyfZn .plan-subtitle {
  color: #66458e;
}
.cid-u12bOSyfZn .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u12bOSyfZn .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u12bOSyfZn .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u12bOSyfZn .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u12bOSyfZn .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u12bOSyfZn .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u12bOSyfZn .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u12bOSyfZn .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u12bOSyfZn .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u12bOSyfZn .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u12bOSyfZn .plan {
    margin-bottom: 30px;
  }
}
.cid-u12bOSyfZn .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u12bOSyfZn .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u12bOSyfZn .plan-title {
  color: #ffffff;
}
.cid-u12bOSyfZn .price-figure {
  color: #ffffff;
}
.cid-u12bOSyfZn .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u12bOSyfZn LI {
  color: #ffffff;
}
.cid-u12acffQ6l {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u12acffQ6l .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u12acffQ6l .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u12acffQ6l .list-group-item {
  padding: .75rem 0rem;
}
.cid-u12acffQ6l .plan-subtitle {
  color: #66458e;
}
.cid-u12acffQ6l .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u12acffQ6l .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u12acffQ6l .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u12acffQ6l .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u12acffQ6l .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u12acffQ6l .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u12acffQ6l .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u12acffQ6l .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u12acffQ6l .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u12acffQ6l .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u12acffQ6l .plan {
    margin-bottom: 30px;
  }
}
.cid-u12acffQ6l .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u12acffQ6l .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u12acffQ6l .plan-title {
  color: #ffffff;
}
.cid-u12acffQ6l .price-figure {
  color: #ffffff;
}
.cid-u12acffQ6l .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u12acffQ6l LI {
  color: #ffffff;
}
.cid-u12aOIRLKr {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u12aOIRLKr .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u12aOIRLKr .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u12aOIRLKr .list-group-item {
  padding: .75rem 0rem;
}
.cid-u12aOIRLKr .plan-subtitle {
  color: #66458e;
}
.cid-u12aOIRLKr .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u12aOIRLKr .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u12aOIRLKr .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u12aOIRLKr .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u12aOIRLKr .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u12aOIRLKr .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u12aOIRLKr .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u12aOIRLKr .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u12aOIRLKr .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u12aOIRLKr .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u12aOIRLKr .plan {
    margin-bottom: 30px;
  }
}
.cid-u12aOIRLKr .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u12aOIRLKr .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u12aOIRLKr .plan-title {
  color: #ffffff;
}
.cid-u12aOIRLKr .price-figure {
  color: #ffffff;
}
.cid-u12aOIRLKr .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u12aOIRLKr LI {
  color: #ffffff;
}
.cid-u12cgqNKJI {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u12cgqNKJI .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u12cgqNKJI .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u12cgqNKJI .list-group-item {
  padding: .75rem 0rem;
}
.cid-u12cgqNKJI .plan-subtitle {
  color: #66458e;
}
.cid-u12cgqNKJI .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u12cgqNKJI .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u12cgqNKJI .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u12cgqNKJI .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u12cgqNKJI .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u12cgqNKJI .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u12cgqNKJI .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u12cgqNKJI .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u12cgqNKJI .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u12cgqNKJI .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u12cgqNKJI .plan {
    margin-bottom: 30px;
  }
}
.cid-u12cgqNKJI .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u12cgqNKJI .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u12cgqNKJI .plan-title {
  color: #ffffff;
}
.cid-u12cgqNKJI .price-figure {
  color: #ffffff;
}
.cid-u12cgqNKJI .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u12cgqNKJI LI {
  color: #ffffff;
}
.cid-u12dkhE981 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u12dkhE981 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u12dkhE981 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u12dkhE981 .list-group-item {
  padding: .75rem 0rem;
}
.cid-u12dkhE981 .plan-subtitle {
  color: #66458e;
}
.cid-u12dkhE981 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u12dkhE981 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u12dkhE981 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u12dkhE981 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u12dkhE981 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u12dkhE981 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u12dkhE981 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u12dkhE981 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u12dkhE981 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u12dkhE981 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u12dkhE981 .plan {
    margin-bottom: 30px;
  }
}
.cid-u12dkhE981 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u12dkhE981 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u12dkhE981 .plan-title {
  color: #ffffff;
}
.cid-u12dkhE981 .price-figure {
  color: #ffffff;
}
.cid-u12dkhE981 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u12dkhE981 LI {
  color: #ffffff;
}
.cid-u12dKfSm7Q {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u12dKfSm7Q .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u12dKfSm7Q .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u12dKfSm7Q .list-group-item {
  padding: .75rem 0rem;
}
.cid-u12dKfSm7Q .plan-subtitle {
  color: #66458e;
}
.cid-u12dKfSm7Q .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u12dKfSm7Q .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u12dKfSm7Q .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u12dKfSm7Q .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u12dKfSm7Q .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u12dKfSm7Q .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u12dKfSm7Q .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u12dKfSm7Q .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u12dKfSm7Q .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u12dKfSm7Q .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u12dKfSm7Q .plan {
    margin-bottom: 30px;
  }
}
.cid-u12dKfSm7Q .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u12dKfSm7Q .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u12dKfSm7Q .plan-title {
  color: #ffffff;
}
.cid-u12dKfSm7Q .price-figure {
  color: #ffffff;
}
.cid-u12dKfSm7Q .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u12dKfSm7Q LI {
  color: #ffffff;
}
.cid-u4O11dK9GM {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u4O11dK9GM .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u4O11dK9GM .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u4O11dK9GM .list-group-item {
  padding: .75rem 0rem;
}
.cid-u4O11dK9GM .plan-subtitle {
  color: #66458e;
}
.cid-u4O11dK9GM .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u4O11dK9GM .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u4O11dK9GM .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u4O11dK9GM .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u4O11dK9GM .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u4O11dK9GM .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u4O11dK9GM .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u4O11dK9GM .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u4O11dK9GM .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u4O11dK9GM .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u4O11dK9GM .plan {
    margin-bottom: 30px;
  }
}
.cid-u4O11dK9GM .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u4O11dK9GM .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u4O11dK9GM .plan-title {
  color: #ffffff;
}
.cid-u4O11dK9GM .price-figure {
  color: #ffffff;
}
.cid-u4O11dK9GM .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u4O11dK9GM LI {
  color: #ffffff;
}
.cid-u4O1ELQ3vM {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u4O1ELQ3vM .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u4O1ELQ3vM .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u4O1ELQ3vM .list-group-item {
  padding: .75rem 0rem;
}
.cid-u4O1ELQ3vM .plan-subtitle {
  color: #66458e;
}
.cid-u4O1ELQ3vM .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u4O1ELQ3vM .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u4O1ELQ3vM .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u4O1ELQ3vM .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u4O1ELQ3vM .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u4O1ELQ3vM .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u4O1ELQ3vM .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u4O1ELQ3vM .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u4O1ELQ3vM .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u4O1ELQ3vM .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u4O1ELQ3vM .plan {
    margin-bottom: 30px;
  }
}
.cid-u4O1ELQ3vM .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u4O1ELQ3vM .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u4O1ELQ3vM .plan-title {
  color: #ffffff;
}
.cid-u4O1ELQ3vM .price-figure {
  color: #ffffff;
}
.cid-u4O1ELQ3vM .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u4O1ELQ3vM LI {
  color: #ffffff;
}
.cid-u4O334iHVG {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u4O334iHVG .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u4O334iHVG .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u4O334iHVG .list-group-item {
  padding: .75rem 0rem;
}
.cid-u4O334iHVG .plan-subtitle {
  color: #66458e;
}
.cid-u4O334iHVG .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u4O334iHVG .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u4O334iHVG .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u4O334iHVG .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u4O334iHVG .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u4O334iHVG .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u4O334iHVG .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u4O334iHVG .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u4O334iHVG .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u4O334iHVG .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u4O334iHVG .plan {
    margin-bottom: 30px;
  }
}
.cid-u4O334iHVG .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u4O334iHVG .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u4O334iHVG .plan-title {
  color: #ffffff;
}
.cid-u4O334iHVG .price-figure {
  color: #ffffff;
}
.cid-u4O334iHVG .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u4O334iHVG LI {
  color: #ffffff;
}
.cid-u55jJC83ia {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u55jJC83ia .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u55jJC83ia .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u55jJC83ia .list-group-item {
  padding: .75rem 0rem;
}
.cid-u55jJC83ia .plan-subtitle {
  color: #66458e;
}
.cid-u55jJC83ia .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u55jJC83ia .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u55jJC83ia .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u55jJC83ia .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u55jJC83ia .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u55jJC83ia .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u55jJC83ia .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u55jJC83ia .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u55jJC83ia .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u55jJC83ia .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u55jJC83ia .plan {
    margin-bottom: 30px;
  }
}
.cid-u55jJC83ia .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u55jJC83ia .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u55jJC83ia .plan-title {
  color: #ffffff;
}
.cid-u55jJC83ia .price-figure {
  color: #ffffff;
}
.cid-u55jJC83ia .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u55jJC83ia LI {
  color: #ffffff;
}
.cid-u55kUnxyIq {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u55kUnxyIq .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u55kUnxyIq .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u55kUnxyIq .list-group-item {
  padding: .75rem 0rem;
}
.cid-u55kUnxyIq .plan-subtitle {
  color: #66458e;
}
.cid-u55kUnxyIq .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u55kUnxyIq .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u55kUnxyIq .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u55kUnxyIq .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u55kUnxyIq .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u55kUnxyIq .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u55kUnxyIq .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u55kUnxyIq .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u55kUnxyIq .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u55kUnxyIq .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u55kUnxyIq .plan {
    margin-bottom: 30px;
  }
}
.cid-u55kUnxyIq .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u55kUnxyIq .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u55kUnxyIq .plan-title {
  color: #ffffff;
}
.cid-u55kUnxyIq .price-figure {
  color: #ffffff;
}
.cid-u55kUnxyIq .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u55kUnxyIq LI {
  color: #ffffff;
}
.cid-u55oWLVlrN {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u55oWLVlrN .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u55oWLVlrN .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u55oWLVlrN .list-group-item {
  padding: .75rem 0rem;
}
.cid-u55oWLVlrN .plan-subtitle {
  color: #66458e;
}
.cid-u55oWLVlrN .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u55oWLVlrN .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u55oWLVlrN .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u55oWLVlrN .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u55oWLVlrN .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u55oWLVlrN .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u55oWLVlrN .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u55oWLVlrN .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u55oWLVlrN .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u55oWLVlrN .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u55oWLVlrN .plan {
    margin-bottom: 30px;
  }
}
.cid-u55oWLVlrN .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u55oWLVlrN .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u55oWLVlrN .plan-title {
  color: #ffffff;
}
.cid-u55oWLVlrN .price-figure {
  color: #ffffff;
}
.cid-u55oWLVlrN .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u55oWLVlrN LI {
  color: #ffffff;
}
.cid-u55qCnRt7f {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-u55qCnRt7f .plan-body .btn-bgr {
  z-index: 0;
}
.cid-u55qCnRt7f .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-u55qCnRt7f .list-group-item {
  padding: .75rem 0rem;
}
.cid-u55qCnRt7f .plan-subtitle {
  color: #66458e;
}
.cid-u55qCnRt7f .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-u55qCnRt7f .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-u55qCnRt7f .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-u55qCnRt7f .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-u55qCnRt7f .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-u55qCnRt7f .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-u55qCnRt7f .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-u55qCnRt7f .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-u55qCnRt7f .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-u55qCnRt7f .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-u55qCnRt7f .plan {
    margin-bottom: 30px;
  }
}
.cid-u55qCnRt7f .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-u55qCnRt7f .price-figure {
    font-size: 4.25rem;
  }
}
.cid-u55qCnRt7f .plan-title {
  color: #ffffff;
}
.cid-u55qCnRt7f .price-figure {
  color: #ffffff;
}
.cid-u55qCnRt7f .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-u55qCnRt7f LI {
  color: #ffffff;
}
.cid-tTRyQVhxyH {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tTRyQVhxyH .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tTRyQVhxyH .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tTRyQVhxyH .list-group-item {
  padding: .75rem 0rem;
}
.cid-tTRyQVhxyH .plan-subtitle {
  color: #66458e;
}
.cid-tTRyQVhxyH .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tTRyQVhxyH .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tTRyQVhxyH .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tTRyQVhxyH .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tTRyQVhxyH .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tTRyQVhxyH .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tTRyQVhxyH .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tTRyQVhxyH .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tTRyQVhxyH .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tTRyQVhxyH .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tTRyQVhxyH .plan {
    margin-bottom: 30px;
  }
}
.cid-tTRyQVhxyH .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tTRyQVhxyH .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tTRyQVhxyH .plan-title {
  color: #ffffff;
}
.cid-tTRyQVhxyH .price-figure {
  color: #ffffff;
}
.cid-tTRyQVhxyH .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tTRyQVhxyH LI {
  color: #ffffff;
}
.cid-tTRzrMQEi2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tTRzrMQEi2 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tTRzrMQEi2 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tTRzrMQEi2 .list-group-item {
  padding: .75rem 0rem;
}
.cid-tTRzrMQEi2 .plan-subtitle {
  color: #66458e;
}
.cid-tTRzrMQEi2 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tTRzrMQEi2 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tTRzrMQEi2 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tTRzrMQEi2 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tTRzrMQEi2 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tTRzrMQEi2 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tTRzrMQEi2 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tTRzrMQEi2 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tTRzrMQEi2 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tTRzrMQEi2 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tTRzrMQEi2 .plan {
    margin-bottom: 30px;
  }
}
.cid-tTRzrMQEi2 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tTRzrMQEi2 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tTRzrMQEi2 .plan-title {
  color: #ffffff;
}
.cid-tTRzrMQEi2 .price-figure {
  color: #ffffff;
}
.cid-tTRzrMQEi2 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tTRzrMQEi2 LI {
  color: #ffffff;
}
.cid-tTRAkkyiib {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tTRAkkyiib .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tTRAkkyiib .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tTRAkkyiib .list-group-item {
  padding: .75rem 0rem;
}
.cid-tTRAkkyiib .plan-subtitle {
  color: #66458e;
}
.cid-tTRAkkyiib .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tTRAkkyiib .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tTRAkkyiib .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tTRAkkyiib .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tTRAkkyiib .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tTRAkkyiib .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tTRAkkyiib .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tTRAkkyiib .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tTRAkkyiib .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tTRAkkyiib .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tTRAkkyiib .plan {
    margin-bottom: 30px;
  }
}
.cid-tTRAkkyiib .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tTRAkkyiib .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tTRAkkyiib .plan-title {
  color: #ffffff;
}
.cid-tTRAkkyiib .price-figure {
  color: #ffffff;
}
.cid-tTRAkkyiib .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tTRAkkyiib LI {
  color: #ffffff;
}
.cid-rRS2wdYN5C {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRS2wdYN5C .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRS2wdYN5C .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRS2wdYN5C .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRS2wdYN5C .plan-subtitle {
  color: #66458e;
}
.cid-rRS2wdYN5C .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRS2wdYN5C .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRS2wdYN5C .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRS2wdYN5C .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRS2wdYN5C .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRS2wdYN5C .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRS2wdYN5C .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRS2wdYN5C .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRS2wdYN5C .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRS2wdYN5C .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRS2wdYN5C .plan {
    margin-bottom: 30px;
  }
}
.cid-rRS2wdYN5C .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRS2wdYN5C .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRS2wdYN5C .plan-title {
  color: #ffffff;
}
.cid-rRS2wdYN5C .price-figure {
  color: #ffffff;
}
.cid-rRS2wdYN5C .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRS2wdYN5C LI {
  color: #ffffff;
}
.cid-rRS75mGAt1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRS75mGAt1 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRS75mGAt1 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRS75mGAt1 .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRS75mGAt1 .plan-subtitle {
  color: #66458e;
}
.cid-rRS75mGAt1 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRS75mGAt1 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRS75mGAt1 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRS75mGAt1 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRS75mGAt1 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRS75mGAt1 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRS75mGAt1 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRS75mGAt1 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRS75mGAt1 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRS75mGAt1 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRS75mGAt1 .plan {
    margin-bottom: 30px;
  }
}
.cid-rRS75mGAt1 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRS75mGAt1 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRS75mGAt1 .plan-title {
  color: #ffffff;
}
.cid-rRS75mGAt1 .price-figure {
  color: #ffffff;
}
.cid-rRS75mGAt1 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRS75mGAt1 LI {
  color: #ffffff;
}
.cid-rRS8fj9HTp {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRS8fj9HTp .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRS8fj9HTp .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRS8fj9HTp .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRS8fj9HTp .plan-subtitle {
  color: #66458e;
}
.cid-rRS8fj9HTp .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRS8fj9HTp .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRS8fj9HTp .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRS8fj9HTp .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRS8fj9HTp .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRS8fj9HTp .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRS8fj9HTp .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRS8fj9HTp .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRS8fj9HTp .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRS8fj9HTp .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRS8fj9HTp .plan {
    margin-bottom: 30px;
  }
}
.cid-rRS8fj9HTp .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRS8fj9HTp .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRS8fj9HTp .plan-title {
  color: #ffffff;
}
.cid-rRS8fj9HTp .price-figure {
  color: #ffffff;
}
.cid-rRS8fj9HTp .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRS8fj9HTp LI {
  color: #ffffff;
}
.cid-rRS93C5DC9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRS93C5DC9 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRS93C5DC9 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRS93C5DC9 .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRS93C5DC9 .plan-subtitle {
  color: #66458e;
}
.cid-rRS93C5DC9 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRS93C5DC9 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRS93C5DC9 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRS93C5DC9 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRS93C5DC9 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRS93C5DC9 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRS93C5DC9 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRS93C5DC9 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRS93C5DC9 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRS93C5DC9 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRS93C5DC9 .plan {
    margin-bottom: 30px;
  }
}
.cid-rRS93C5DC9 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRS93C5DC9 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRS93C5DC9 .plan-title {
  color: #ffffff;
}
.cid-rRS93C5DC9 .price-figure {
  color: #ffffff;
}
.cid-rRS93C5DC9 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRS93C5DC9 LI {
  color: #ffffff;
}
.cid-rRS9LfyrGK {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRS9LfyrGK .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRS9LfyrGK .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRS9LfyrGK .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRS9LfyrGK .plan-subtitle {
  color: #66458e;
}
.cid-rRS9LfyrGK .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRS9LfyrGK .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRS9LfyrGK .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRS9LfyrGK .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRS9LfyrGK .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRS9LfyrGK .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRS9LfyrGK .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRS9LfyrGK .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRS9LfyrGK .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRS9LfyrGK .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRS9LfyrGK .plan {
    margin-bottom: 30px;
  }
}
.cid-rRS9LfyrGK .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRS9LfyrGK .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRS9LfyrGK .plan-title {
  color: #ffffff;
}
.cid-rRS9LfyrGK .price-figure {
  color: #ffffff;
}
.cid-rRS9LfyrGK .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRS9LfyrGK LI {
  color: #ffffff;
}
.cid-rRSbw818lR {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRSbw818lR .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rRSbw818lR .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rRSbw818lR .list-group-item {
  padding: .75rem 0rem;
}
.cid-rRSbw818lR .plan-subtitle {
  color: #66458e;
}
.cid-rRSbw818lR .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-rRSbw818lR .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-rRSbw818lR .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-rRSbw818lR .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-rRSbw818lR .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-rRSbw818lR .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-rRSbw818lR .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-rRSbw818lR .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRSbw818lR .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-rRSbw818lR .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-rRSbw818lR .plan {
    margin-bottom: 30px;
  }
}
.cid-rRSbw818lR .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-rRSbw818lR .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRSbw818lR .plan-title {
  color: #ffffff;
}
.cid-rRSbw818lR .price-figure {
  color: #ffffff;
}
.cid-rRSbw818lR .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-rRSbw818lR LI {
  color: #ffffff;
}
.cid-tR7QeEx0FT {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tR7QeEx0FT .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tR7QeEx0FT .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tR7QeEx0FT .list-group-item {
  padding: .75rem 0rem;
}
.cid-tR7QeEx0FT .plan-subtitle {
  color: #66458e;
}
.cid-tR7QeEx0FT .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tR7QeEx0FT .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tR7QeEx0FT .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tR7QeEx0FT .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tR7QeEx0FT .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tR7QeEx0FT .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tR7QeEx0FT .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tR7QeEx0FT .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tR7QeEx0FT .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tR7QeEx0FT .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tR7QeEx0FT .plan {
    margin-bottom: 30px;
  }
}
.cid-tR7QeEx0FT .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tR7QeEx0FT .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tR7QeEx0FT .plan-title {
  color: #ffffff;
}
.cid-tR7QeEx0FT .price-figure {
  color: #ffffff;
}
.cid-tR7QeEx0FT .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tR7QeEx0FT LI {
  color: #ffffff;
}
.cid-tR7R7aO97A {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tR7R7aO97A .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tR7R7aO97A .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tR7R7aO97A .list-group-item {
  padding: .75rem 0rem;
}
.cid-tR7R7aO97A .plan-subtitle {
  color: #66458e;
}
.cid-tR7R7aO97A .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tR7R7aO97A .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tR7R7aO97A .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tR7R7aO97A .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tR7R7aO97A .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tR7R7aO97A .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tR7R7aO97A .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tR7R7aO97A .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tR7R7aO97A .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tR7R7aO97A .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tR7R7aO97A .plan {
    margin-bottom: 30px;
  }
}
.cid-tR7R7aO97A .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tR7R7aO97A .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tR7R7aO97A .plan-title {
  color: #ffffff;
}
.cid-tR7R7aO97A .price-figure {
  color: #ffffff;
}
.cid-tR7R7aO97A .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tR7R7aO97A LI {
  color: #ffffff;
}
.cid-tR7RAQGM7X {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tR7RAQGM7X .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tR7RAQGM7X .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tR7RAQGM7X .list-group-item {
  padding: .75rem 0rem;
}
.cid-tR7RAQGM7X .plan-subtitle {
  color: #66458e;
}
.cid-tR7RAQGM7X .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tR7RAQGM7X .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tR7RAQGM7X .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tR7RAQGM7X .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tR7RAQGM7X .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tR7RAQGM7X .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tR7RAQGM7X .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tR7RAQGM7X .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tR7RAQGM7X .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tR7RAQGM7X .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tR7RAQGM7X .plan {
    margin-bottom: 30px;
  }
}
.cid-tR7RAQGM7X .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tR7RAQGM7X .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tR7RAQGM7X .plan-title {
  color: #ffffff;
}
.cid-tR7RAQGM7X .price-figure {
  color: #ffffff;
}
.cid-tR7RAQGM7X .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tR7RAQGM7X LI {
  color: #ffffff;
}
.cid-tR7SbkpHiT {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tR7SbkpHiT .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tR7SbkpHiT .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tR7SbkpHiT .list-group-item {
  padding: .75rem 0rem;
}
.cid-tR7SbkpHiT .plan-subtitle {
  color: #66458e;
}
.cid-tR7SbkpHiT .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tR7SbkpHiT .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tR7SbkpHiT .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tR7SbkpHiT .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tR7SbkpHiT .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tR7SbkpHiT .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tR7SbkpHiT .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tR7SbkpHiT .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tR7SbkpHiT .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tR7SbkpHiT .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tR7SbkpHiT .plan {
    margin-bottom: 30px;
  }
}
.cid-tR7SbkpHiT .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tR7SbkpHiT .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tR7SbkpHiT .plan-title {
  color: #ffffff;
}
.cid-tR7SbkpHiT .price-figure {
  color: #ffffff;
}
.cid-tR7SbkpHiT .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tR7SbkpHiT LI {
  color: #ffffff;
}
.cid-uC69sSlwMf {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC69sSlwMf .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC69sSlwMf .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC69sSlwMf .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC69sSlwMf .plan-subtitle {
  color: #66458e;
}
.cid-uC69sSlwMf .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC69sSlwMf .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC69sSlwMf .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC69sSlwMf .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC69sSlwMf .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC69sSlwMf .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC69sSlwMf .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC69sSlwMf .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC69sSlwMf .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC69sSlwMf .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC69sSlwMf .plan {
    margin-bottom: 30px;
  }
}
.cid-uC69sSlwMf .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC69sSlwMf .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC69sSlwMf .plan-title {
  color: #ffffff;
}
.cid-uC69sSlwMf .price-figure {
  color: #ffffff;
}
.cid-uC69sSlwMf .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC69sSlwMf LI {
  color: #ffffff;
}
.cid-uC6aMLuCXl {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6aMLuCXl .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6aMLuCXl .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6aMLuCXl .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6aMLuCXl .plan-subtitle {
  color: #66458e;
}
.cid-uC6aMLuCXl .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6aMLuCXl .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6aMLuCXl .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6aMLuCXl .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6aMLuCXl .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6aMLuCXl .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6aMLuCXl .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6aMLuCXl .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6aMLuCXl .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6aMLuCXl .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6aMLuCXl .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6aMLuCXl .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6aMLuCXl .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6aMLuCXl .plan-title {
  color: #ffffff;
}
.cid-uC6aMLuCXl .price-figure {
  color: #ffffff;
}
.cid-uC6aMLuCXl .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6aMLuCXl LI {
  color: #ffffff;
}
.cid-uC6bjeGldi {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6bjeGldi .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6bjeGldi .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6bjeGldi .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6bjeGldi .plan-subtitle {
  color: #66458e;
}
.cid-uC6bjeGldi .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6bjeGldi .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6bjeGldi .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6bjeGldi .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6bjeGldi .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6bjeGldi .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6bjeGldi .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6bjeGldi .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6bjeGldi .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6bjeGldi .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6bjeGldi .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6bjeGldi .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6bjeGldi .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6bjeGldi .plan-title {
  color: #ffffff;
}
.cid-uC6bjeGldi .price-figure {
  color: #ffffff;
}
.cid-uC6bjeGldi .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6bjeGldi LI {
  color: #ffffff;
}
.cid-uC6bSzds4d {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6bSzds4d .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6bSzds4d .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6bSzds4d .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6bSzds4d .plan-subtitle {
  color: #66458e;
}
.cid-uC6bSzds4d .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6bSzds4d .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6bSzds4d .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6bSzds4d .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6bSzds4d .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6bSzds4d .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6bSzds4d .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6bSzds4d .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6bSzds4d .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6bSzds4d .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6bSzds4d .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6bSzds4d .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6bSzds4d .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6bSzds4d .plan-title {
  color: #ffffff;
}
.cid-uC6bSzds4d .price-figure {
  color: #ffffff;
}
.cid-uC6bSzds4d .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6bSzds4d LI {
  color: #ffffff;
}
.cid-uC6crr2s47 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6crr2s47 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6crr2s47 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6crr2s47 .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6crr2s47 .plan-subtitle {
  color: #66458e;
}
.cid-uC6crr2s47 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6crr2s47 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6crr2s47 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6crr2s47 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6crr2s47 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6crr2s47 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6crr2s47 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6crr2s47 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6crr2s47 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6crr2s47 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6crr2s47 .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6crr2s47 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6crr2s47 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6crr2s47 .plan-title {
  color: #ffffff;
}
.cid-uC6crr2s47 .price-figure {
  color: #ffffff;
}
.cid-uC6crr2s47 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6crr2s47 LI {
  color: #ffffff;
}
.cid-uC6dAdAFy2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6dAdAFy2 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6dAdAFy2 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6dAdAFy2 .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6dAdAFy2 .plan-subtitle {
  color: #66458e;
}
.cid-uC6dAdAFy2 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6dAdAFy2 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6dAdAFy2 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6dAdAFy2 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6dAdAFy2 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6dAdAFy2 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6dAdAFy2 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6dAdAFy2 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6dAdAFy2 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6dAdAFy2 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6dAdAFy2 .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6dAdAFy2 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6dAdAFy2 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6dAdAFy2 .plan-title {
  color: #ffffff;
}
.cid-uC6dAdAFy2 .price-figure {
  color: #ffffff;
}
.cid-uC6dAdAFy2 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6dAdAFy2 LI {
  color: #ffffff;
}
.cid-uC6easXFWe {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6easXFWe .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6easXFWe .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6easXFWe .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6easXFWe .plan-subtitle {
  color: #66458e;
}
.cid-uC6easXFWe .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6easXFWe .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6easXFWe .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6easXFWe .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6easXFWe .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6easXFWe .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6easXFWe .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6easXFWe .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6easXFWe .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6easXFWe .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6easXFWe .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6easXFWe .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6easXFWe .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6easXFWe .plan-title {
  color: #ffffff;
}
.cid-uC6easXFWe .price-figure {
  color: #ffffff;
}
.cid-uC6easXFWe .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6easXFWe LI {
  color: #ffffff;
}
.cid-uC6eQKJbTs {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6eQKJbTs .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6eQKJbTs .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6eQKJbTs .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6eQKJbTs .plan-subtitle {
  color: #66458e;
}
.cid-uC6eQKJbTs .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6eQKJbTs .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6eQKJbTs .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6eQKJbTs .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6eQKJbTs .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6eQKJbTs .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6eQKJbTs .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6eQKJbTs .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6eQKJbTs .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6eQKJbTs .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6eQKJbTs .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6eQKJbTs .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6eQKJbTs .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6eQKJbTs .plan-title {
  color: #ffffff;
}
.cid-uC6eQKJbTs .price-figure {
  color: #ffffff;
}
.cid-uC6eQKJbTs .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6eQKJbTs LI {
  color: #ffffff;
}
.cid-uC6fvrC3Kv {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6fvrC3Kv .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6fvrC3Kv .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6fvrC3Kv .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6fvrC3Kv .plan-subtitle {
  color: #66458e;
}
.cid-uC6fvrC3Kv .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6fvrC3Kv .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6fvrC3Kv .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6fvrC3Kv .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6fvrC3Kv .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6fvrC3Kv .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6fvrC3Kv .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6fvrC3Kv .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6fvrC3Kv .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6fvrC3Kv .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6fvrC3Kv .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6fvrC3Kv .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6fvrC3Kv .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6fvrC3Kv .plan-title {
  color: #ffffff;
}
.cid-uC6fvrC3Kv .price-figure {
  color: #ffffff;
}
.cid-uC6fvrC3Kv .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6fvrC3Kv LI {
  color: #ffffff;
}
.cid-uC6gd03MEn {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6gd03MEn .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6gd03MEn .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6gd03MEn .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6gd03MEn .plan-subtitle {
  color: #66458e;
}
.cid-uC6gd03MEn .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6gd03MEn .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6gd03MEn .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6gd03MEn .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6gd03MEn .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6gd03MEn .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6gd03MEn .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6gd03MEn .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6gd03MEn .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6gd03MEn .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6gd03MEn .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6gd03MEn .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6gd03MEn .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6gd03MEn .plan-title {
  color: #ffffff;
}
.cid-uC6gd03MEn .price-figure {
  color: #ffffff;
}
.cid-uC6gd03MEn .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6gd03MEn LI {
  color: #ffffff;
}
.cid-uC6gFlUKoy {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6gFlUKoy .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6gFlUKoy .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6gFlUKoy .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6gFlUKoy .plan-subtitle {
  color: #66458e;
}
.cid-uC6gFlUKoy .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6gFlUKoy .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6gFlUKoy .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6gFlUKoy .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6gFlUKoy .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6gFlUKoy .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6gFlUKoy .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6gFlUKoy .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6gFlUKoy .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6gFlUKoy .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6gFlUKoy .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6gFlUKoy .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6gFlUKoy .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6gFlUKoy .plan-title {
  color: #ffffff;
}
.cid-uC6gFlUKoy .price-figure {
  color: #ffffff;
}
.cid-uC6gFlUKoy .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6gFlUKoy LI {
  color: #ffffff;
}
.cid-uC6h8RatIS {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6h8RatIS .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6h8RatIS .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6h8RatIS .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6h8RatIS .plan-subtitle {
  color: #66458e;
}
.cid-uC6h8RatIS .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6h8RatIS .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6h8RatIS .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6h8RatIS .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6h8RatIS .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6h8RatIS .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6h8RatIS .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6h8RatIS .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6h8RatIS .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6h8RatIS .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6h8RatIS .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6h8RatIS .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6h8RatIS .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6h8RatIS .plan-title {
  color: #ffffff;
}
.cid-uC6h8RatIS .price-figure {
  color: #ffffff;
}
.cid-uC6h8RatIS .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6h8RatIS LI {
  color: #ffffff;
}
.cid-uC6hwMgDEY {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6hwMgDEY .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6hwMgDEY .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6hwMgDEY .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6hwMgDEY .plan-subtitle {
  color: #66458e;
}
.cid-uC6hwMgDEY .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6hwMgDEY .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6hwMgDEY .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6hwMgDEY .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6hwMgDEY .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6hwMgDEY .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6hwMgDEY .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6hwMgDEY .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6hwMgDEY .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6hwMgDEY .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6hwMgDEY .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6hwMgDEY .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6hwMgDEY .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6hwMgDEY .plan-title {
  color: #ffffff;
}
.cid-uC6hwMgDEY .price-figure {
  color: #ffffff;
}
.cid-uC6hwMgDEY .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6hwMgDEY LI {
  color: #ffffff;
}
.cid-uC6igOVYGA {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6igOVYGA .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6igOVYGA .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6igOVYGA .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6igOVYGA .plan-subtitle {
  color: #66458e;
}
.cid-uC6igOVYGA .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6igOVYGA .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6igOVYGA .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6igOVYGA .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6igOVYGA .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6igOVYGA .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6igOVYGA .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6igOVYGA .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6igOVYGA .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6igOVYGA .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6igOVYGA .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6igOVYGA .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6igOVYGA .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6igOVYGA .plan-title {
  color: #ffffff;
}
.cid-uC6igOVYGA .price-figure {
  color: #ffffff;
}
.cid-uC6igOVYGA .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6igOVYGA LI {
  color: #ffffff;
}
.cid-uC6j2kcnsN {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6j2kcnsN .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6j2kcnsN .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6j2kcnsN .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6j2kcnsN .plan-subtitle {
  color: #66458e;
}
.cid-uC6j2kcnsN .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6j2kcnsN .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6j2kcnsN .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6j2kcnsN .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6j2kcnsN .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6j2kcnsN .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6j2kcnsN .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6j2kcnsN .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6j2kcnsN .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6j2kcnsN .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6j2kcnsN .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6j2kcnsN .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6j2kcnsN .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6j2kcnsN .plan-title {
  color: #ffffff;
}
.cid-uC6j2kcnsN .price-figure {
  color: #ffffff;
}
.cid-uC6j2kcnsN .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6j2kcnsN LI {
  color: #ffffff;
}
.cid-uC6k8UFu8J {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6k8UFu8J .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6k8UFu8J .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6k8UFu8J .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6k8UFu8J .plan-subtitle {
  color: #66458e;
}
.cid-uC6k8UFu8J .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6k8UFu8J .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6k8UFu8J .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6k8UFu8J .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6k8UFu8J .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6k8UFu8J .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6k8UFu8J .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6k8UFu8J .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6k8UFu8J .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6k8UFu8J .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6k8UFu8J .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6k8UFu8J .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6k8UFu8J .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6k8UFu8J .plan-title {
  color: #ffffff;
}
.cid-uC6k8UFu8J .price-figure {
  color: #ffffff;
}
.cid-uC6k8UFu8J .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6k8UFu8J LI {
  color: #ffffff;
}
.cid-uC6kYwycKj {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6kYwycKj .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6kYwycKj .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6kYwycKj .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6kYwycKj .plan-subtitle {
  color: #66458e;
}
.cid-uC6kYwycKj .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6kYwycKj .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6kYwycKj .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6kYwycKj .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6kYwycKj .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6kYwycKj .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6kYwycKj .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6kYwycKj .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6kYwycKj .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6kYwycKj .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6kYwycKj .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6kYwycKj .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6kYwycKj .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6kYwycKj .plan-title {
  color: #ffffff;
}
.cid-uC6kYwycKj .price-figure {
  color: #ffffff;
}
.cid-uC6kYwycKj .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6kYwycKj LI {
  color: #ffffff;
}
.cid-uC6m1yX1Gj {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6m1yX1Gj .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6m1yX1Gj .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6m1yX1Gj .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6m1yX1Gj .plan-subtitle {
  color: #66458e;
}
.cid-uC6m1yX1Gj .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6m1yX1Gj .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6m1yX1Gj .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6m1yX1Gj .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6m1yX1Gj .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6m1yX1Gj .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6m1yX1Gj .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6m1yX1Gj .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6m1yX1Gj .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6m1yX1Gj .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6m1yX1Gj .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6m1yX1Gj .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6m1yX1Gj .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6m1yX1Gj .plan-title {
  color: #ffffff;
}
.cid-uC6m1yX1Gj .price-figure {
  color: #ffffff;
}
.cid-uC6m1yX1Gj .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6m1yX1Gj LI {
  color: #ffffff;
}
.cid-uC6mAhT4g2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uC6mAhT4g2 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uC6mAhT4g2 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uC6mAhT4g2 .list-group-item {
  padding: .75rem 0rem;
}
.cid-uC6mAhT4g2 .plan-subtitle {
  color: #66458e;
}
.cid-uC6mAhT4g2 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uC6mAhT4g2 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uC6mAhT4g2 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uC6mAhT4g2 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uC6mAhT4g2 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uC6mAhT4g2 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uC6mAhT4g2 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uC6mAhT4g2 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uC6mAhT4g2 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uC6mAhT4g2 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uC6mAhT4g2 .plan {
    margin-bottom: 30px;
  }
}
.cid-uC6mAhT4g2 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uC6mAhT4g2 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uC6mAhT4g2 .plan-title {
  color: #ffffff;
}
.cid-uC6mAhT4g2 .price-figure {
  color: #ffffff;
}
.cid-uC6mAhT4g2 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uC6mAhT4g2 LI {
  color: #ffffff;
}
.cid-uCbPSTzlIi {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uCbPSTzlIi .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uCbPSTzlIi .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uCbPSTzlIi .list-group-item {
  padding: .75rem 0rem;
}
.cid-uCbPSTzlIi .plan-subtitle {
  color: #66458e;
}
.cid-uCbPSTzlIi .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-uCbPSTzlIi .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uCbPSTzlIi .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uCbPSTzlIi .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-uCbPSTzlIi .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-uCbPSTzlIi .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uCbPSTzlIi .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uCbPSTzlIi .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-uCbPSTzlIi .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uCbPSTzlIi .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-uCbPSTzlIi .plan {
    margin-bottom: 30px;
  }
}
.cid-uCbPSTzlIi .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uCbPSTzlIi .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uCbPSTzlIi .plan-title {
  color: #ffffff;
}
.cid-uCbPSTzlIi .price-figure {
  color: #ffffff;
}
.cid-uCbPSTzlIi .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-uCbPSTzlIi LI {
  color: #ffffff;
}
.cid-tR7SzhvXgL {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tR7SzhvXgL .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tR7SzhvXgL .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tR7SzhvXgL .list-group-item {
  padding: .75rem 0rem;
}
.cid-tR7SzhvXgL .plan-subtitle {
  color: #66458e;
}
.cid-tR7SzhvXgL .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tR7SzhvXgL .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tR7SzhvXgL .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tR7SzhvXgL .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tR7SzhvXgL .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tR7SzhvXgL .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tR7SzhvXgL .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tR7SzhvXgL .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tR7SzhvXgL .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tR7SzhvXgL .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tR7SzhvXgL .plan {
    margin-bottom: 30px;
  }
}
.cid-tR7SzhvXgL .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tR7SzhvXgL .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tR7SzhvXgL .plan-title {
  color: #ffffff;
}
.cid-tR7SzhvXgL .price-figure {
  color: #ffffff;
}
.cid-tR7SzhvXgL .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tR7SzhvXgL LI {
  color: #ffffff;
}
.cid-tTRCjECO2h {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tTRCjECO2h .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tTRCjECO2h .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tTRCjECO2h .list-group-item {
  padding: .75rem 0rem;
}
.cid-tTRCjECO2h .plan-subtitle {
  color: #66458e;
}
.cid-tTRCjECO2h .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tTRCjECO2h .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tTRCjECO2h .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tTRCjECO2h .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tTRCjECO2h .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tTRCjECO2h .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tTRCjECO2h .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tTRCjECO2h .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tTRCjECO2h .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tTRCjECO2h .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tTRCjECO2h .plan {
    margin-bottom: 30px;
  }
}
.cid-tTRCjECO2h .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tTRCjECO2h .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tTRCjECO2h .plan-title {
  color: #ffffff;
}
.cid-tTRCjECO2h .price-figure {
  color: #ffffff;
}
.cid-tTRCjECO2h .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tTRCjECO2h LI {
  color: #ffffff;
}
.cid-tR7Tdt9Yc3 {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tR7Tdt9Yc3 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tR7Tdt9Yc3 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tR7Tdt9Yc3 .list-group-item {
  padding: .75rem 0rem;
}
.cid-tR7Tdt9Yc3 .plan-subtitle {
  color: #66458e;
}
.cid-tR7Tdt9Yc3 .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tR7Tdt9Yc3 .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tR7Tdt9Yc3 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tR7Tdt9Yc3 .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tR7Tdt9Yc3 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tR7Tdt9Yc3 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tR7Tdt9Yc3 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tR7Tdt9Yc3 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tR7Tdt9Yc3 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tR7Tdt9Yc3 .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tR7Tdt9Yc3 .plan {
    margin-bottom: 30px;
  }
}
.cid-tR7Tdt9Yc3 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tR7Tdt9Yc3 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tR7Tdt9Yc3 .plan-title {
  color: #ffffff;
}
.cid-tR7Tdt9Yc3 .price-figure {
  color: #ffffff;
}
.cid-tR7Tdt9Yc3 .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tR7Tdt9Yc3 LI {
  color: #ffffff;
}
.cid-tVWmD1FgTZ {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tVWmD1FgTZ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tVWmD1FgTZ .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tVWmD1FgTZ .list-group-item {
  padding: .75rem 0rem;
}
.cid-tVWmD1FgTZ .plan-subtitle {
  color: #66458e;
}
.cid-tVWmD1FgTZ .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tVWmD1FgTZ .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tVWmD1FgTZ .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tVWmD1FgTZ .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tVWmD1FgTZ .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tVWmD1FgTZ .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tVWmD1FgTZ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tVWmD1FgTZ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tVWmD1FgTZ .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tVWmD1FgTZ .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tVWmD1FgTZ .plan {
    margin-bottom: 30px;
  }
}
.cid-tVWmD1FgTZ .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tVWmD1FgTZ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tVWmD1FgTZ .plan-title {
  color: #ffffff;
}
.cid-tVWmD1FgTZ .price-figure {
  color: #ffffff;
}
.cid-tVWmD1FgTZ .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tVWmD1FgTZ LI {
  color: #ffffff;
}
.cid-tVWnsWCEnz {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tVWnsWCEnz .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tVWnsWCEnz .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tVWnsWCEnz .list-group-item {
  padding: .75rem 0rem;
}
.cid-tVWnsWCEnz .plan-subtitle {
  color: #66458e;
}
.cid-tVWnsWCEnz .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tVWnsWCEnz .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tVWnsWCEnz .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tVWnsWCEnz .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tVWnsWCEnz .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tVWnsWCEnz .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tVWnsWCEnz .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tVWnsWCEnz .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tVWnsWCEnz .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tVWnsWCEnz .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tVWnsWCEnz .plan {
    margin-bottom: 30px;
  }
}
.cid-tVWnsWCEnz .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tVWnsWCEnz .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tVWnsWCEnz .plan-title {
  color: #ffffff;
}
.cid-tVWnsWCEnz .price-figure {
  color: #ffffff;
}
.cid-tVWnsWCEnz .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tVWnsWCEnz LI {
  color: #ffffff;
}
.cid-tVWowXCtqL {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tVWowXCtqL .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tVWowXCtqL .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tVWowXCtqL .list-group-item {
  padding: .75rem 0rem;
}
.cid-tVWowXCtqL .plan-subtitle {
  color: #66458e;
}
.cid-tVWowXCtqL .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tVWowXCtqL .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tVWowXCtqL .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tVWowXCtqL .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tVWowXCtqL .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tVWowXCtqL .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tVWowXCtqL .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tVWowXCtqL .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tVWowXCtqL .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tVWowXCtqL .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tVWowXCtqL .plan {
    margin-bottom: 30px;
  }
}
.cid-tVWowXCtqL .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tVWowXCtqL .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tVWowXCtqL .plan-title {
  color: #ffffff;
}
.cid-tVWowXCtqL .price-figure {
  color: #ffffff;
}
.cid-tVWowXCtqL .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tVWowXCtqL LI {
  color: #ffffff;
}
.cid-tVWp6Q80hZ {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tVWp6Q80hZ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tVWp6Q80hZ .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tVWp6Q80hZ .list-group-item {
  padding: .75rem 0rem;
}
.cid-tVWp6Q80hZ .plan-subtitle {
  color: #66458e;
}
.cid-tVWp6Q80hZ .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tVWp6Q80hZ .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tVWp6Q80hZ .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tVWp6Q80hZ .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tVWp6Q80hZ .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tVWp6Q80hZ .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tVWp6Q80hZ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tVWp6Q80hZ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tVWp6Q80hZ .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tVWp6Q80hZ .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tVWp6Q80hZ .plan {
    margin-bottom: 30px;
  }
}
.cid-tVWp6Q80hZ .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tVWp6Q80hZ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tVWp6Q80hZ .plan-title {
  color: #ffffff;
}
.cid-tVWp6Q80hZ .price-figure {
  color: #ffffff;
}
.cid-tVWp6Q80hZ .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tVWp6Q80hZ LI {
  color: #ffffff;
}
.cid-tVWpEaNgNO {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tVWpEaNgNO .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tVWpEaNgNO .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tVWpEaNgNO .list-group-item {
  padding: .75rem 0rem;
}
.cid-tVWpEaNgNO .plan-subtitle {
  color: #66458e;
}
.cid-tVWpEaNgNO .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tVWpEaNgNO .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tVWpEaNgNO .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tVWpEaNgNO .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tVWpEaNgNO .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tVWpEaNgNO .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tVWpEaNgNO .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tVWpEaNgNO .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tVWpEaNgNO .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tVWpEaNgNO .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tVWpEaNgNO .plan {
    margin-bottom: 30px;
  }
}
.cid-tVWpEaNgNO .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tVWpEaNgNO .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tVWpEaNgNO .plan-title {
  color: #ffffff;
}
.cid-tVWpEaNgNO .price-figure {
  color: #ffffff;
}
.cid-tVWpEaNgNO .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tVWpEaNgNO LI {
  color: #ffffff;
}
.cid-tVWq82uMFr {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tVWq82uMFr .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tVWq82uMFr .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tVWq82uMFr .list-group-item {
  padding: .75rem 0rem;
}
.cid-tVWq82uMFr .plan-subtitle {
  color: #66458e;
}
.cid-tVWq82uMFr .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tVWq82uMFr .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tVWq82uMFr .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tVWq82uMFr .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tVWq82uMFr .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tVWq82uMFr .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tVWq82uMFr .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tVWq82uMFr .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tVWq82uMFr .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tVWq82uMFr .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tVWq82uMFr .plan {
    margin-bottom: 30px;
  }
}
.cid-tVWq82uMFr .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tVWq82uMFr .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tVWq82uMFr .plan-title {
  color: #ffffff;
}
.cid-tVWq82uMFr .price-figure {
  color: #ffffff;
}
.cid-tVWq82uMFr .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tVWq82uMFr LI {
  color: #ffffff;
}
.cid-tVWr0NhbAN {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tVWr0NhbAN .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tVWr0NhbAN .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tVWr0NhbAN .list-group-item {
  padding: .75rem 0rem;
}
.cid-tVWr0NhbAN .plan-subtitle {
  color: #66458e;
}
.cid-tVWr0NhbAN .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tVWr0NhbAN .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tVWr0NhbAN .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tVWr0NhbAN .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tVWr0NhbAN .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tVWr0NhbAN .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tVWr0NhbAN .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tVWr0NhbAN .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tVWr0NhbAN .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tVWr0NhbAN .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tVWr0NhbAN .plan {
    margin-bottom: 30px;
  }
}
.cid-tVWr0NhbAN .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tVWr0NhbAN .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tVWr0NhbAN .plan-title {
  color: #ffffff;
}
.cid-tVWr0NhbAN .price-figure {
  color: #ffffff;
}
.cid-tVWr0NhbAN .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tVWr0NhbAN LI {
  color: #ffffff;
}
.cid-tVWrzMBFfe {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tVWrzMBFfe .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tVWrzMBFfe .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tVWrzMBFfe .list-group-item {
  padding: .75rem 0rem;
}
.cid-tVWrzMBFfe .plan-subtitle {
  color: #66458e;
}
.cid-tVWrzMBFfe .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tVWrzMBFfe .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tVWrzMBFfe .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tVWrzMBFfe .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tVWrzMBFfe .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tVWrzMBFfe .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tVWrzMBFfe .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tVWrzMBFfe .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tVWrzMBFfe .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tVWrzMBFfe .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tVWrzMBFfe .plan {
    margin-bottom: 30px;
  }
}
.cid-tVWrzMBFfe .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tVWrzMBFfe .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tVWrzMBFfe .plan-title {
  color: #ffffff;
}
.cid-tVWrzMBFfe .price-figure {
  color: #ffffff;
}
.cid-tVWrzMBFfe .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tVWrzMBFfe LI {
  color: #ffffff;
}
.cid-tXVccNXdQw {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tXVccNXdQw .plan-body .btn-bgr {
  z-index: 0;
}
.cid-tXVccNXdQw .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-tXVccNXdQw .list-group-item {
  padding: .75rem 0rem;
}
.cid-tXVccNXdQw .plan-subtitle {
  color: #66458e;
}
.cid-tXVccNXdQw .mbr-text {
  margin: 15px 0 0 0;
  color: #ffffff;
}
.cid-tXVccNXdQw .price-term .term {
  display: inline-block;
  background: #4e84c2;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-tXVccNXdQw .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-tXVccNXdQw .plan .mbr-overlay {
  background: #232323;
  opacity: 0.8;
}
.cid-tXVccNXdQw .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-tXVccNXdQw .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-tXVccNXdQw .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-tXVccNXdQw .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-tXVccNXdQw .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-tXVccNXdQw .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-tXVccNXdQw .plan {
    margin-bottom: 30px;
  }
}
.cid-tXVccNXdQw .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-tXVccNXdQw .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tXVccNXdQw .plan-title {
  color: #ffffff;
}
.cid-tXVccNXdQw .price-figure {
  color: #ffffff;
}
.cid-tXVccNXdQw .price-term {
  color: #ffffff;
  text-align: center;
}
.cid-tXVccNXdQw LI {
  color: #ffffff;
}
