@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Poppins', 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: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .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: #4289a7 !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: #4289a7 !important;
  border-color: #4289a7 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !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: #254d5e;
  color: #254d5e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4289a7;
  border-color: #4289a7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4289a7 !important;
  border-color: #4289a7 !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: #4289a7 !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: #254d5e !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: #4289a7;
}
.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: #94c1d5;
}
.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: 'Poppins', 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-s4ULkzmeBu .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-s4ULkzmeBu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s4ULkzmeBu a {
  font-style: normal;
}
.cid-s4ULkzmeBu .navbar-buttons {
  flex-wrap: wrap;
}
.cid-s4ULkzmeBu .show {
  overflow: visible;
}
.cid-s4ULkzmeBu .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-s4ULkzmeBu .dropdown-item:active {
  background-color: transparent;
}
.cid-s4ULkzmeBu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s4ULkzmeBu .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-s4ULkzmeBu .nav-item:focus,
.cid-s4ULkzmeBu .nav-link:focus {
  outline: none;
}
.cid-s4ULkzmeBu .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-s4ULkzmeBu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s4ULkzmeBu .menu-logo {
  margin-right: auto;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s4ULkzmeBu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s4ULkzmeBu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s4ULkzmeBu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-s4ULkzmeBu button.navbar-toggler:focus {
  outline: none;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-s4ULkzmeBu .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-s4ULkzmeBu .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s4ULkzmeBu .collapsed .btn {
  display: -webkit-flex;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s4ULkzmeBu .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-s4ULkzmeBu .collapsed button.navbar-toggler {
  display: block;
}
.cid-s4ULkzmeBu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s4ULkzmeBu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s4ULkzmeBu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s4ULkzmeBu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s4ULkzmeBu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s4ULkzmeBu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s4ULkzmeBu.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s4ULkzmeBu img {
    height: 3.8rem !important;
  }
  .cid-s4ULkzmeBu .btn {
    display: -webkit-flex;
  }
  .cid-s4ULkzmeBu button.navbar-toggler {
    display: block;
  }
  .cid-s4ULkzmeBu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s4ULkzmeBu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s4ULkzmeBu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing,
  .cid-s4ULkzmeBu .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-nav,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-buttons,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s4ULkzmeBu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s4ULkzmeBu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s4ULkzmeBu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s4ULkzmeBu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-s4ULkzmeBu .nav-link {
    justify-content: start!important;
  }
  .cid-s4ULkzmeBu .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-s4ULkzmeBu .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-s4ULkzmeBu .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-s4ULkzmeBu .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-s4ULkzmeBu .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-s4ULkzmeBu .nav-link:hover,
.cid-s4ULkzmeBu .dropdown-item:hover {
  color: #66458e !important;
}
@media (min-width: 1500px) {
  .cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-s4ULkzmeBu .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-rYMC3QpDJF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYMC3QpDJF .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-rYMC3QpDJF .modal-body .close {
  background: #1b1b1b;
}
.cid-rYMC3QpDJF .modal-body .close span {
  font-style: normal;
}
.cid-rYMC3QpDJF .carousel-inner > .active,
.cid-rYMC3QpDJF .carousel-inner > .next,
.cid-rYMC3QpDJF .carousel-inner > .prev {
  display: flex;
}
.cid-rYMC3QpDJF .carousel-control .icon-next,
.cid-rYMC3QpDJF .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rYMC3QpDJF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rYMC3QpDJF .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-rYMC3QpDJF .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-rYMC3QpDJF .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rYMC3QpDJF .boxed-slider > div {
  position: relative;
}
.cid-rYMC3QpDJF .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-rYMC3QpDJF .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rYMC3QpDJF .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rYMC3QpDJF .mbr-table-cell {
  padding: 0;
}
.cid-rYMC3QpDJF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rYMC3QpDJF .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rYMC3QpDJF .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-rYMC3QpDJF .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-rYMC3QpDJF .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rYMC3QpDJF .carousel-item .container {
    width: 100%;
  }
}
.cid-rYMC3QpDJF .carousel-item-next.carousel-item-left,
.cid-rYMC3QpDJF .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rYMC3QpDJF .active.carousel-item-right,
.cid-rYMC3QpDJF .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rYMC3QpDJF .active.carousel-item-left,
.cid-rYMC3QpDJF .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rYMC3QpDJF .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-rYMC3QpDJF .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rYMC3QpDJF .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rYMC3QpDJF .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-rYMC3QpDJF .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rYMC3QpDJF .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rYMC3QpDJF .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rYMC3QpDJF .mbr-slider .carousel-indicators li.active,
.cid-rYMC3QpDJF .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rYMC3QpDJF .mbr-slider .carousel-indicators li::after,
.cid-rYMC3QpDJF .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rYMC3QpDJF .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rYMC3QpDJF .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rYMC3QpDJF .mbr-slider > .container img {
  width: 100%;
}
.cid-rYMC3QpDJF .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rYMC3QpDJF .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rYMC3QpDJF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rYMC3QpDJF .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rYMC3QpDJF .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rYMC3QpDJF .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-rYMC3QpDJF .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rYMC3QpDJF .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rYMC3QpDJF .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rYMC3QpDJF .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rYMC3QpDJF .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rYMC3QpDJF .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rYMC3QpDJF .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rYMC3QpDJF .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-rYMC3QpDJF .carousel-inner {
  height: 100%;
}
.cid-rYMC3QpDJF .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-rYMC3QpDJF .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-rYMC3QpDJF .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-rYMC3QpDJF .content-slider-wrap {
  width: 100%;
}
.cid-qIjLr2VMr0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qIjLr2VMr0 .mbr-section-subtitle {
  color: #767676;
}
.cid-qIjLr2VMr0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-qIjLr2VMr0 .mbr-section-title DIV {
  text-align: center;
}
.cid-qIjLmYAeqy {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s2QzlhDWDE {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(45deg, #f4f8fa, #f4f8fa);
}
.cid-s2QzlhDWDE .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s2QzlhDWDE .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s2QzlhDWDE .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s2QzlhDWDE .price-term {
  margin-left: -5px;
}
.cid-s2QzlhDWDE .pt2 {
  padding-top: 2rem;
}
.cid-s2QzlhDWDE .plan-favorite {
  background-color: #1cb447;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s2QzlhDWDE .plan-descr {
  color: #e11930;
}
.cid-s2QzlhDWDE .plan-price {
  margin-top: 2rem;
}
.cid-s2QzlhDWDE .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2QzlhDWDE .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2QzlhDWDE .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s2QzlhDWDE .plan {
  position: relative;
  max-width: 420px;
  padding-right: 0;
  padding-left: 0;
}
.cid-s2QzlhDWDE .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s2QzlhDWDE .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s2QzlhDWDE .plan-header,
.cid-s2QzlhDWDE .plan-body {
  background-color: #ffffff;
}
.cid-s2QzlhDWDE .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s2QzlhDWDE .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s2QzlhDWDE .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s2QzlhDWDE .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s2QzlhDWDE UL {
  color: #000000;
  text-align: left;
}
.cid-rZmdF0e5E0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rZmdF0e5E0 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rZmdF0e5E0 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qIjI4pKeSS {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qIjI4pKeSS .mbr-text {
  color: #767676;
}
.cid-qIjI4pKeSS .mbr-section-subtitle {
  color: #767676;
}
.cid-qIjI4pKeSS .title {
  position: relative;
  display: flex;
  align-items: center;
}
.cid-qIjI4pKeSS .title .num {
  flex-shrink: 0;
  position: absolute;
  z-index: 0;
  font-size: 5rem;
  width: 100%;
}
.cid-qIjI4pKeSS .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-qIjI4pKeSS .card-text {
  margin-top: 2rem;
}
.cid-qIjI4pKeSS .card-box {
  margin-bottom: 1rem;
}
.cid-qIjI4pKeSS .num {
  color: #c1c1c1;
}
@media (max-width: 767px) {
  .cid-qIjI4pKeSS .num,
  .cid-qIjI4pKeSS .card-title,
  .cid-qIjI4pKeSS .mbr-text,
  .cid-qIjI4pKeSS .mbr-title,
  .cid-qIjI4pKeSS .mbr-section-subtitle,
  .cid-qIjI4pKeSS .mbr-section-btn,
  .cid-qIjI4pKeSS .mbr-section-title {
    text-align: center !important;
  }
  .cid-qIjI4pKeSS .content-column {
    margin-bottom: 2rem;
  }
}
.cid-qIjI4pKeSS .mbr-section-title {
  text-align: center;
}
.cid-qIjES4e5vV {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qIjES4e5vV .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qIjES4e5vV .card .card-wrapper {
  background: #2d8624;
  height: 1%;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qIjES4e5vV .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: #e11930;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qIjES4e5vV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-qIjES4e5vV .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-qIjES4e5vV .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qIjES4e5vV .img-text {
  color: #ffffff;
}
.cid-qIjES4e5vV .mbr-card-text,
.cid-qIjES4e5vV .mbr-section-btn {
  color: #ffffff;
}
.cid-qIjES4e5vV .mbr-title {
  color: #efefef;
}
.cid-qIjES4e5vV .mbr-section-title {
  text-align: center;
}
.cid-rYMJeM4jfF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1cb447;
}
.cid-rYMJeM4jfF .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rYMJeM4jfF .mbr-section-btn,
  .cid-rYMJeM4jfF .mbr-section-subtitle,
  .cid-rYMJeM4jfF .mbr-section-title {
    text-align: center !important;
  }
}
.cid-s3XbeL5U2l {
  padding-top: 120px;
}
.cid-s3XbeL5U2l .container {
  margin-bottom: 15%;
}
.cid-s3XbeL5U2l .content-container .btn-bgr {
  z-index: 0;
}
.cid-s3XbeL5U2l .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-s3XbeL5U2l .icon-block-top span {
  background-color: #1cb447;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-s3XbeL5U2l .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-s3XbeL5U2l .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-s3XbeL5U2l .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-s3XbeL5U2l .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-s3XbeL5U2l .box-item-text,
.cid-s3XbeL5U2l .mbr-section-btn {
  color: #8d97ad;
}
.cid-s3XbeL5U2l .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-s3XbeL5U2l .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-s3XbeL5U2l .box-list li:last-child {
  border-bottom: none;
}
.cid-s3XbeL5U2l .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-s3XbeL5U2l .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-s3XbeL5U2l .mbr-section-btn {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.cid-s3XbeL5U2l .mbr-section-btn > .btn-underline {
  padding: .5rem;
}
@media (min-width: 992px) {
  .cid-s3XbeL5U2l .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-s3XbeL5U2l .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-s3XbeL5U2l .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-s3XbeL5U2l .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-s3XbeL5U2l .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-s3XbeL5U2l .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-s3XbeL5U2l .mbr-text {
  color: #efefef;
}
.cid-s3XbeL5U2l H1 {
  color: #ffffff;
}
.cid-rYLPq7HOKR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rYLPq7HOKR .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-rYLPq7HOKR img {
    width: 90%;
  }
}
.cid-rYLPq7HOKR .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-rYLPq7HOKR .items {
  margin-bottom: 0;
}
.cid-rYLPq7HOKR .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-rYLPq7HOKR .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-rYLPq7HOKR .soc-item:hover span {
  color: #66458e !important;
}
.cid-rYLPq7HOKR .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-rYLPq7HOKR .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rYLPq7HOKR .social-list {
    justify-content: center;
  }
}
.cid-si5GtnPCME {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-si5GtnPCME .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-si5GtnPCME .card .card-wrapper {
  background: #2d8624;
  height: 1%;
}
.cid-si5GtnPCME .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-si5GtnPCME .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-si5GtnPCME .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: #e11930;
}
.cid-si5GtnPCME .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-si5GtnPCME .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-si5GtnPCME .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-si5GtnPCME .mbr-section-btn {
  padding-top: 1rem;
}
.cid-si5GtnPCME .img-text {
  color: #ffffff;
}
.cid-si5GtnPCME .mbr-card-text,
.cid-si5GtnPCME .mbr-section-btn {
  color: #ffffff;
}
.cid-si5GtnPCME .mbr-title {
  color: #efefef;
}
.cid-si5GtnPCME .mbr-section-title {
  text-align: center;
}
.cid-qIjGVVeB7i {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1cb447;
}
.cid-qIjGVVeB7i .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qIjGVVeB7i .mbr-section-btn,
  .cid-qIjGVVeB7i .mbr-section-subtitle,
  .cid-qIjGVVeB7i .mbr-section-title {
    text-align: center !important;
  }
}
.cid-s4zg5QcDGL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s4zg5QcDGL a:link {
  text-decoration: none;
}
.cid-s4zg5QcDGL .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s4zg5QcDGL .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s4zg5QcDGL .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s4zg5QcDGL .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s4zg5QcDGL .foot-menu {
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s4zg5QcDGL .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s4zg5QcDGL .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s4zg5QcDGL .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s4zg5QcDGL .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s4zg5QcDGL .plan-title,
.cid-s4zg5QcDGL .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s4zg5QcDGL .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s4zg5QcDGL .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s4zg5QcDGL .mbr-section-title span {
  color: #ffbc00;
}
.cid-s3Xq2fkiem {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s3Xq2fkiem .mbr-text,
.cid-s3Xq2fkiem .mbr-section-btn {
  color: #767676;
}
.cid-s3Xq2fkiem p {
  z-index: 2;
  position: relative;
}
.cid-s3Xq2fkiem .author-box {
  display: flex;
  flex-direction: row;
}
.cid-s3Xq2fkiem .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(213, 105, 94, 0.35);
  padding: 1rem 1.5rem;
}
.cid-s3Xq2fkiem .ico1 {
  font-size: 2rem;
}
.cid-s3Xq2fkiem .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-s3Xq2fkiem H3 {
  color: #149dcc;
}
.cid-s4zfyhY6LG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s4zfyhY6LG a:link {
  text-decoration: none;
}
.cid-s4zfyhY6LG .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s4zfyhY6LG .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s4zfyhY6LG .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s4zfyhY6LG .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s4zfyhY6LG .foot-menu {
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s4zfyhY6LG .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s4zfyhY6LG .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s4zfyhY6LG .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s4zfyhY6LG .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s4zfyhY6LG .plan-title,
.cid-s4zfyhY6LG .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s4zfyhY6LG .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s4zfyhY6LG .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s4zfyhY6LG .mbr-section-title span {
  color: #ffbc00;
}
.cid-s4ULkzmeBu .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-s4ULkzmeBu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s4ULkzmeBu a {
  font-style: normal;
}
.cid-s4ULkzmeBu .navbar-buttons {
  flex-wrap: wrap;
}
.cid-s4ULkzmeBu .show {
  overflow: visible;
}
.cid-s4ULkzmeBu .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-s4ULkzmeBu .dropdown-item:active {
  background-color: transparent;
}
.cid-s4ULkzmeBu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s4ULkzmeBu .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-s4ULkzmeBu .nav-item:focus,
.cid-s4ULkzmeBu .nav-link:focus {
  outline: none;
}
.cid-s4ULkzmeBu .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-s4ULkzmeBu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s4ULkzmeBu .menu-logo {
  margin-right: auto;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s4ULkzmeBu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s4ULkzmeBu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s4ULkzmeBu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-s4ULkzmeBu button.navbar-toggler:focus {
  outline: none;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-s4ULkzmeBu .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-s4ULkzmeBu .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s4ULkzmeBu .collapsed .btn {
  display: -webkit-flex;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s4ULkzmeBu .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-s4ULkzmeBu .collapsed button.navbar-toggler {
  display: block;
}
.cid-s4ULkzmeBu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s4ULkzmeBu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s4ULkzmeBu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s4ULkzmeBu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s4ULkzmeBu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s4ULkzmeBu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s4ULkzmeBu.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s4ULkzmeBu img {
    height: 3.8rem !important;
  }
  .cid-s4ULkzmeBu .btn {
    display: -webkit-flex;
  }
  .cid-s4ULkzmeBu button.navbar-toggler {
    display: block;
  }
  .cid-s4ULkzmeBu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s4ULkzmeBu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s4ULkzmeBu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing,
  .cid-s4ULkzmeBu .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-nav,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-buttons,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s4ULkzmeBu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s4ULkzmeBu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s4ULkzmeBu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s4ULkzmeBu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-s4ULkzmeBu .nav-link {
    justify-content: start!important;
  }
  .cid-s4ULkzmeBu .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-s4ULkzmeBu .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-s4ULkzmeBu .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-s4ULkzmeBu .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-s4ULkzmeBu .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-s4ULkzmeBu .nav-link:hover,
.cid-s4ULkzmeBu .dropdown-item:hover {
  color: #66458e !important;
}
@media (min-width: 1500px) {
  .cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-s4ULkzmeBu .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-s4z7JhWV8z {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s4z7JhWV8z .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-s4z7JhWV8z .text-block {
  position: relative;
  z-index: 0;
}
.cid-s4z7JhWV8z .box {
  width: 25%;
  height: 40%;
  background: #1cb447;
  position: absolute;
  top: 4%;
}
.cid-s4z7JhWV8z .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s4z7JhWV8z .box {
  right: 20%;
}
.cid-s4z7JhWV8z .text-box {
  right: 0;
}
.cid-s4z7JhWV8z .mbr-section-title,
.cid-s4z7JhWV8z .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-s4z7JhWV8z .text-box {
    display: none;
  }
  .cid-s4z7JhWV8z .mbr-section-title,
  .cid-s4z7JhWV8z .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-s4z7JhWV8z .box {
    display: none;
  }
  .cid-s4z7JhWV8z .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-s4z7JhWV8z .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s4z7JhWV8z .text-box {
    writing-mode: bt-rl;
  }
}
.cid-s4z7JhWV8z .mbr-section-text {
  color: #1b0c2e;
}
.cid-si5HTyfqzm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-si5HTyfqzm .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-si5HTyfqzm .card .card-wrapper {
  background: #2d8624;
  height: 1%;
}
.cid-si5HTyfqzm .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-si5HTyfqzm .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-si5HTyfqzm .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: #e11930;
}
.cid-si5HTyfqzm .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-si5HTyfqzm .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-si5HTyfqzm .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-si5HTyfqzm .mbr-section-btn {
  padding-top: 1rem;
}
.cid-si5HTyfqzm .img-text {
  color: #ffffff;
}
.cid-si5HTyfqzm .mbr-card-text,
.cid-si5HTyfqzm .mbr-section-btn {
  color: #ffffff;
}
.cid-si5HTyfqzm .mbr-title {
  color: #efefef;
}
.cid-si5HTyfqzm .mbr-section-title {
  text-align: center;
}
.cid-s4zgaaflXL {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s4zgaaflXL a:link {
  text-decoration: none;
}
.cid-s4zgaaflXL .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-s4zgaaflXL .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-s4zgaaflXL .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s4zgaaflXL .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s4zgaaflXL .foot-menu {
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-s4zgaaflXL .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-s4zgaaflXL .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-s4zgaaflXL .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-s4zgaaflXL .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-s4zgaaflXL .plan-title,
.cid-s4zgaaflXL .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-s4zgaaflXL .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-s4zgaaflXL .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-s4zgaaflXL .mbr-section-title span {
  color: #ffbc00;
}
.cid-s4ULkzmeBu .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-s4ULkzmeBu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s4ULkzmeBu a {
  font-style: normal;
}
.cid-s4ULkzmeBu .navbar-buttons {
  flex-wrap: wrap;
}
.cid-s4ULkzmeBu .show {
  overflow: visible;
}
.cid-s4ULkzmeBu .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-s4ULkzmeBu .dropdown-item:active {
  background-color: transparent;
}
.cid-s4ULkzmeBu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s4ULkzmeBu .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-s4ULkzmeBu .nav-item:focus,
.cid-s4ULkzmeBu .nav-link:focus {
  outline: none;
}
.cid-s4ULkzmeBu .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-s4ULkzmeBu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s4ULkzmeBu .menu-logo {
  margin-right: auto;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s4ULkzmeBu .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s4ULkzmeBu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s4ULkzmeBu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s4ULkzmeBu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s4ULkzmeBu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s4ULkzmeBu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s4ULkzmeBu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-s4ULkzmeBu button.navbar-toggler:focus {
  outline: none;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s4ULkzmeBu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s4ULkzmeBu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-s4ULkzmeBu .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-s4ULkzmeBu .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s4ULkzmeBu .collapsed .btn {
  display: -webkit-flex;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s4ULkzmeBu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s4ULkzmeBu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s4ULkzmeBu .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-s4ULkzmeBu .collapsed button.navbar-toggler {
  display: block;
}
.cid-s4ULkzmeBu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s4ULkzmeBu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s4ULkzmeBu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s4ULkzmeBu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s4ULkzmeBu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s4ULkzmeBu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s4ULkzmeBu.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s4ULkzmeBu img {
    height: 3.8rem !important;
  }
  .cid-s4ULkzmeBu .btn {
    display: -webkit-flex;
  }
  .cid-s4ULkzmeBu button.navbar-toggler {
    display: block;
  }
  .cid-s4ULkzmeBu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s4ULkzmeBu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s4ULkzmeBu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing,
  .cid-s4ULkzmeBu .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-nav,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-buttons,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s4ULkzmeBu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s4ULkzmeBu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s4ULkzmeBu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s4ULkzmeBu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s4ULkzmeBu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s4ULkzmeBu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-s4ULkzmeBu .nav-link {
    justify-content: start!important;
  }
  .cid-s4ULkzmeBu .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-s4ULkzmeBu .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-s4ULkzmeBu .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-s4ULkzmeBu .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-s4ULkzmeBu .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-s4ULkzmeBu .nav-link:hover,
.cid-s4ULkzmeBu .dropdown-item:hover {
  color: #66458e !important;
}
@media (min-width: 1500px) {
  .cid-s4ULkzmeBu .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-s4ULkzmeBu .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
#custom-html-1i {
  /* Type valid CSS here */
}
#custom-html-1i div {
  padding: 120px 0;
  color: #777;
  text-align: center;
}
#custom-html-1i p {
  font-size: 60px;
  color: #777;
}
.cid-si5HqLE0Vo {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-si5HqLE0Vo .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-si5HqLE0Vo .card .card-wrapper {
  background: #2d8624;
  height: 1%;
}
.cid-si5HqLE0Vo .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-si5HqLE0Vo .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-si5HqLE0Vo .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: #e11930;
}
.cid-si5HqLE0Vo .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-si5HqLE0Vo .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-si5HqLE0Vo .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-si5HqLE0Vo .mbr-section-btn {
  padding-top: 1rem;
}
.cid-si5HqLE0Vo .img-text {
  color: #ffffff;
}
.cid-si5HqLE0Vo .mbr-card-text,
.cid-si5HqLE0Vo .mbr-section-btn {
  color: #ffffff;
}
.cid-si5HqLE0Vo .mbr-title {
  color: #efefef;
}
.cid-si5HqLE0Vo .mbr-section-title {
  text-align: center;
}
.cid-sbpdmAPioh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sbpdmAPioh a:link {
  text-decoration: none;
}
.cid-sbpdmAPioh .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sbpdmAPioh .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sbpdmAPioh .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sbpdmAPioh .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sbpdmAPioh .foot-menu {
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-sbpdmAPioh .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-sbpdmAPioh .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-sbpdmAPioh .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-sbpdmAPioh .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-sbpdmAPioh .plan-title,
.cid-sbpdmAPioh .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-sbpdmAPioh .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-sbpdmAPioh .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-sbpdmAPioh .mbr-section-title span {
  color: #ffbc00;
}
.cid-sbpdmBMlQP .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sbpdmBMlQP .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sbpdmBMlQP a {
  font-style: normal;
}
.cid-sbpdmBMlQP .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sbpdmBMlQP .show {
  overflow: visible;
}
.cid-sbpdmBMlQP .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sbpdmBMlQP .dropdown-item:active {
  background-color: transparent;
}
.cid-sbpdmBMlQP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sbpdmBMlQP .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sbpdmBMlQP .nav-item:focus,
.cid-sbpdmBMlQP .nav-link:focus {
  outline: none;
}
.cid-sbpdmBMlQP .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sbpdmBMlQP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sbpdmBMlQP .menu-logo {
  margin-right: auto;
}
.cid-sbpdmBMlQP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sbpdmBMlQP .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sbpdmBMlQP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sbpdmBMlQP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sbpdmBMlQP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sbpdmBMlQP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sbpdmBMlQP .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sbpdmBMlQP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sbpdmBMlQP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sbpdmBMlQP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sbpdmBMlQP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sbpdmBMlQP .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sbpdmBMlQP .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sbpdmBMlQP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sbpdmBMlQP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sbpdmBMlQP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sbpdmBMlQP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sbpdmBMlQP .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sbpdmBMlQP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sbpdmBMlQP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sbpdmBMlQP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sbpdmBMlQP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sbpdmBMlQP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sbpdmBMlQP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sbpdmBMlQP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sbpdmBMlQP button.navbar-toggler:focus {
  outline: none;
}
.cid-sbpdmBMlQP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-sbpdmBMlQP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sbpdmBMlQP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sbpdmBMlQP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sbpdmBMlQP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sbpdmBMlQP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sbpdmBMlQP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sbpdmBMlQP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sbpdmBMlQP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-sbpdmBMlQP .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sbpdmBMlQP .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sbpdmBMlQP .collapsed .btn {
  display: -webkit-flex;
}
.cid-sbpdmBMlQP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sbpdmBMlQP .collapsed .navbar-collapse.collapsing,
.cid-sbpdmBMlQP .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sbpdmBMlQP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sbpdmBMlQP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sbpdmBMlQP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sbpdmBMlQP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sbpdmBMlQP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sbpdmBMlQP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sbpdmBMlQP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sbpdmBMlQP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sbpdmBMlQP .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-sbpdmBMlQP .collapsed button.navbar-toggler {
  display: block;
}
.cid-sbpdmBMlQP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sbpdmBMlQP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sbpdmBMlQP .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sbpdmBMlQP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sbpdmBMlQP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sbpdmBMlQP .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sbpdmBMlQP.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sbpdmBMlQP img {
    height: 3.8rem !important;
  }
  .cid-sbpdmBMlQP .btn {
    display: -webkit-flex;
  }
  .cid-sbpdmBMlQP button.navbar-toggler {
    display: block;
  }
  .cid-sbpdmBMlQP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sbpdmBMlQP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sbpdmBMlQP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sbpdmBMlQP .navbar-collapse.collapsing,
  .cid-sbpdmBMlQP .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sbpdmBMlQP .navbar-collapse.collapsing .navbar-nav,
  .cid-sbpdmBMlQP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sbpdmBMlQP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sbpdmBMlQP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sbpdmBMlQP .navbar-collapse.collapsing .navbar-buttons,
  .cid-sbpdmBMlQP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sbpdmBMlQP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sbpdmBMlQP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sbpdmBMlQP .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sbpdmBMlQP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sbpdmBMlQP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sbpdmBMlQP .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-sbpdmBMlQP .nav-link {
    justify-content: start!important;
  }
  .cid-sbpdmBMlQP .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sbpdmBMlQP .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-sbpdmBMlQP .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sbpdmBMlQP .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sbpdmBMlQP .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sbpdmBMlQP .nav-link:hover,
.cid-sbpdmBMlQP .dropdown-item:hover {
  color: #66458e !important;
}
@media (min-width: 1500px) {
  .cid-sbpdmBMlQP .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-sbpdmBMlQP .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sbpe3TkVPP {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-sbpe3TkVPP .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sbpe3TkVPP .text-block {
  position: relative;
  z-index: 0;
}
.cid-sbpe3TkVPP .box {
  width: 25%;
  height: 40%;
  background: #1cb447;
  position: absolute;
  top: 4%;
}
.cid-sbpe3TkVPP .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sbpe3TkVPP .box {
  right: 20%;
}
.cid-sbpe3TkVPP .text-box {
  right: 0;
}
.cid-sbpe3TkVPP .mbr-section-title,
.cid-sbpe3TkVPP .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-sbpe3TkVPP .text-box {
    display: none;
  }
  .cid-sbpe3TkVPP .mbr-section-title,
  .cid-sbpe3TkVPP .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sbpe3TkVPP .box {
    display: none;
  }
  .cid-sbpe3TkVPP .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sbpe3TkVPP .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sbpe3TkVPP .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sbpe3TkVPP .mbr-section-text {
  color: #1b0c2e;
}
.cid-si5HWOdKPp {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-si5HWOdKPp .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-si5HWOdKPp .card .card-wrapper {
  background: #2d8624;
  height: 1%;
}
.cid-si5HWOdKPp .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-si5HWOdKPp .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-si5HWOdKPp .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: #e11930;
}
.cid-si5HWOdKPp .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-si5HWOdKPp .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-si5HWOdKPp .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-si5HWOdKPp .mbr-section-btn {
  padding-top: 1rem;
}
.cid-si5HWOdKPp .img-text {
  color: #ffffff;
}
.cid-si5HWOdKPp .mbr-card-text,
.cid-si5HWOdKPp .mbr-section-btn {
  color: #ffffff;
}
.cid-si5HWOdKPp .mbr-title {
  color: #efefef;
}
.cid-si5HWOdKPp .mbr-section-title {
  text-align: center;
}
.cid-sbpe3UrycO {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sbpe3UrycO a:link {
  text-decoration: none;
}
.cid-sbpe3UrycO .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sbpe3UrycO .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sbpe3UrycO .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sbpe3UrycO .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sbpe3UrycO .foot-menu {
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-sbpe3UrycO .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-sbpe3UrycO .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-sbpe3UrycO .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-sbpe3UrycO .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-sbpe3UrycO .plan-title,
.cid-sbpe3UrycO .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-sbpe3UrycO .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-sbpe3UrycO .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-sbpe3UrycO .mbr-section-title span {
  color: #ffbc00;
}
.cid-sbpe3VkFRv .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sbpe3VkFRv .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sbpe3VkFRv a {
  font-style: normal;
}
.cid-sbpe3VkFRv .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sbpe3VkFRv .show {
  overflow: visible;
}
.cid-sbpe3VkFRv .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sbpe3VkFRv .dropdown-item:active {
  background-color: transparent;
}
.cid-sbpe3VkFRv .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sbpe3VkFRv .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sbpe3VkFRv .nav-item:focus,
.cid-sbpe3VkFRv .nav-link:focus {
  outline: none;
}
.cid-sbpe3VkFRv .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sbpe3VkFRv .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sbpe3VkFRv .menu-logo {
  margin-right: auto;
}
.cid-sbpe3VkFRv .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sbpe3VkFRv .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sbpe3VkFRv .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sbpe3VkFRv .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sbpe3VkFRv .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sbpe3VkFRv .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sbpe3VkFRv .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sbpe3VkFRv .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sbpe3VkFRv .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sbpe3VkFRv .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sbpe3VkFRv .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sbpe3VkFRv .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sbpe3VkFRv .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sbpe3VkFRv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sbpe3VkFRv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sbpe3VkFRv .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sbpe3VkFRv .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sbpe3VkFRv .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sbpe3VkFRv .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sbpe3VkFRv .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sbpe3VkFRv .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sbpe3VkFRv .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sbpe3VkFRv .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sbpe3VkFRv .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sbpe3VkFRv button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sbpe3VkFRv button.navbar-toggler:focus {
  outline: none;
}
.cid-sbpe3VkFRv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-sbpe3VkFRv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sbpe3VkFRv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sbpe3VkFRv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sbpe3VkFRv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sbpe3VkFRv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sbpe3VkFRv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sbpe3VkFRv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sbpe3VkFRv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-sbpe3VkFRv .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sbpe3VkFRv .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sbpe3VkFRv .collapsed .btn {
  display: -webkit-flex;
}
.cid-sbpe3VkFRv .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sbpe3VkFRv .collapsed .navbar-collapse.collapsing,
.cid-sbpe3VkFRv .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sbpe3VkFRv .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sbpe3VkFRv .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sbpe3VkFRv .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sbpe3VkFRv .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sbpe3VkFRv .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sbpe3VkFRv .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sbpe3VkFRv .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sbpe3VkFRv .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sbpe3VkFRv .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-sbpe3VkFRv .collapsed button.navbar-toggler {
  display: block;
}
.cid-sbpe3VkFRv .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sbpe3VkFRv .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sbpe3VkFRv .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sbpe3VkFRv .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sbpe3VkFRv .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sbpe3VkFRv .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sbpe3VkFRv.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sbpe3VkFRv img {
    height: 3.8rem !important;
  }
  .cid-sbpe3VkFRv .btn {
    display: -webkit-flex;
  }
  .cid-sbpe3VkFRv button.navbar-toggler {
    display: block;
  }
  .cid-sbpe3VkFRv .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sbpe3VkFRv .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sbpe3VkFRv .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sbpe3VkFRv .navbar-collapse.collapsing,
  .cid-sbpe3VkFRv .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sbpe3VkFRv .navbar-collapse.collapsing .navbar-nav,
  .cid-sbpe3VkFRv .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sbpe3VkFRv .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sbpe3VkFRv .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sbpe3VkFRv .navbar-collapse.collapsing .navbar-buttons,
  .cid-sbpe3VkFRv .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sbpe3VkFRv .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sbpe3VkFRv .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sbpe3VkFRv .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sbpe3VkFRv .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sbpe3VkFRv .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sbpe3VkFRv .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-sbpe3VkFRv .nav-link {
    justify-content: start!important;
  }
  .cid-sbpe3VkFRv .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sbpe3VkFRv .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-sbpe3VkFRv .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sbpe3VkFRv .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sbpe3VkFRv .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sbpe3VkFRv .nav-link:hover,
.cid-sbpe3VkFRv .dropdown-item:hover {
  color: #66458e !important;
}
@media (min-width: 1500px) {
  .cid-sbpe3VkFRv .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-sbpe3VkFRv .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
#custom-html-1n {
  /* Type valid CSS here */
}
#custom-html-1n div {
  padding: 120px 0;
  color: #777;
  text-align: center;
}
#custom-html-1n p {
  font-size: 60px;
  color: #777;
}
.cid-si5HOjISGw {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-si5HOjISGw .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-si5HOjISGw .card .card-wrapper {
  background: #2d8624;
  height: 1%;
}
.cid-si5HOjISGw .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-si5HOjISGw .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-si5HOjISGw .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: #e11930;
}
.cid-si5HOjISGw .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-si5HOjISGw .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-si5HOjISGw .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-si5HOjISGw .mbr-section-btn {
  padding-top: 1rem;
}
.cid-si5HOjISGw .img-text {
  color: #ffffff;
}
.cid-si5HOjISGw .mbr-card-text,
.cid-si5HOjISGw .mbr-section-btn {
  color: #ffffff;
}
.cid-si5HOjISGw .mbr-title {
  color: #efefef;
}
.cid-si5HOjISGw .mbr-section-title {
  text-align: center;
}
.cid-scfKRysLLP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-scfKRysLLP a:link {
  text-decoration: none;
}
.cid-scfKRysLLP .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scfKRysLLP .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-scfKRysLLP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scfKRysLLP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-scfKRysLLP .foot-menu {
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0;
  margin-bottom: 8px;
  padding: .6em 0;
}
.cid-scfKRysLLP .foot-menu > li {
  font-size: 14px;
  padding: 0;
  display: inline-block;
}
.cid-scfKRysLLP .foot-menu > li .rhombus {
  width: 0;
  height: 0;
  right: 4px;
  border: 4px solid transparent;
  border-bottom-color: #444444;
  position: relative;
  top: -19px;
}
.cid-scfKRysLLP .foot-menu > li .rhombus::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  border: 4px solid transparent;
  border-top-color: #444444;
}
.cid-scfKRysLLP .foot-menu li a {
  font-family: 'OpenSans', sans-serif;
  display: inline-block;
  letter-spacing: 2px;
  padding: 0 10px;
}
.cid-scfKRysLLP .plan-title,
.cid-scfKRysLLP .text-letter {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
}
.cid-scfKRysLLP .plan-title {
  color: #444444;
}
@media (max-width: 767px) {
  .cid-scfKRysLLP .foot-menu {
    padding: 15px 1rem;
  }
}
.cid-scfKRysLLP .mbr-section-title span {
  color: #ffbc00;
}
.cid-scfKRztpYu .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-scfKRztpYu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-scfKRztpYu a {
  font-style: normal;
}
.cid-scfKRztpYu .navbar-buttons {
  flex-wrap: wrap;
}
.cid-scfKRztpYu .show {
  overflow: visible;
}
.cid-scfKRztpYu .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-scfKRztpYu .dropdown-item:active {
  background-color: transparent;
}
.cid-scfKRztpYu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-scfKRztpYu .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-scfKRztpYu .nav-item:focus,
.cid-scfKRztpYu .nav-link:focus {
  outline: none;
}
.cid-scfKRztpYu .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-scfKRztpYu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-scfKRztpYu .menu-logo {
  margin-right: auto;
}
.cid-scfKRztpYu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-scfKRztpYu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-scfKRztpYu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-scfKRztpYu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-scfKRztpYu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-scfKRztpYu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-scfKRztpYu .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-scfKRztpYu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-scfKRztpYu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-scfKRztpYu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-scfKRztpYu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-scfKRztpYu .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-scfKRztpYu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-scfKRztpYu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-scfKRztpYu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-scfKRztpYu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-scfKRztpYu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-scfKRztpYu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-scfKRztpYu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-scfKRztpYu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-scfKRztpYu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-scfKRztpYu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-scfKRztpYu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-scfKRztpYu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-scfKRztpYu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-scfKRztpYu button.navbar-toggler:focus {
  outline: none;
}
.cid-scfKRztpYu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-scfKRztpYu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-scfKRztpYu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-scfKRztpYu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-scfKRztpYu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-scfKRztpYu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scfKRztpYu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-scfKRztpYu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-scfKRztpYu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-scfKRztpYu .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-scfKRztpYu .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-scfKRztpYu .collapsed .btn {
  display: -webkit-flex;
}
.cid-scfKRztpYu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-scfKRztpYu .collapsed .navbar-collapse.collapsing,
.cid-scfKRztpYu .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-scfKRztpYu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-scfKRztpYu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-scfKRztpYu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-scfKRztpYu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-scfKRztpYu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-scfKRztpYu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-scfKRztpYu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-scfKRztpYu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-scfKRztpYu .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.625vh;
  }
}
.cid-scfKRztpYu .collapsed button.navbar-toggler {
  display: block;
}
.cid-scfKRztpYu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-scfKRztpYu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-scfKRztpYu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-scfKRztpYu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-scfKRztpYu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-scfKRztpYu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-scfKRztpYu.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-scfKRztpYu img {
    height: 3.8rem !important;
  }
  .cid-scfKRztpYu .btn {
    display: -webkit-flex;
  }
  .cid-scfKRztpYu button.navbar-toggler {
    display: block;
  }
  .cid-scfKRztpYu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-scfKRztpYu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-scfKRztpYu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-scfKRztpYu .navbar-collapse.collapsing,
  .cid-scfKRztpYu .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-scfKRztpYu .navbar-collapse.collapsing .navbar-nav,
  .cid-scfKRztpYu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-scfKRztpYu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-scfKRztpYu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-scfKRztpYu .navbar-collapse.collapsing .navbar-buttons,
  .cid-scfKRztpYu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-scfKRztpYu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-scfKRztpYu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-scfKRztpYu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-scfKRztpYu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-scfKRztpYu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-scfKRztpYu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-scfKRztpYu .nav-link {
    justify-content: start!important;
  }
  .cid-scfKRztpYu .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-scfKRztpYu .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-scfKRztpYu .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-scfKRztpYu .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-scfKRztpYu .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-scfKRztpYu .nav-link:hover,
.cid-scfKRztpYu .dropdown-item:hover {
  color: #66458e !important;
}
@media (min-width: 1500px) {
  .cid-scfKRztpYu .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-scfKRztpYu .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
