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





body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 6rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.32rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.8 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn-success:hover {
  background: #29361a !important;
  border-color: #29361a !important;
}
.btn-secondary {
  color: black!important;
}
.btn-secondary:hover,
.btn-secondary:active {
  color: black!important;
  background: #d6d6d6 !important;
  border-color: #d6d6d6 !important;
}
.btn-primary {
  color: white!important;
}
.btn-primary:hover {
  background: #efefef !important;
  border-color: #efefef !important;
}
.btn-info {
  color: white!important;
}
.btn-success:hover {
  background: #29361a !important;
  border-color: #29361a !important;
}
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #232323 !important;
}
.bg-info {
  background-color: #29361a !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #232323 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #707070;
  background-color: #efefef;
  border-color: #efefef;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #707070;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-info,
.btn-info:active {
  background-color: #29361a !important;
  border-color: #29361a !important;
  color: #ffffff;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff;
  background-color: #29361a;
  border-color: #29361a;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff;
  background-color: #29361a !important;
  border-color: #29361a !important;
}
.btn-success,
.btn-success:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff;
  background-color: #232323;
  border-color: #232323;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff;
  background-color: #232323;
  border-color: #232323;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #707070;
  background-color: #efefef;
  border-color: #efefef;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #29361a;
  border-color: #29361a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #29361a !important;
  border-color: #29361a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #232323;
  border-color: #232323;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #4d4d4d;
  color: #4d4d4d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #232323;
  border-color: #232323;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #efefef !important;
}
.text-success {
  color: #232323 !important;
}
.text-info {
  color: #29361a !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #232323 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #57c8ef !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ffffff !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #565656 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #5d7b3b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #565656 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #29361a;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #232323;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dbe78;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d5d5d5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .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 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #efefef !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23149dcc' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-s9qBoI5XXS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9qBoI5XXS .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9qBoI5XXS .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9qBoI5XXS .dropdown-item {
  color: #000000 !important;
}
.cid-s9qBoI5XXS .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9qBoI5XXS .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9qBoI5XXS .nav-link:hover {
  color: #efefef !important;
}
.cid-s9qBoI5XXS .btn-white {
  color: #149dcc !important;
}
.cid-s9qBoI5XXS .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9qBoI5XXS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9qBoI5XXS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9qBoI5XXS .container {
  display: flex;
  margin: auto;
}
.cid-s9qBoI5XXS .navbar.navbar-short .nav-link,
.cid-s9qBoI5XXS .navbar.navbar-short .navbar-caption,
.cid-s9qBoI5XXS .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9qBoI5XXS .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9qBoI5XXS .navbar-caption {
  padding-right: 3rem;
}
.cid-s9qBoI5XXS .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9qBoI5XXS .nav-item:focus,
.cid-s9qBoI5XXS .nav-link:focus {
  outline: none;
}
.cid-s9qBoI5XXS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9qBoI5XXS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9qBoI5XXS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9qBoI5XXS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9qBoI5XXS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9qBoI5XXS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9qBoI5XXS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9qBoI5XXS .navbar.opened {
  transition: all .3s;
}
.cid-s9qBoI5XXS .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9qBoI5XXS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9qBoI5XXS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9qBoI5XXS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9qBoI5XXS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9qBoI5XXS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9qBoI5XXS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9qBoI5XXS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9qBoI5XXS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9qBoI5XXS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9qBoI5XXS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9qBoI5XXS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9qBoI5XXS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9qBoI5XXS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9qBoI5XXS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9qBoI5XXS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9qBoI5XXS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9qBoI5XXS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9qBoI5XXS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9qBoI5XXS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9qBoI5XXS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9qBoI5XXS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9qBoI5XXS .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9qBoI5XXS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9qBoI5XXS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9qBoI5XXS .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9qBoI5XXS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9qBoI5XXS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9qBoI5XXS .dropdown-item.active,
.cid-s9qBoI5XXS .dropdown-item:active {
  background-color: transparent;
}
.cid-s9qBoI5XXS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9qBoI5XXS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9qBoI5XXS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9qBoI5XXS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9qBoI5XXS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9qBoI5XXS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9qBoI5XXS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9qBoI5XXS .navbar-buttons {
  text-align: center;
}
.cid-s9qBoI5XXS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9qBoI5XXS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9qBoI5XXS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9qBoI5XXS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9qBoI5XXS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9qBoI5XXS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9qBoI5XXS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9qBoI5XXS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9qBoI5XXS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9qBoI5XXS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9qBoI5XXS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9qBoI5XXS a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9qBoI5XXS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9qBoI5XXS .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9qBoI5XXS .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9qBoI5XXS .navbar {
    height: 77px;
  }
  .cid-s9qBoI5XXS .navbar.opened {
    height: auto;
  }
  .cid-s9qBoI5XXS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9qBqJ1aOr {
  padding-top: 135px;
  padding-bottom: 0px;
}
.cid-s9qBqJ1aOr .title-align {
  width: 100%;
}
.cid-s9qBqJ1aOr .pricetitle {
  margin: 0;
  text-align: left;
}
.cid-s9qBqJ1aOr .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-s9qBqJ1aOr .img-col img {
  z-index: 2;
  position: relative;
}
.cid-s9qBqJ1aOr .pricebox {
  position: absolute;
  z-index: 1;
  top: -5rem;
  left: 2rem;
  width: 180px;
  height: 180px;
  background: #fbbe36;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s9qBqJ1aOr H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
  text-align: left;
}
.cid-s9qBqJ1aOr H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-s9qBqJ1aOr img {
  max-width: 500px;
  margin: auto;
}
.cid-s9qBqJ1aOr .mbr-section-subtitle,
.cid-s9qBqJ1aOr .title-align {
  color: #ffffff;
}
.cid-s9qBqJ1aOr .price {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-s9qBqJ1aOr .pricebox {
    top: -2rem;
    right: 2rem;
    left: auto;
  }
}
@media (max-width: 767px) {
  .cid-s9qBqJ1aOr .pricebox {
    width: 100px;
    height: 100px;
    top: 0rem;
    right: 2rem;
    left: auto;
  }
  .cid-s9qBqJ1aOr H2:before {
    width: 70px;
    right: -90px;
  }
  .cid-s9qBqJ1aOr .img-col {
    padding-top: 4rem;
  }
}
.cid-s9qW0g4k82 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s9qW0g4k82 img {
  max-width: 500px;
  width: 100%;
  margin: auto;
}
.cid-s9qW0g4k82 H2 {
  color: #232323;
}
.cid-s9qW0g4k82 H1 {
  color: #0e0e0e;
}
.cid-s9qW0g4k82 .mbr-text,
.cid-s9qW0g4k82 .mbr-section-btn {
  color: #0e0e0e;
}
.cid-s9qW0g4k82 H3 {
  color: #232323;
}
.cid-s9qHIhxWC3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9qHIhxWC3 .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-s9qHIhxWC3 .mbr-section-title {
  margin: 0;
}
.cid-s9qHIhxWC3 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s9qHIhxWC3 .card-img span {
  color: #149dcc;
}
.cid-s9qHIhxWC3 .row-item {
  margin-bottom: 2rem;
}
.cid-s9qHIhxWC3 .row-item:hover .wrapper {
  background: linear-gradient(90deg, #149dcc, #149dcc);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-s9qHIhxWC3 .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-s9qHIhxWC3 .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-s9qHIhxWC3 .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s9qPJB7z2C {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #149dcc;
}
.cid-s9qPJB7z2C .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s9qPJB7z2C input,
.cid-s9qPJB7z2C textarea {
  padding: 1rem 1.8rem!important;
  border-radius: 30px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .cid-s9qPJB7z2C .img-col {
    order: 2;
    text-align: center;
  }
  .cid-s9qPJB7z2C img {
    max-width: 200px;
    margin: auto;
  }
  .cid-s9qPJB7z2C .form-row {
    flex-direction: column;
  }
  .cid-s9qPJB7z2C .btn {
    width: 100%;
  }
}
.cid-s9qPJB7z2C .btn {
  border-radius: 30px;
  margin: 0!important;
}
.cid-s9qPJB7z2C .form-control,
.cid-s9qPJB7z2C .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
  transition: 0.4s;
  min-height: 4rem;
  box-shadow: none;
  outline: none;
}
.cid-s9qPJB7z2C .form-control::-webkit-input-placeholder,
.cid-s9qPJB7z2C .field-input::-webkit-input-placeholder,
.cid-s9qPJB7z2C .form-control::-webkit-input-placeholder,
.cid-s9qPJB7z2C .field-input::-webkit-input-placeholder {
  color: #808080;
}
.cid-s9qPJB7z2C .form-control:-moz-placeholder,
.cid-s9qPJB7z2C .field-input:-moz-placeholder,
.cid-s9qPJB7z2C .form-control:-moz-placeholder,
.cid-s9qPJB7z2C .field-input:-moz-placeholder {
  color: #808080;
}
.cid-s9qPJB7z2C .form-control:hover,
.cid-s9qPJB7z2C .field-input:hover,
.cid-s9qPJB7z2C .form-control:focus,
.cid-s9qPJB7z2C .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
  box-shadow: none;
  outline: none;
}
.cid-s9qPJB7z2C .form-control:hover::-webkit-input-placeholder,
.cid-s9qPJB7z2C .field-input:hover::-webkit-input-placeholder,
.cid-s9qPJB7z2C .form-control:focus::-webkit-input-placeholder,
.cid-s9qPJB7z2C .field-input:focus::-webkit-input-placeholder,
.cid-s9qPJB7z2C .form-control:hover::-webkit-input-placeholder,
.cid-s9qPJB7z2C .field-input:hover::-webkit-input-placeholder,
.cid-s9qPJB7z2C .form-control:focus::-webkit-input-placeholder,
.cid-s9qPJB7z2C .field-input:focus::-webkit-input-placeholder {
  color: #808080;
}
.cid-s9qPJB7z2C .form-control:hover:-moz-placeholder,
.cid-s9qPJB7z2C .field-input:hover:-moz-placeholder,
.cid-s9qPJB7z2C .form-control:focus:-moz-placeholder,
.cid-s9qPJB7z2C .field-input:focus:-moz-placeholder,
.cid-s9qPJB7z2C .form-control:hover:-moz-placeholder,
.cid-s9qPJB7z2C .field-input:hover:-moz-placeholder,
.cid-s9qPJB7z2C .form-control:focus:-moz-placeholder,
.cid-s9qPJB7z2C .field-input:focus:-moz-placeholder {
  color: #808080;
}
.cid-s9qPJB7z2C .jq-number__spin:hover,
.cid-s9qPJB7z2C .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s9qPJB7z2C .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s9qPJB7z2C .jq-selectbox li,
.cid-s9qPJB7z2C .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-s9qPJB7z2C .jq-selectbox li:hover,
.cid-s9qPJB7z2C .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-s9qPJB7z2C .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s9qPJB7z2C .jq-number__spin.minus:hover:after,
.cid-s9qPJB7z2C .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s9qPJB7z2C .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s9qPJB7z2C .jq-number__spin.minus:after,
.cid-s9qPJB7z2C .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s9qPJB7z2C input::-webkit-clear-button {
  display: none;
}
.cid-s9qPJB7z2C input::-webkit-inner-spin-button {
  display: none;
}
.cid-s9qPJB7z2C input::-webkit-outer-spin-button {
  display: none;
}
.cid-s9qPJB7z2C input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s9qPJB7z2C H1 {
  color: #ffffff;
}
.cid-s9qPJB7z2C .mbr-text,
.cid-s9qPJB7z2C .mbr-section-btn {
  color: #ffffff;
}
.cid-s9ByNRAkIF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9ByNRAkIF .google-map {
  height: 25rem;
  position: relative;
}
.cid-s9ByNRAkIF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-s9ByNRAkIF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-s9ByNRAkIF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-s9ByNRAkIF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-s9ByNRAkIF .container-fluid {
  padding: 0;
}
.cid-s9ByNRAkIF .relative {
  position: relative;
  width: 100%;
}
.cid-s9ByNRAkIF .mbr-section-title {
  color: #656565;
}
.cid-s9ByNRAkIF .block {
  background: rgba(50, 50, 50, 0.8);
  position: absolute;
  padding: 2rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  width: 400px;
  height: 100%;
  top: 0;
  right: 0;
}
.cid-s9ByNRAkIF .line {
  height: 3px;
  width: 60px;
  background: #ffffff;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.cid-s9ByNRAkIF .title {
  text-align: center;
  color: #ffffff;
}
.cid-s9ByNRAkIF .text {
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .cid-s9ByNRAkIF .block {
    position: relative;
    width: 100%;
    height: auto;
    padding: 6rem 2rem;
  }
}
.cid-s9BtkBEX25 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #0e0e0e;
}
.cid-s9BtkBEX25 img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-s9BtkBEX25 .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-s9BtkBEX25 .card:hover {
  opacity: 0.9;
}
.cid-s9BtkBEX25 H1 {
  color: #ffffff;
}
.cid-s9BtkBEX25 .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-s9BtkBEX25 .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-s9BtkBEX25 .row {
  justify-content: center!important;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9BAZ6JJbT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BAZ6JJbT .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9BAZ6JJbT .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9BAZ6JJbT .dropdown-item {
  color: #000000 !important;
}
.cid-s9BAZ6JJbT .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9BAZ6JJbT .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9BAZ6JJbT .nav-link:hover {
  color: #efefef !important;
}
.cid-s9BAZ6JJbT .btn-white {
  color: #149dcc !important;
}
.cid-s9BAZ6JJbT .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9BAZ6JJbT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9BAZ6JJbT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9BAZ6JJbT .container {
  display: flex;
  margin: auto;
}
.cid-s9BAZ6JJbT .navbar.navbar-short .nav-link,
.cid-s9BAZ6JJbT .navbar.navbar-short .navbar-caption,
.cid-s9BAZ6JJbT .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9BAZ6JJbT .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9BAZ6JJbT .navbar-caption {
  padding-right: 3rem;
}
.cid-s9BAZ6JJbT .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9BAZ6JJbT .nav-item:focus,
.cid-s9BAZ6JJbT .nav-link:focus {
  outline: none;
}
.cid-s9BAZ6JJbT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BAZ6JJbT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9BAZ6JJbT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9BAZ6JJbT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BAZ6JJbT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9BAZ6JJbT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9BAZ6JJbT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9BAZ6JJbT .navbar.opened {
  transition: all .3s;
}
.cid-s9BAZ6JJbT .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9BAZ6JJbT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9BAZ6JJbT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9BAZ6JJbT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9BAZ6JJbT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9BAZ6JJbT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9BAZ6JJbT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9BAZ6JJbT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9BAZ6JJbT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9BAZ6JJbT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9BAZ6JJbT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9BAZ6JJbT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9BAZ6JJbT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9BAZ6JJbT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9BAZ6JJbT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9BAZ6JJbT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9BAZ6JJbT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9BAZ6JJbT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9BAZ6JJbT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9BAZ6JJbT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9BAZ6JJbT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9BAZ6JJbT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9BAZ6JJbT .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9BAZ6JJbT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9BAZ6JJbT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9BAZ6JJbT .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9BAZ6JJbT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9BAZ6JJbT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9BAZ6JJbT .dropdown-item.active,
.cid-s9BAZ6JJbT .dropdown-item:active {
  background-color: transparent;
}
.cid-s9BAZ6JJbT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9BAZ6JJbT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9BAZ6JJbT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9BAZ6JJbT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9BAZ6JJbT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9BAZ6JJbT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9BAZ6JJbT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9BAZ6JJbT .navbar-buttons {
  text-align: center;
}
.cid-s9BAZ6JJbT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9BAZ6JJbT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9BAZ6JJbT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9BAZ6JJbT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9BAZ6JJbT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9BAZ6JJbT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9BAZ6JJbT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9BAZ6JJbT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9BAZ6JJbT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9BAZ6JJbT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9BAZ6JJbT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9BAZ6JJbT a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9BAZ6JJbT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9BAZ6JJbT .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9BAZ6JJbT .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9BAZ6JJbT .navbar {
    height: 77px;
  }
  .cid-s9BAZ6JJbT .navbar.opened {
    height: auto;
  }
  .cid-s9BAZ6JJbT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9BBaj0wMb {
  overflow-x: hidden !important;
}
.cid-s9BBaj0wMb,
.cid-s9BBaj0wMb .scroll-wrapper {
  padding-top: 150px;
  padding-bottom: 75px;
}
.cid-s9BBaj0wMb .mbr-section-title {
  color: #ffffff;
}
.cid-s9BBaj0wMb .mbr-section-title span {
  color: #149dcc;
}
.cid-s9BBaj0wMb .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-s9BBaj0wMb .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/ztb6um-1920x385.jpg");
}
.cid-s9BBaj0wMb .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-s9BBaj0wMb .mbr-overlay {
  z-index: 1;
}
.cid-s9BBaj0wMb .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-s9BClffRBJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s9BClffRBJ h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-s9BClffRBJ .mbr-section-subtitle {
  color: #767676;
}
.cid-s9BClffRBJ .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-s9BClffRBJ .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-s9BClffRBJ .article-counter-left {
  color: #4f4943;
}
.cid-s9BClffRBJ .article-counter-right {
  color: #4f4943;
}
.cid-s9BDk5rzJM {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s9BDk5rzJM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s9BDk5rzJM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s9BDk5rzJM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s9BDk5rzJM .title {
  padding: 0 2rem;
}
.cid-s9BDk5rzJM .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
  height: 300px!important;
}
.cid-s9BDk5rzJM .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-s9BDk5rzJM .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
  pointer-events: none;
}
.cid-s9BDk5rzJM .mbr-gallery-item div:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
}
.cid-s9BDk5rzJM .mbr-gallery-item div:hover:before {
  opacity: 0.3;
  width: 0;
}
.cid-s9BDk5rzJM .mbr-gallery-item div:hover:after {
  opacity: 0.3;
  height: 0;
}
.cid-s9BDk5rzJM .container {
  padding: 0 1rem;
}
.cid-s9BDk5rzJM .mbr-gallery-item--p4 {
  padding: 1rem!important;
}
.cid-s9BDk5rzJM .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-s9BDk5rzJM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s9BDk5rzJM .icon-focus {
  display: none;
}
.cid-s9BDk5rzJM .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-s9BDk5rzJM .btn-primary-outline:hover {
  background: transparent!important;
  color: #149dcc !important;
}
.cid-s9BDk5rzJM li.active .btn {
  background: transparent!important;
  color: black !important;
}
.cid-s9BDk5rzJM li {
  position: relative;
}
.cid-s9BDk5rzJM li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-s9BDk5rzJM .btn {
  font-family: Roboto !important;
}
.cid-s9BDk5rzJM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-s9BDk5rzJM .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s9BDk5rzJM li:not(:last-child):after {
    top: 9px;
  }
  .cid-s9BDk5rzJM .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
  .cid-s9BDk5rzJM .container {
    padding: 0rem;
  }
  .cid-s9BDk5rzJM .title {
    padding: 0 1rem;
  }
}
.cid-s9BDk5rzJM H2 {
  color: #89b758;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9BF2TQlJQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BF2TQlJQ .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9BF2TQlJQ .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9BF2TQlJQ .dropdown-item {
  color: #000000 !important;
}
.cid-s9BF2TQlJQ .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9BF2TQlJQ .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9BF2TQlJQ .nav-link:hover {
  color: #efefef !important;
}
.cid-s9BF2TQlJQ .btn-white {
  color: #149dcc !important;
}
.cid-s9BF2TQlJQ .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9BF2TQlJQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9BF2TQlJQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9BF2TQlJQ .container {
  display: flex;
  margin: auto;
}
.cid-s9BF2TQlJQ .navbar.navbar-short .nav-link,
.cid-s9BF2TQlJQ .navbar.navbar-short .navbar-caption,
.cid-s9BF2TQlJQ .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9BF2TQlJQ .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9BF2TQlJQ .navbar-caption {
  padding-right: 3rem;
}
.cid-s9BF2TQlJQ .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9BF2TQlJQ .nav-item:focus,
.cid-s9BF2TQlJQ .nav-link:focus {
  outline: none;
}
.cid-s9BF2TQlJQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BF2TQlJQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9BF2TQlJQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9BF2TQlJQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BF2TQlJQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9BF2TQlJQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9BF2TQlJQ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9BF2TQlJQ .navbar.opened {
  transition: all .3s;
}
.cid-s9BF2TQlJQ .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9BF2TQlJQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9BF2TQlJQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9BF2TQlJQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9BF2TQlJQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9BF2TQlJQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9BF2TQlJQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9BF2TQlJQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9BF2TQlJQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9BF2TQlJQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9BF2TQlJQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9BF2TQlJQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9BF2TQlJQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9BF2TQlJQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9BF2TQlJQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9BF2TQlJQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9BF2TQlJQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9BF2TQlJQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9BF2TQlJQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9BF2TQlJQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9BF2TQlJQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9BF2TQlJQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9BF2TQlJQ .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9BF2TQlJQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9BF2TQlJQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9BF2TQlJQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9BF2TQlJQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9BF2TQlJQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9BF2TQlJQ .dropdown-item.active,
.cid-s9BF2TQlJQ .dropdown-item:active {
  background-color: transparent;
}
.cid-s9BF2TQlJQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9BF2TQlJQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9BF2TQlJQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9BF2TQlJQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9BF2TQlJQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9BF2TQlJQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9BF2TQlJQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9BF2TQlJQ .navbar-buttons {
  text-align: center;
}
.cid-s9BF2TQlJQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9BF2TQlJQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9BF2TQlJQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9BF2TQlJQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9BF2TQlJQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9BF2TQlJQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9BF2TQlJQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9BF2TQlJQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9BF2TQlJQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9BF2TQlJQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9BF2TQlJQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9BF2TQlJQ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9BF2TQlJQ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9BF2TQlJQ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9BF2TQlJQ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9BF2TQlJQ .navbar {
    height: 77px;
  }
  .cid-s9BF2TQlJQ .navbar.opened {
    height: auto;
  }
  .cid-s9BF2TQlJQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9BKjWXD5F {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-s9BKjWXD5F .title-align {
  width: 100%;
}
.cid-s9BKjWXD5F .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-s9BKjWXD5F .img-col img {
  z-index: 2;
  position: relative;
}
.cid-s9BKjWXD5F .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s9BKjWXD5F .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-s9BKjWXD5F .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-s9BKjWXD5F .price-wrap {
  margin-left: 3rem;
}
.cid-s9BKjWXD5F .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-s9BKjWXD5F .item-first {
  margin-left: 0!important;
}
.cid-s9BKjWXD5F H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-s9BKjWXD5F H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-s9BKjWXD5F img {
  margin: auto;
  max-width: 500px;
}
.cid-s9BKjWXD5F .mbr-section-subtitle,
.cid-s9BKjWXD5F .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-s9BKjWXD5F .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9BKjWXD5F H2:before {
    content: none;
  }
  .cid-s9BKjWXD5F .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-s9BKjWXD5F .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-s9BKjWXD5F .pricebox {
    margin-right: 0rem;
  }
  .cid-s9BKjWXD5F .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-s9BNhyTZtH {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s9BNhyTZtH .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-s9BNhyTZtH .mbr-section-title {
  margin: 0;
}
.cid-s9BNhyTZtH .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s9BNhyTZtH .card-img {
  text-align: inherit;
}
.cid-s9BNhyTZtH .card-img span {
  background: linear-gradient(90deg, #e7272d, #e7272d);
}
.cid-s9BNhyTZtH .mbr-text {
  color: #8d97ad;
}
.cid-s9BNhyTZtH .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-s9BNhyTZtH .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-s9BP5vPbnL {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s9BP5vPbnL .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-s9BP5vPbnL .container-table {
  margin: 0 auto;
}
.cid-s9BP5vPbnL .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s9BP5vPbnL .dataTables_wrapper {
  display: block;
}
.cid-s9BP5vPbnL .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s9BP5vPbnL .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s9BP5vPbnL table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-s9BP5vPbnL table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s9BP5vPbnL table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-s9BP5vPbnL table td {
  border-top: 1px solid #cccccc;
}
.cid-s9BP5vPbnL table.table {
  background: #ffffff;
}
.cid-s9BP5vPbnL .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s9BP5vPbnL .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s9BP5vPbnL .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s9BP5vPbnL .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s9BP5vPbnL .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s9BP5vPbnL .dataTables_filter {
    text-align: center;
  }
  .cid-s9BP5vPbnL .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s9BP5vPbnL .mbr-section-title {
  text-align: center;
}
.cid-s9BQubNk7Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9BQubNk7Y .container-fluid {
  padding: 0 3rem;
}
.cid-s9BQubNk7Y .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #efefef 120%);
  display: inline-block;
}
.cid-s9BQubNk7Y .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-s9BQubNk7Y .header-text {
  padding: 2rem 1rem !important;
}
.cid-s9BQubNk7Y .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-s9BQubNk7Y .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-s9BQubNk7Y .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-s9BQubNk7Y .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9BQubNk7Y .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-s9BQubNk7Y .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-s9BQubNk7Y .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9BQubNk7Y .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-s9BQubNk7Y .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-s9BQubNk7Y .container-fluid {
    padding: 0 1rem;
  }
  .cid-s9BQubNk7Y .header-text {
    padding: 1rem !important;
  }
  .cid-s9BQubNk7Y .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-s9BQubNk7Y .panel-body {
    width: calc(100% - 48px);
  }
  .cid-s9BQubNk7Y .panel-group {
    padding: 0;
  }
}
.cid-s9BQubNk7Y .header-text,
.cid-s9BQubNk7Y .sign {
  color: #232323;
}
.cid-s9BQubNk7Y .mbr-section-title,
.cid-s9BQubNk7Y .underline DIV {
  text-align: center;
}
.cid-s9BRs26Ldl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9BRs26Ldl .container-fluid {
  padding: 0 3rem;
}
.cid-s9BRs26Ldl .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #efefef 120%);
  display: inline-block;
}
.cid-s9BRs26Ldl .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-s9BRs26Ldl .header-text {
  padding: 2rem 1rem !important;
}
.cid-s9BRs26Ldl .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-s9BRs26Ldl .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-s9BRs26Ldl .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-s9BRs26Ldl .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9BRs26Ldl .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-s9BRs26Ldl .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-s9BRs26Ldl .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9BRs26Ldl .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-s9BRs26Ldl .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-s9BRs26Ldl .container-fluid {
    padding: 0 1rem;
  }
  .cid-s9BRs26Ldl .header-text {
    padding: 1rem !important;
  }
  .cid-s9BRs26Ldl .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-s9BRs26Ldl .panel-body {
    width: calc(100% - 48px);
  }
  .cid-s9BRs26Ldl .panel-group {
    padding: 0;
  }
}
.cid-s9BRs26Ldl .header-text,
.cid-s9BRs26Ldl .sign {
  color: #232323;
}
.cid-s9BRs26Ldl .mbr-section-title,
.cid-s9BRs26Ldl .underline DIV {
  text-align: center;
}
.cid-s9BSWYzgDc {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s9BSWYzgDc .container-fluid {
  padding: 0 3rem;
}
.cid-s9BSWYzgDc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #efefef 120%);
  display: inline-block;
}
.cid-s9BSWYzgDc .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-s9BSWYzgDc .header-text {
  padding: 2rem 1rem !important;
}
.cid-s9BSWYzgDc .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-s9BSWYzgDc .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-s9BSWYzgDc .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-s9BSWYzgDc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9BSWYzgDc .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-s9BSWYzgDc .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-s9BSWYzgDc .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9BSWYzgDc .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-s9BSWYzgDc .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-s9BSWYzgDc .container-fluid {
    padding: 0 1rem;
  }
  .cid-s9BSWYzgDc .header-text {
    padding: 1rem !important;
  }
  .cid-s9BSWYzgDc .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-s9BSWYzgDc .panel-body {
    width: calc(100% - 48px);
  }
  .cid-s9BSWYzgDc .panel-group {
    padding: 0;
  }
}
.cid-s9BSWYzgDc .header-text,
.cid-s9BSWYzgDc .sign {
  color: #232323;
}
.cid-s9BSWYzgDc .mbr-section-title,
.cid-s9BSWYzgDc .underline DIV {
  text-align: center;
}
.cid-s9BTnTFMcc {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9BTnTFMcc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9BUUvxlD7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BUUvxlD7 .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9BUUvxlD7 .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9BUUvxlD7 .dropdown-item {
  color: #000000 !important;
}
.cid-s9BUUvxlD7 .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9BUUvxlD7 .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9BUUvxlD7 .nav-link:hover {
  color: #efefef !important;
}
.cid-s9BUUvxlD7 .btn-white {
  color: #149dcc !important;
}
.cid-s9BUUvxlD7 .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9BUUvxlD7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9BUUvxlD7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9BUUvxlD7 .container {
  display: flex;
  margin: auto;
}
.cid-s9BUUvxlD7 .navbar.navbar-short .nav-link,
.cid-s9BUUvxlD7 .navbar.navbar-short .navbar-caption,
.cid-s9BUUvxlD7 .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9BUUvxlD7 .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9BUUvxlD7 .navbar-caption {
  padding-right: 3rem;
}
.cid-s9BUUvxlD7 .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9BUUvxlD7 .nav-item:focus,
.cid-s9BUUvxlD7 .nav-link:focus {
  outline: none;
}
.cid-s9BUUvxlD7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BUUvxlD7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9BUUvxlD7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9BUUvxlD7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BUUvxlD7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9BUUvxlD7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9BUUvxlD7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9BUUvxlD7 .navbar.opened {
  transition: all .3s;
}
.cid-s9BUUvxlD7 .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9BUUvxlD7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9BUUvxlD7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9BUUvxlD7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9BUUvxlD7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9BUUvxlD7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9BUUvxlD7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9BUUvxlD7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9BUUvxlD7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9BUUvxlD7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9BUUvxlD7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9BUUvxlD7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9BUUvxlD7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9BUUvxlD7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9BUUvxlD7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9BUUvxlD7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9BUUvxlD7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9BUUvxlD7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9BUUvxlD7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9BUUvxlD7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9BUUvxlD7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9BUUvxlD7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9BUUvxlD7 .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9BUUvxlD7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9BUUvxlD7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9BUUvxlD7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9BUUvxlD7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9BUUvxlD7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9BUUvxlD7 .dropdown-item.active,
.cid-s9BUUvxlD7 .dropdown-item:active {
  background-color: transparent;
}
.cid-s9BUUvxlD7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9BUUvxlD7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9BUUvxlD7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9BUUvxlD7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9BUUvxlD7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9BUUvxlD7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9BUUvxlD7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9BUUvxlD7 .navbar-buttons {
  text-align: center;
}
.cid-s9BUUvxlD7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9BUUvxlD7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9BUUvxlD7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9BUUvxlD7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9BUUvxlD7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9BUUvxlD7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9BUUvxlD7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9BUUvxlD7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9BUUvxlD7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9BUUvxlD7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9BUUvxlD7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9BUUvxlD7 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9BUUvxlD7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9BUUvxlD7 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9BUUvxlD7 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9BUUvxlD7 .navbar {
    height: 77px;
  }
  .cid-s9BUUvxlD7 .navbar.opened {
    height: auto;
  }
  .cid-s9BUUvxlD7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9BUUx0OBy {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-s9BUUx0OBy .title-align {
  width: 100%;
}
.cid-s9BUUx0OBy .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-s9BUUx0OBy .img-col img {
  z-index: 2;
  position: relative;
}
.cid-s9BUUx0OBy .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s9BUUx0OBy .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-s9BUUx0OBy .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-s9BUUx0OBy .price-wrap {
  margin-left: 3rem;
}
.cid-s9BUUx0OBy .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-s9BUUx0OBy .item-first {
  margin-left: 0!important;
}
.cid-s9BUUx0OBy H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-s9BUUx0OBy H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-s9BUUx0OBy img {
  margin: auto;
  max-width: 500px;
}
.cid-s9BUUx0OBy .mbr-section-subtitle,
.cid-s9BUUx0OBy .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-s9BUUx0OBy .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9BUUx0OBy H2:before {
    content: none;
  }
  .cid-s9BUUx0OBy .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-s9BUUx0OBy .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-s9BUUx0OBy .pricebox {
    margin-right: 0rem;
  }
  .cid-s9BUUx0OBy .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-s9BUUy6DPU {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s9BUUy6DPU .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-s9BUUy6DPU .mbr-section-title {
  margin: 0;
}
.cid-s9BUUy6DPU .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s9BUUy6DPU .card-img {
  text-align: inherit;
}
.cid-s9BUUy6DPU .card-img span {
  background: linear-gradient(90deg, #e7272d, #e7272d);
}
.cid-s9BUUy6DPU .mbr-text {
  color: #8d97ad;
}
.cid-s9BUUy6DPU .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-s9BUUy6DPU .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-s9BUUzqrDe {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s9BUUzqrDe .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-s9BUUzqrDe .container-table {
  margin: 0 auto;
}
.cid-s9BUUzqrDe .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s9BUUzqrDe .dataTables_wrapper {
  display: block;
}
.cid-s9BUUzqrDe .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s9BUUzqrDe .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s9BUUzqrDe table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-s9BUUzqrDe table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s9BUUzqrDe table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-s9BUUzqrDe table td {
  border-top: 1px solid #cccccc;
}
.cid-s9BUUzqrDe table.table {
  background: #ffffff;
}
.cid-s9BUUzqrDe .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s9BUUzqrDe .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s9BUUzqrDe .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s9BUUzqrDe .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s9BUUzqrDe .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s9BUUzqrDe .dataTables_filter {
    text-align: center;
  }
  .cid-s9BUUzqrDe .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s9BUUzqrDe .mbr-section-title {
  text-align: center;
}
.cid-s9BUUB8bbb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9BUUB8bbb .container-fluid {
  padding: 0 3rem;
}
.cid-s9BUUB8bbb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #efefef 120%);
  display: inline-block;
}
.cid-s9BUUB8bbb .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-s9BUUB8bbb .header-text {
  padding: 2rem 1rem !important;
}
.cid-s9BUUB8bbb .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-s9BUUB8bbb .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-s9BUUB8bbb .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-s9BUUB8bbb .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9BUUB8bbb .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-s9BUUB8bbb .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-s9BUUB8bbb .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9BUUB8bbb .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-s9BUUB8bbb .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-s9BUUB8bbb .container-fluid {
    padding: 0 1rem;
  }
  .cid-s9BUUB8bbb .header-text {
    padding: 1rem !important;
  }
  .cid-s9BUUB8bbb .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-s9BUUB8bbb .panel-body {
    width: calc(100% - 48px);
  }
  .cid-s9BUUB8bbb .panel-group {
    padding: 0;
  }
}
.cid-s9BUUB8bbb .header-text,
.cid-s9BUUB8bbb .sign {
  color: #232323;
}
.cid-s9BUUB8bbb .mbr-section-title,
.cid-s9BUUB8bbb .underline DIV {
  text-align: center;
}
.cid-s9BUUEuWIM {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9BUUEuWIM .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9BXfobjaF .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BXfobjaF .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9BXfobjaF .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9BXfobjaF .dropdown-item {
  color: #000000 !important;
}
.cid-s9BXfobjaF .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9BXfobjaF .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9BXfobjaF .nav-link:hover {
  color: #efefef !important;
}
.cid-s9BXfobjaF .btn-white {
  color: #149dcc !important;
}
.cid-s9BXfobjaF .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9BXfobjaF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9BXfobjaF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9BXfobjaF .container {
  display: flex;
  margin: auto;
}
.cid-s9BXfobjaF .navbar.navbar-short .nav-link,
.cid-s9BXfobjaF .navbar.navbar-short .navbar-caption,
.cid-s9BXfobjaF .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9BXfobjaF .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9BXfobjaF .navbar-caption {
  padding-right: 3rem;
}
.cid-s9BXfobjaF .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9BXfobjaF .nav-item:focus,
.cid-s9BXfobjaF .nav-link:focus {
  outline: none;
}
.cid-s9BXfobjaF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BXfobjaF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9BXfobjaF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9BXfobjaF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9BXfobjaF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9BXfobjaF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9BXfobjaF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9BXfobjaF .navbar.opened {
  transition: all .3s;
}
.cid-s9BXfobjaF .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9BXfobjaF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9BXfobjaF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9BXfobjaF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9BXfobjaF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9BXfobjaF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9BXfobjaF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9BXfobjaF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9BXfobjaF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9BXfobjaF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9BXfobjaF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9BXfobjaF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9BXfobjaF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9BXfobjaF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9BXfobjaF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9BXfobjaF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9BXfobjaF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9BXfobjaF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9BXfobjaF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9BXfobjaF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9BXfobjaF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9BXfobjaF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9BXfobjaF .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9BXfobjaF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9BXfobjaF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9BXfobjaF .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9BXfobjaF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9BXfobjaF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9BXfobjaF .dropdown-item.active,
.cid-s9BXfobjaF .dropdown-item:active {
  background-color: transparent;
}
.cid-s9BXfobjaF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9BXfobjaF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9BXfobjaF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9BXfobjaF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9BXfobjaF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9BXfobjaF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9BXfobjaF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9BXfobjaF .navbar-buttons {
  text-align: center;
}
.cid-s9BXfobjaF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9BXfobjaF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9BXfobjaF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9BXfobjaF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9BXfobjaF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9BXfobjaF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9BXfobjaF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9BXfobjaF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9BXfobjaF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9BXfobjaF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9BXfobjaF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9BXfobjaF a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9BXfobjaF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9BXfobjaF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9BXfobjaF .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9BXfobjaF .navbar {
    height: 77px;
  }
  .cid-s9BXfobjaF .navbar.opened {
    height: auto;
  }
  .cid-s9BXfobjaF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9BXfpPNUZ {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-s9BXfpPNUZ .title-align {
  width: 100%;
}
.cid-s9BXfpPNUZ .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-s9BXfpPNUZ .img-col img {
  z-index: 2;
  position: relative;
}
.cid-s9BXfpPNUZ .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s9BXfpPNUZ .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-s9BXfpPNUZ .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-s9BXfpPNUZ .price-wrap {
  margin-left: 3rem;
}
.cid-s9BXfpPNUZ .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-s9BXfpPNUZ .item-first {
  margin-left: 0!important;
}
.cid-s9BXfpPNUZ H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-s9BXfpPNUZ H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-s9BXfpPNUZ img {
  margin: auto;
  max-width: 500px;
}
.cid-s9BXfpPNUZ .mbr-section-subtitle,
.cid-s9BXfpPNUZ .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-s9BXfpPNUZ .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9BXfpPNUZ H2:before {
    content: none;
  }
  .cid-s9BXfpPNUZ .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-s9BXfpPNUZ .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-s9BXfpPNUZ .pricebox {
    margin-right: 0rem;
  }
  .cid-s9BXfpPNUZ .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-s9BXfrUB4P {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s9BXfrUB4P .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-s9BXfrUB4P .container-table {
  margin: 0 auto;
}
.cid-s9BXfrUB4P .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s9BXfrUB4P .dataTables_wrapper {
  display: block;
}
.cid-s9BXfrUB4P .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s9BXfrUB4P .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s9BXfrUB4P table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-s9BXfrUB4P table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s9BXfrUB4P table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-s9BXfrUB4P table td {
  border-top: 1px solid #cccccc;
}
.cid-s9BXfrUB4P table.table {
  background: #ffffff;
}
.cid-s9BXfrUB4P .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s9BXfrUB4P .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s9BXfrUB4P .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s9BXfrUB4P .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s9BXfrUB4P .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s9BXfrUB4P .dataTables_filter {
    text-align: center;
  }
  .cid-s9BXfrUB4P .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s9BXfrUB4P .mbr-section-title {
  text-align: center;
}
.cid-s9BXfrUB4P .body-item {
  color: #232323;
}
.cid-s9BXftozLm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9BXftozLm .container-fluid {
  padding: 0 3rem;
}
.cid-s9BXftozLm .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #efefef 120%);
  display: inline-block;
}
.cid-s9BXftozLm .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-s9BXftozLm .header-text {
  padding: 2rem 1rem !important;
}
.cid-s9BXftozLm .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-s9BXftozLm .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-s9BXftozLm .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-s9BXftozLm .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9BXftozLm .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-s9BXftozLm .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-s9BXftozLm .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9BXftozLm .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-s9BXftozLm .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-s9BXftozLm .container-fluid {
    padding: 0 1rem;
  }
  .cid-s9BXftozLm .header-text {
    padding: 1rem !important;
  }
  .cid-s9BXftozLm .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-s9BXftozLm .panel-body {
    width: calc(100% - 48px);
  }
  .cid-s9BXftozLm .panel-group {
    padding: 0;
  }
}
.cid-s9BXftozLm .header-text,
.cid-s9BXftozLm .sign {
  color: #232323;
}
.cid-s9BXftozLm .mbr-section-title,
.cid-s9BXftozLm .underline DIV {
  text-align: center;
}
.cid-s9BXfuyP0Q {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9BXfuyP0Q .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9C5qLsdgo .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9C5qLsdgo .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9C5qLsdgo .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9C5qLsdgo .dropdown-item {
  color: #000000 !important;
}
.cid-s9C5qLsdgo .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9C5qLsdgo .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9C5qLsdgo .nav-link:hover {
  color: #efefef !important;
}
.cid-s9C5qLsdgo .btn-white {
  color: #149dcc !important;
}
.cid-s9C5qLsdgo .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9C5qLsdgo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9C5qLsdgo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9C5qLsdgo .container {
  display: flex;
  margin: auto;
}
.cid-s9C5qLsdgo .navbar.navbar-short .nav-link,
.cid-s9C5qLsdgo .navbar.navbar-short .navbar-caption,
.cid-s9C5qLsdgo .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9C5qLsdgo .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9C5qLsdgo .navbar-caption {
  padding-right: 3rem;
}
.cid-s9C5qLsdgo .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9C5qLsdgo .nav-item:focus,
.cid-s9C5qLsdgo .nav-link:focus {
  outline: none;
}
.cid-s9C5qLsdgo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9C5qLsdgo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9C5qLsdgo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9C5qLsdgo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9C5qLsdgo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9C5qLsdgo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9C5qLsdgo .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9C5qLsdgo .navbar.opened {
  transition: all .3s;
}
.cid-s9C5qLsdgo .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9C5qLsdgo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9C5qLsdgo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9C5qLsdgo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9C5qLsdgo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9C5qLsdgo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9C5qLsdgo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9C5qLsdgo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9C5qLsdgo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9C5qLsdgo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9C5qLsdgo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9C5qLsdgo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9C5qLsdgo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9C5qLsdgo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9C5qLsdgo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9C5qLsdgo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9C5qLsdgo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9C5qLsdgo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9C5qLsdgo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9C5qLsdgo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9C5qLsdgo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9C5qLsdgo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9C5qLsdgo .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9C5qLsdgo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9C5qLsdgo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9C5qLsdgo .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9C5qLsdgo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9C5qLsdgo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9C5qLsdgo .dropdown-item.active,
.cid-s9C5qLsdgo .dropdown-item:active {
  background-color: transparent;
}
.cid-s9C5qLsdgo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9C5qLsdgo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9C5qLsdgo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9C5qLsdgo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9C5qLsdgo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9C5qLsdgo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9C5qLsdgo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9C5qLsdgo .navbar-buttons {
  text-align: center;
}
.cid-s9C5qLsdgo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9C5qLsdgo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9C5qLsdgo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9C5qLsdgo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9C5qLsdgo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9C5qLsdgo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9C5qLsdgo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9C5qLsdgo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9C5qLsdgo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9C5qLsdgo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9C5qLsdgo .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9C5qLsdgo a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9C5qLsdgo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9C5qLsdgo .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9C5qLsdgo .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9C5qLsdgo .navbar {
    height: 77px;
  }
  .cid-s9C5qLsdgo .navbar.opened {
    height: auto;
  }
  .cid-s9C5qLsdgo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9C5qN5Ve4 {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-s9C5qN5Ve4 .title-align {
  width: 100%;
}
.cid-s9C5qN5Ve4 .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-s9C5qN5Ve4 .img-col img {
  z-index: 2;
  position: relative;
}
.cid-s9C5qN5Ve4 .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s9C5qN5Ve4 .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-s9C5qN5Ve4 .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-s9C5qN5Ve4 .price-wrap {
  margin-left: 3rem;
}
.cid-s9C5qN5Ve4 .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-s9C5qN5Ve4 .item-first {
  margin-left: 0!important;
}
.cid-s9C5qN5Ve4 H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-s9C5qN5Ve4 H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-s9C5qN5Ve4 img {
  margin: auto;
  max-width: 500px;
}
.cid-s9C5qN5Ve4 .mbr-section-subtitle,
.cid-s9C5qN5Ve4 .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-s9C5qN5Ve4 .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9C5qN5Ve4 H2:before {
    content: none;
  }
  .cid-s9C5qN5Ve4 .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-s9C5qN5Ve4 .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-s9C5qN5Ve4 .pricebox {
    margin-right: 0rem;
  }
  .cid-s9C5qN5Ve4 .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-s9C5qNTGlr {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s9C5qNTGlr .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-s9C5qNTGlr .container-table {
  margin: 0 auto;
}
.cid-s9C5qNTGlr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s9C5qNTGlr .dataTables_wrapper {
  display: block;
}
.cid-s9C5qNTGlr .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s9C5qNTGlr .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s9C5qNTGlr table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-s9C5qNTGlr table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s9C5qNTGlr table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-s9C5qNTGlr table td {
  border-top: 1px solid #cccccc;
}
.cid-s9C5qNTGlr table.table {
  background: #ffffff;
}
.cid-s9C5qNTGlr .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s9C5qNTGlr .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s9C5qNTGlr .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s9C5qNTGlr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s9C5qNTGlr .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s9C5qNTGlr .dataTables_filter {
    text-align: center;
  }
  .cid-s9C5qNTGlr .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s9C5qNTGlr .mbr-section-title {
  text-align: center;
}
.cid-s9C5qNTGlr .body-item {
  color: #232323;
}
.cid-s9C5qVpaRG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9C5qVpaRG .container-fluid {
  padding: 0 3rem;
}
.cid-s9C5qVpaRG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #efefef 120%);
  display: inline-block;
}
.cid-s9C5qVpaRG .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-s9C5qVpaRG .header-text {
  padding: 2rem 1rem !important;
}
.cid-s9C5qVpaRG .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-s9C5qVpaRG .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-s9C5qVpaRG .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-s9C5qVpaRG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9C5qVpaRG .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-s9C5qVpaRG .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-s9C5qVpaRG .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9C5qVpaRG .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-s9C5qVpaRG .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-s9C5qVpaRG .container-fluid {
    padding: 0 1rem;
  }
  .cid-s9C5qVpaRG .header-text {
    padding: 1rem !important;
  }
  .cid-s9C5qVpaRG .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-s9C5qVpaRG .panel-body {
    width: calc(100% - 48px);
  }
  .cid-s9C5qVpaRG .panel-group {
    padding: 0;
  }
}
.cid-s9C5qVpaRG .header-text,
.cid-s9C5qVpaRG .sign {
  color: #232323;
}
.cid-s9C5qVpaRG .mbr-section-title,
.cid-s9C5qVpaRG .underline DIV {
  text-align: center;
}
.cid-s9C5qWsdWy {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9C5qWsdWy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9C8CEwN5l .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9C8CEwN5l .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9C8CEwN5l .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9C8CEwN5l .dropdown-item {
  color: #000000 !important;
}
.cid-s9C8CEwN5l .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9C8CEwN5l .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9C8CEwN5l .nav-link:hover {
  color: #efefef !important;
}
.cid-s9C8CEwN5l .btn-white {
  color: #149dcc !important;
}
.cid-s9C8CEwN5l .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9C8CEwN5l .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9C8CEwN5l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9C8CEwN5l .container {
  display: flex;
  margin: auto;
}
.cid-s9C8CEwN5l .navbar.navbar-short .nav-link,
.cid-s9C8CEwN5l .navbar.navbar-short .navbar-caption,
.cid-s9C8CEwN5l .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9C8CEwN5l .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9C8CEwN5l .navbar-caption {
  padding-right: 3rem;
}
.cid-s9C8CEwN5l .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9C8CEwN5l .nav-item:focus,
.cid-s9C8CEwN5l .nav-link:focus {
  outline: none;
}
.cid-s9C8CEwN5l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9C8CEwN5l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9C8CEwN5l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9C8CEwN5l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9C8CEwN5l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9C8CEwN5l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9C8CEwN5l .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9C8CEwN5l .navbar.opened {
  transition: all .3s;
}
.cid-s9C8CEwN5l .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9C8CEwN5l .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9C8CEwN5l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9C8CEwN5l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9C8CEwN5l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9C8CEwN5l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9C8CEwN5l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9C8CEwN5l .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9C8CEwN5l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9C8CEwN5l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9C8CEwN5l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9C8CEwN5l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9C8CEwN5l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9C8CEwN5l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9C8CEwN5l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9C8CEwN5l .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9C8CEwN5l .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9C8CEwN5l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9C8CEwN5l .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9C8CEwN5l .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9C8CEwN5l .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9C8CEwN5l .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9C8CEwN5l .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9C8CEwN5l .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9C8CEwN5l .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9C8CEwN5l .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9C8CEwN5l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9C8CEwN5l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9C8CEwN5l .dropdown-item.active,
.cid-s9C8CEwN5l .dropdown-item:active {
  background-color: transparent;
}
.cid-s9C8CEwN5l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9C8CEwN5l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9C8CEwN5l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9C8CEwN5l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9C8CEwN5l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9C8CEwN5l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9C8CEwN5l ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9C8CEwN5l .navbar-buttons {
  text-align: center;
}
.cid-s9C8CEwN5l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9C8CEwN5l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9C8CEwN5l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9C8CEwN5l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9C8CEwN5l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9C8CEwN5l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9C8CEwN5l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9C8CEwN5l nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9C8CEwN5l nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9C8CEwN5l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9C8CEwN5l .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9C8CEwN5l a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9C8CEwN5l .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9C8CEwN5l .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9C8CEwN5l .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9C8CEwN5l .navbar {
    height: 77px;
  }
  .cid-s9C8CEwN5l .navbar.opened {
    height: auto;
  }
  .cid-s9C8CEwN5l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9C8CFuiED {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-s9C8CFuiED .title-align {
  width: 100%;
}
.cid-s9C8CFuiED .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-s9C8CFuiED .img-col img {
  z-index: 2;
  position: relative;
}
.cid-s9C8CFuiED .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s9C8CFuiED .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-s9C8CFuiED .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-s9C8CFuiED .price-wrap {
  margin-left: 3rem;
}
.cid-s9C8CFuiED .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-s9C8CFuiED .item-first {
  margin-left: 0!important;
}
.cid-s9C8CFuiED H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-s9C8CFuiED H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-s9C8CFuiED img {
  margin: auto;
  max-width: 500px;
}
.cid-s9C8CFuiED .mbr-section-subtitle,
.cid-s9C8CFuiED .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-s9C8CFuiED .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9C8CFuiED H2:before {
    content: none;
  }
  .cid-s9C8CFuiED .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-s9C8CFuiED .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-s9C8CFuiED .pricebox {
    margin-right: 0rem;
  }
  .cid-s9C8CFuiED .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-s9C9iSlGNn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s9C9iSlGNn h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-s9C9iSlGNn .mbr-section-subtitle {
  color: #767676;
}
.cid-s9C9iSlGNn .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-s9C9iSlGNn .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-s9C9iSlGNn .article-counter-left {
  color: #4f4943;
}
.cid-s9C9iSlGNn .article-counter-right {
  color: #4f4943;
}
.cid-s9C8CJcZ9v {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9C8CJcZ9v .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9CaKQihVz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9CaKQihVz .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9CaKQihVz .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9CaKQihVz .dropdown-item {
  color: #000000 !important;
}
.cid-s9CaKQihVz .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9CaKQihVz .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9CaKQihVz .nav-link:hover {
  color: #efefef !important;
}
.cid-s9CaKQihVz .btn-white {
  color: #149dcc !important;
}
.cid-s9CaKQihVz .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9CaKQihVz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9CaKQihVz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9CaKQihVz .container {
  display: flex;
  margin: auto;
}
.cid-s9CaKQihVz .navbar.navbar-short .nav-link,
.cid-s9CaKQihVz .navbar.navbar-short .navbar-caption,
.cid-s9CaKQihVz .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9CaKQihVz .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9CaKQihVz .navbar-caption {
  padding-right: 3rem;
}
.cid-s9CaKQihVz .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9CaKQihVz .nav-item:focus,
.cid-s9CaKQihVz .nav-link:focus {
  outline: none;
}
.cid-s9CaKQihVz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9CaKQihVz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9CaKQihVz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9CaKQihVz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9CaKQihVz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9CaKQihVz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9CaKQihVz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9CaKQihVz .navbar.opened {
  transition: all .3s;
}
.cid-s9CaKQihVz .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9CaKQihVz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9CaKQihVz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9CaKQihVz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9CaKQihVz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9CaKQihVz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9CaKQihVz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9CaKQihVz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9CaKQihVz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9CaKQihVz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9CaKQihVz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9CaKQihVz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9CaKQihVz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9CaKQihVz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9CaKQihVz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9CaKQihVz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9CaKQihVz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9CaKQihVz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9CaKQihVz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9CaKQihVz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9CaKQihVz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9CaKQihVz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9CaKQihVz .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9CaKQihVz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9CaKQihVz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9CaKQihVz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9CaKQihVz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9CaKQihVz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9CaKQihVz .dropdown-item.active,
.cid-s9CaKQihVz .dropdown-item:active {
  background-color: transparent;
}
.cid-s9CaKQihVz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9CaKQihVz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9CaKQihVz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9CaKQihVz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9CaKQihVz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9CaKQihVz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9CaKQihVz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9CaKQihVz .navbar-buttons {
  text-align: center;
}
.cid-s9CaKQihVz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9CaKQihVz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9CaKQihVz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9CaKQihVz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9CaKQihVz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9CaKQihVz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9CaKQihVz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9CaKQihVz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9CaKQihVz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9CaKQihVz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9CaKQihVz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9CaKQihVz a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9CaKQihVz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9CaKQihVz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9CaKQihVz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9CaKQihVz .navbar {
    height: 77px;
  }
  .cid-s9CaKQihVz .navbar.opened {
    height: auto;
  }
  .cid-s9CaKQihVz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9CaKRdEpp {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-s9CaKRdEpp .title-align {
  width: 100%;
}
.cid-s9CaKRdEpp .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-s9CaKRdEpp .img-col img {
  z-index: 2;
  position: relative;
}
.cid-s9CaKRdEpp .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s9CaKRdEpp .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-s9CaKRdEpp .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-s9CaKRdEpp .price-wrap {
  margin-left: 3rem;
}
.cid-s9CaKRdEpp .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-s9CaKRdEpp .item-first {
  margin-left: 0!important;
}
.cid-s9CaKRdEpp H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-s9CaKRdEpp H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-s9CaKRdEpp img {
  margin: auto;
  max-width: 500px;
}
.cid-s9CaKRdEpp .mbr-section-subtitle,
.cid-s9CaKRdEpp .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-s9CaKRdEpp .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9CaKRdEpp H2:before {
    content: none;
  }
  .cid-s9CaKRdEpp .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-s9CaKRdEpp .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-s9CaKRdEpp .pricebox {
    margin-right: 0rem;
  }
  .cid-s9CaKRdEpp .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-s9CaKRVxIR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s9CaKRVxIR h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-s9CaKRVxIR .mbr-section-subtitle {
  color: #767676;
}
.cid-s9CaKRVxIR .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-s9CaKRVxIR .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-s9CaKRVxIR .article-counter-left {
  color: #4f4943;
}
.cid-s9CaKRVxIR .article-counter-right {
  color: #4f4943;
}
.cid-s9CbHmJrJX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9CbHmJrJX .container-fluid {
  padding: 0 3rem;
}
.cid-s9CbHmJrJX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #efefef 120%);
  display: inline-block;
}
.cid-s9CbHmJrJX .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-s9CbHmJrJX .header-text {
  padding: 2rem 1rem !important;
}
.cid-s9CbHmJrJX .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-s9CbHmJrJX .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-s9CbHmJrJX .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-s9CbHmJrJX .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9CbHmJrJX .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-s9CbHmJrJX .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-s9CbHmJrJX .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9CbHmJrJX .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-s9CbHmJrJX .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-s9CbHmJrJX .container-fluid {
    padding: 0 1rem;
  }
  .cid-s9CbHmJrJX .header-text {
    padding: 1rem !important;
  }
  .cid-s9CbHmJrJX .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-s9CbHmJrJX .panel-body {
    width: calc(100% - 48px);
  }
  .cid-s9CbHmJrJX .panel-group {
    padding: 0;
  }
}
.cid-s9CbHmJrJX .header-text,
.cid-s9CbHmJrJX .sign {
  color: #232323;
}
.cid-s9CbHmJrJX .mbr-section-title,
.cid-s9CbHmJrJX .underline DIV {
  text-align: center;
}
.cid-s9CaKSwsfE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9CaKSwsfE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9Ccl2pFrZ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9Ccl2pFrZ .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9Ccl2pFrZ .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9Ccl2pFrZ .dropdown-item {
  color: #000000 !important;
}
.cid-s9Ccl2pFrZ .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9Ccl2pFrZ .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9Ccl2pFrZ .nav-link:hover {
  color: #efefef !important;
}
.cid-s9Ccl2pFrZ .btn-white {
  color: #149dcc !important;
}
.cid-s9Ccl2pFrZ .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9Ccl2pFrZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9Ccl2pFrZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9Ccl2pFrZ .container {
  display: flex;
  margin: auto;
}
.cid-s9Ccl2pFrZ .navbar.navbar-short .nav-link,
.cid-s9Ccl2pFrZ .navbar.navbar-short .navbar-caption,
.cid-s9Ccl2pFrZ .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9Ccl2pFrZ .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9Ccl2pFrZ .navbar-caption {
  padding-right: 3rem;
}
.cid-s9Ccl2pFrZ .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9Ccl2pFrZ .nav-item:focus,
.cid-s9Ccl2pFrZ .nav-link:focus {
  outline: none;
}
.cid-s9Ccl2pFrZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9Ccl2pFrZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9Ccl2pFrZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9Ccl2pFrZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9Ccl2pFrZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9Ccl2pFrZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9Ccl2pFrZ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9Ccl2pFrZ .navbar.opened {
  transition: all .3s;
}
.cid-s9Ccl2pFrZ .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9Ccl2pFrZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9Ccl2pFrZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9Ccl2pFrZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9Ccl2pFrZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9Ccl2pFrZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9Ccl2pFrZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9Ccl2pFrZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9Ccl2pFrZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9Ccl2pFrZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9Ccl2pFrZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9Ccl2pFrZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9Ccl2pFrZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9Ccl2pFrZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9Ccl2pFrZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9Ccl2pFrZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9Ccl2pFrZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9Ccl2pFrZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9Ccl2pFrZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9Ccl2pFrZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9Ccl2pFrZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9Ccl2pFrZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9Ccl2pFrZ .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9Ccl2pFrZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9Ccl2pFrZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9Ccl2pFrZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9Ccl2pFrZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9Ccl2pFrZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9Ccl2pFrZ .dropdown-item.active,
.cid-s9Ccl2pFrZ .dropdown-item:active {
  background-color: transparent;
}
.cid-s9Ccl2pFrZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9Ccl2pFrZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9Ccl2pFrZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9Ccl2pFrZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9Ccl2pFrZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9Ccl2pFrZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9Ccl2pFrZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9Ccl2pFrZ .navbar-buttons {
  text-align: center;
}
.cid-s9Ccl2pFrZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9Ccl2pFrZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9Ccl2pFrZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9Ccl2pFrZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9Ccl2pFrZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9Ccl2pFrZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9Ccl2pFrZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9Ccl2pFrZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9Ccl2pFrZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9Ccl2pFrZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9Ccl2pFrZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9Ccl2pFrZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9Ccl2pFrZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9Ccl2pFrZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9Ccl2pFrZ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9Ccl2pFrZ .navbar {
    height: 77px;
  }
  .cid-s9Ccl2pFrZ .navbar.opened {
    height: auto;
  }
  .cid-s9Ccl2pFrZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9Ccl3SSwS {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-s9Ccl3SSwS .title-align {
  width: 100%;
}
.cid-s9Ccl3SSwS .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-s9Ccl3SSwS .img-col img {
  z-index: 2;
  position: relative;
}
.cid-s9Ccl3SSwS .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s9Ccl3SSwS .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-s9Ccl3SSwS .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-s9Ccl3SSwS .price-wrap {
  margin-left: 3rem;
}
.cid-s9Ccl3SSwS .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-s9Ccl3SSwS .item-first {
  margin-left: 0!important;
}
.cid-s9Ccl3SSwS H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-s9Ccl3SSwS H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-s9Ccl3SSwS img {
  margin: auto;
  max-width: 500px;
}
.cid-s9Ccl3SSwS .mbr-section-subtitle,
.cid-s9Ccl3SSwS .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-s9Ccl3SSwS .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9Ccl3SSwS H2:before {
    content: none;
  }
  .cid-s9Ccl3SSwS .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-s9Ccl3SSwS .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-s9Ccl3SSwS .pricebox {
    margin-right: 0rem;
  }
  .cid-s9Ccl3SSwS .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-s9Ccl4El6a {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s9Ccl4El6a h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-s9Ccl4El6a .mbr-section-subtitle {
  color: #767676;
}
.cid-s9Ccl4El6a .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-s9Ccl4El6a .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-s9Ccl4El6a .article-counter-left {
  color: #4f4943;
}
.cid-s9Ccl4El6a .article-counter-right {
  color: #4f4943;
}
.cid-s9Ccl5uIIX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9Ccl5uIIX .container-fluid {
  padding: 0 3rem;
}
.cid-s9Ccl5uIIX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #efefef 120%);
  display: inline-block;
}
.cid-s9Ccl5uIIX .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-s9Ccl5uIIX .header-text {
  padding: 2rem 1rem !important;
}
.cid-s9Ccl5uIIX .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-s9Ccl5uIIX .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-s9Ccl5uIIX .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-s9Ccl5uIIX .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s9Ccl5uIIX .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-s9Ccl5uIIX .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-s9Ccl5uIIX .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s9Ccl5uIIX .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-s9Ccl5uIIX .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-s9Ccl5uIIX .container-fluid {
    padding: 0 1rem;
  }
  .cid-s9Ccl5uIIX .header-text {
    padding: 1rem !important;
  }
  .cid-s9Ccl5uIIX .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-s9Ccl5uIIX .panel-body {
    width: calc(100% - 48px);
  }
  .cid-s9Ccl5uIIX .panel-group {
    padding: 0;
  }
}
.cid-s9Ccl5uIIX .header-text,
.cid-s9Ccl5uIIX .sign {
  color: #232323;
}
.cid-s9Ccl5uIIX .mbr-section-title,
.cid-s9Ccl5uIIX .underline DIV {
  text-align: center;
}
.cid-s9Ccl6nO0j {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9Ccl6nO0j .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9Cds0BCJU .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9Cds0BCJU .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9Cds0BCJU .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9Cds0BCJU .dropdown-item {
  color: #000000 !important;
}
.cid-s9Cds0BCJU .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9Cds0BCJU .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9Cds0BCJU .nav-link:hover {
  color: #efefef !important;
}
.cid-s9Cds0BCJU .btn-white {
  color: #149dcc !important;
}
.cid-s9Cds0BCJU .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9Cds0BCJU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9Cds0BCJU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9Cds0BCJU .container {
  display: flex;
  margin: auto;
}
.cid-s9Cds0BCJU .navbar.navbar-short .nav-link,
.cid-s9Cds0BCJU .navbar.navbar-short .navbar-caption,
.cid-s9Cds0BCJU .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9Cds0BCJU .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9Cds0BCJU .navbar-caption {
  padding-right: 3rem;
}
.cid-s9Cds0BCJU .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9Cds0BCJU .nav-item:focus,
.cid-s9Cds0BCJU .nav-link:focus {
  outline: none;
}
.cid-s9Cds0BCJU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9Cds0BCJU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9Cds0BCJU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9Cds0BCJU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9Cds0BCJU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9Cds0BCJU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9Cds0BCJU .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9Cds0BCJU .navbar.opened {
  transition: all .3s;
}
.cid-s9Cds0BCJU .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9Cds0BCJU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9Cds0BCJU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9Cds0BCJU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9Cds0BCJU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9Cds0BCJU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9Cds0BCJU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9Cds0BCJU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9Cds0BCJU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9Cds0BCJU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9Cds0BCJU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9Cds0BCJU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9Cds0BCJU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9Cds0BCJU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9Cds0BCJU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9Cds0BCJU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9Cds0BCJU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9Cds0BCJU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9Cds0BCJU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9Cds0BCJU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9Cds0BCJU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9Cds0BCJU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9Cds0BCJU .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9Cds0BCJU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9Cds0BCJU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9Cds0BCJU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9Cds0BCJU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9Cds0BCJU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9Cds0BCJU .dropdown-item.active,
.cid-s9Cds0BCJU .dropdown-item:active {
  background-color: transparent;
}
.cid-s9Cds0BCJU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9Cds0BCJU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9Cds0BCJU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9Cds0BCJU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9Cds0BCJU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9Cds0BCJU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9Cds0BCJU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9Cds0BCJU .navbar-buttons {
  text-align: center;
}
.cid-s9Cds0BCJU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9Cds0BCJU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9Cds0BCJU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9Cds0BCJU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9Cds0BCJU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9Cds0BCJU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9Cds0BCJU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9Cds0BCJU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9Cds0BCJU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9Cds0BCJU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9Cds0BCJU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9Cds0BCJU a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9Cds0BCJU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9Cds0BCJU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9Cds0BCJU .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9Cds0BCJU .navbar {
    height: 77px;
  }
  .cid-s9Cds0BCJU .navbar.opened {
    height: auto;
  }
  .cid-s9Cds0BCJU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9Cds25ycj {
  overflow-x: hidden !important;
}
.cid-s9Cds25ycj,
.cid-s9Cds25ycj .scroll-wrapper {
  padding-top: 150px;
  padding-bottom: 75px;
}
.cid-s9Cds25ycj .mbr-section-title {
  color: #ffffff;
}
.cid-s9Cds25ycj .mbr-section-title span {
  color: #149dcc;
}
.cid-s9Cds25ycj .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-s9Cds25ycj .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/ztb6um-1920x385.jpg");
}
.cid-s9Cds25ycj .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-s9Cds25ycj .mbr-overlay {
  z-index: 1;
}
.cid-s9Cds25ycj .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-s9CdC0227W {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9CdC0227W .card:hover .item-content {
  box-shadow: 0 30px 100px 0 rgba(0, 0, 0, 0.13);
}
.cid-s9CdC0227W .logo {
  max-width: 80px;
  width: 100%;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-s9CdC0227W .center {
  box-shadow: 0 30px 100px 0 rgba(0, 0, 0, 0.13);
}
.cid-s9CdC0227W .item-content {
  height: 100%;
  z-index: 99;
  transition: all 0.3s;
  padding: 3rem 2rem;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.cid-s9CdC0227W .border1 {
  border-bottom: 2px dotted lightgray;
}
.cid-s9CdC0227W .wrapper {
  display: flex;
  justify-content: space-between;
  padding: 16px 0px;
}
.cid-s9CdC0227W .icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.cid-s9CdC0227W .icon-wrap span {
  margin-right: 14px;
  margin-top: 4px;
  font-size: 1.2rem;
  color: #149dcc;
}
.cid-s9CdC0227W .bigicon {
  color: #149dcc;
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-s9CdC0227W .item-content {
    padding: 3rem 1rem;
  }
}
.cid-s9CdC0227W .mbr-text,
.cid-s9CdC0227W .mbr-section-btn {
  color: #808080;
}
.cid-s9CdC0227W .location,
.cid-s9CdC0227W .icon-wrap {
  color: #149dcc;
}
.cid-s9CdC0227W H3 {
  color: #29361a;
}
.cid-s9CdOENJRg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s9CdOENJRg .google-map {
  height: 25rem;
  position: relative;
}
.cid-s9CdOENJRg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-s9CdOENJRg .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-s9CdOENJRg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-s9CdOENJRg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-s9CdOENJRg .container-fluid {
  padding: 0;
}
.cid-s9CdOENJRg .relative {
  position: relative;
  width: 100%;
}
.cid-s9CdOENJRg .mbr-section-title {
  color: #656565;
}
.cid-s9CdOENJRg .block {
  background: rgba(50, 50, 50, 0.8);
  position: absolute;
  padding: 2rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  width: 400px;
  height: 100%;
  top: 0;
  right: 0;
}
.cid-s9CdOENJRg .line {
  height: 3px;
  width: 60px;
  background: #ffffff;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.cid-s9CdOENJRg .title {
  text-align: center;
  color: #ffffff;
}
.cid-s9CdOENJRg .text {
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .cid-s9CdOENJRg .block {
    position: relative;
    width: 100%;
    height: auto;
    padding: 6rem 2rem;
  }
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-s9Cf4zhSio .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9Cf4zhSio .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-s9Cf4zhSio .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-s9Cf4zhSio .dropdown-item {
  color: #000000 !important;
}
.cid-s9Cf4zhSio .dropdown-item:hover {
  color: #000000 !important;
}
.cid-s9Cf4zhSio .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-s9Cf4zhSio .nav-link:hover {
  color: #efefef !important;
}
.cid-s9Cf4zhSio .btn-white {
  color: #149dcc !important;
}
.cid-s9Cf4zhSio .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-s9Cf4zhSio .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s9Cf4zhSio .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s9Cf4zhSio .container {
  display: flex;
  margin: auto;
}
.cid-s9Cf4zhSio .navbar.navbar-short .nav-link,
.cid-s9Cf4zhSio .navbar.navbar-short .navbar-caption,
.cid-s9Cf4zhSio .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s9Cf4zhSio .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-s9Cf4zhSio .navbar-caption {
  padding-right: 3rem;
}
.cid-s9Cf4zhSio .navbar.opened {
  background: #0c57bf !important;
}
.cid-s9Cf4zhSio .nav-item:focus,
.cid-s9Cf4zhSio .nav-link:focus {
  outline: none;
}
.cid-s9Cf4zhSio .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9Cf4zhSio .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9Cf4zhSio .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s9Cf4zhSio .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s9Cf4zhSio .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s9Cf4zhSio .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s9Cf4zhSio .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-s9Cf4zhSio .navbar.opened {
  transition: all .3s;
}
.cid-s9Cf4zhSio .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-s9Cf4zhSio .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s9Cf4zhSio .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s9Cf4zhSio .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s9Cf4zhSio .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-s9Cf4zhSio .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s9Cf4zhSio .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s9Cf4zhSio .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s9Cf4zhSio .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s9Cf4zhSio .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s9Cf4zhSio .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s9Cf4zhSio .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s9Cf4zhSio .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s9Cf4zhSio .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s9Cf4zhSio .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s9Cf4zhSio .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s9Cf4zhSio .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s9Cf4zhSio .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s9Cf4zhSio .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s9Cf4zhSio .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s9Cf4zhSio .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s9Cf4zhSio .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s9Cf4zhSio .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-s9Cf4zhSio .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s9Cf4zhSio .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s9Cf4zhSio .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s9Cf4zhSio .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s9Cf4zhSio .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s9Cf4zhSio .dropdown-item.active,
.cid-s9Cf4zhSio .dropdown-item:active {
  background-color: transparent;
}
.cid-s9Cf4zhSio .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s9Cf4zhSio .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s9Cf4zhSio .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s9Cf4zhSio .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-s9Cf4zhSio .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s9Cf4zhSio .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9Cf4zhSio ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s9Cf4zhSio .navbar-buttons {
  text-align: center;
}
.cid-s9Cf4zhSio button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9Cf4zhSio button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9Cf4zhSio button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9Cf4zhSio button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9Cf4zhSio button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9Cf4zhSio button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9Cf4zhSio nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9Cf4zhSio nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9Cf4zhSio nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9Cf4zhSio nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9Cf4zhSio .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s9Cf4zhSio a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s9Cf4zhSio .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s9Cf4zhSio .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s9Cf4zhSio .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s9Cf4zhSio .navbar {
    height: 77px;
  }
  .cid-s9Cf4zhSio .navbar.opened {
    height: auto;
  }
  .cid-s9Cf4zhSio .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s9Cf4Agb7s {
  overflow-x: hidden !important;
}
.cid-s9Cf4Agb7s,
.cid-s9Cf4Agb7s .scroll-wrapper {
  padding-top: 150px;
  padding-bottom: 75px;
}
.cid-s9Cf4Agb7s .mbr-section-title {
  color: #ffffff;
}
.cid-s9Cf4Agb7s .mbr-section-title span {
  color: #149dcc;
}
.cid-s9Cf4Agb7s .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-s9Cf4Agb7s .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/ztb6um-1920x385.jpg");
}
.cid-s9Cf4Agb7s .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-s9Cf4Agb7s .mbr-overlay {
  z-index: 1;
}
.cid-s9Cf4Agb7s .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-s9CffQhB7h {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s9CffQhB7h .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-scxft5FIO2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxft5FIO2 .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-scxft5FIO2 .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-scxft5FIO2 .dropdown-item {
  color: #000000 !important;
}
.cid-scxft5FIO2 .dropdown-item:hover {
  color: #000000 !important;
}
.cid-scxft5FIO2 .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-scxft5FIO2 .nav-link:hover {
  color: #efefef !important;
}
.cid-scxft5FIO2 .btn-white {
  color: #149dcc !important;
}
.cid-scxft5FIO2 .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-scxft5FIO2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-scxft5FIO2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-scxft5FIO2 .container {
  display: flex;
  margin: auto;
}
.cid-scxft5FIO2 .navbar.navbar-short .nav-link,
.cid-scxft5FIO2 .navbar.navbar-short .navbar-caption,
.cid-scxft5FIO2 .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-scxft5FIO2 .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-scxft5FIO2 .navbar-caption {
  padding-right: 3rem;
}
.cid-scxft5FIO2 .navbar.opened {
  background: #0c57bf !important;
}
.cid-scxft5FIO2 .nav-item:focus,
.cid-scxft5FIO2 .nav-link:focus {
  outline: none;
}
.cid-scxft5FIO2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxft5FIO2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-scxft5FIO2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-scxft5FIO2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxft5FIO2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-scxft5FIO2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-scxft5FIO2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-scxft5FIO2 .navbar.opened {
  transition: all .3s;
}
.cid-scxft5FIO2 .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-scxft5FIO2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-scxft5FIO2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-scxft5FIO2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-scxft5FIO2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-scxft5FIO2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-scxft5FIO2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-scxft5FIO2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-scxft5FIO2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-scxft5FIO2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-scxft5FIO2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-scxft5FIO2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-scxft5FIO2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-scxft5FIO2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-scxft5FIO2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-scxft5FIO2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-scxft5FIO2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-scxft5FIO2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-scxft5FIO2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-scxft5FIO2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-scxft5FIO2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-scxft5FIO2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-scxft5FIO2 .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-scxft5FIO2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-scxft5FIO2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-scxft5FIO2 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-scxft5FIO2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-scxft5FIO2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-scxft5FIO2 .dropdown-item.active,
.cid-scxft5FIO2 .dropdown-item:active {
  background-color: transparent;
}
.cid-scxft5FIO2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-scxft5FIO2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-scxft5FIO2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-scxft5FIO2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-scxft5FIO2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-scxft5FIO2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-scxft5FIO2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-scxft5FIO2 .navbar-buttons {
  text-align: center;
}
.cid-scxft5FIO2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-scxft5FIO2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-scxft5FIO2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-scxft5FIO2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-scxft5FIO2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-scxft5FIO2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-scxft5FIO2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxft5FIO2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-scxft5FIO2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-scxft5FIO2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxft5FIO2 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-scxft5FIO2 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scxft5FIO2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-scxft5FIO2 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-scxft5FIO2 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-scxft5FIO2 .navbar {
    height: 77px;
  }
  .cid-scxft5FIO2 .navbar.opened {
    height: auto;
  }
  .cid-scxft5FIO2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-scxft6hsxP {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-scxft6hsxP .title-align {
  width: 100%;
}
.cid-scxft6hsxP .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-scxft6hsxP .img-col img {
  z-index: 2;
  position: relative;
}
.cid-scxft6hsxP .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-scxft6hsxP .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-scxft6hsxP .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-scxft6hsxP .price-wrap {
  margin-left: 3rem;
}
.cid-scxft6hsxP .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-scxft6hsxP .item-first {
  margin-left: 0!important;
}
.cid-scxft6hsxP H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-scxft6hsxP H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-scxft6hsxP img {
  margin: auto;
  max-width: 500px;
}
.cid-scxft6hsxP .mbr-section-subtitle,
.cid-scxft6hsxP .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-scxft6hsxP .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-scxft6hsxP H2:before {
    content: none;
  }
  .cid-scxft6hsxP .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-scxft6hsxP .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-scxft6hsxP .pricebox {
    margin-right: 0rem;
  }
  .cid-scxft6hsxP .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-scxft6KdqW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-scxft6KdqW h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-scxft6KdqW .mbr-section-subtitle {
  color: #767676;
}
.cid-scxft6KdqW .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-scxft6KdqW .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-scxft6KdqW .article-counter-left {
  color: #4f4943;
}
.cid-scxft6KdqW .article-counter-right {
  color: #4f4943;
}
.cid-scxft7oPVG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-scxft7oPVG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxft7YA6g {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxft7YA6g .col + .mbr-section-btn .btn,
  .cid-scxft7YA6g .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxft7YA6g .dragArea > *:nth-last-child(2).col,
  .cid-scxft7YA6g .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxft7YA6g .col + .mbr-section-btn,
  .cid-scxft7YA6g .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxft7YA6g .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxft7YA6g .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxft7YA6g .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxft7YA6g .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxft7YA6g .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxft7YA6g .subtext-1,
.cid-scxft7YA6g .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxft7YA6g .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxft7YA6g .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxft7YA6g .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxft7YA6g .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxft7YA6g .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxft7YA6g .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxft7YA6g .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxft7YA6g .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxft7YA6g .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxft7YA6g .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxft7YA6g .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxft7YA6g .form-group {
  max-width: 400px;
}
.cid-scxft7YA6g .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxft7YA6g .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxft7YA6g .form-row {
    justify-content: center;
  }
  .cid-scxft7YA6g .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxft7YA6g .subtext-1,
  .cid-scxft7YA6g .subtext-2,
  .cid-scxft7YA6g .card-support {
    text-align: center;
  }
  .cid-scxft7YA6g .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxft7YA6g .form-text {
    text-align: center;
  }
  .cid-scxft7YA6g .follow-section {
    margin: 0;
  }
  .cid-scxft7YA6g .mbr-form {
    text-align: center;
  }
  .cid-scxft7YA6g .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxft7YA6g .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxft7YA6g .firstColumn,
  .cid-scxft7YA6g .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxft7YA6g .form-row {
    flex-direction: column;
  }
}
.cid-scxft7YA6g LI {
  color: #ffffff;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-scxh12IZI7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxh12IZI7 .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-scxh12IZI7 .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-scxh12IZI7 .dropdown-item {
  color: #000000 !important;
}
.cid-scxh12IZI7 .dropdown-item:hover {
  color: #000000 !important;
}
.cid-scxh12IZI7 .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-scxh12IZI7 .nav-link:hover {
  color: #efefef !important;
}
.cid-scxh12IZI7 .btn-white {
  color: #149dcc !important;
}
.cid-scxh12IZI7 .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-scxh12IZI7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-scxh12IZI7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-scxh12IZI7 .container {
  display: flex;
  margin: auto;
}
.cid-scxh12IZI7 .navbar.navbar-short .nav-link,
.cid-scxh12IZI7 .navbar.navbar-short .navbar-caption,
.cid-scxh12IZI7 .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-scxh12IZI7 .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-scxh12IZI7 .navbar-caption {
  padding-right: 3rem;
}
.cid-scxh12IZI7 .navbar.opened {
  background: #0c57bf !important;
}
.cid-scxh12IZI7 .nav-item:focus,
.cid-scxh12IZI7 .nav-link:focus {
  outline: none;
}
.cid-scxh12IZI7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxh12IZI7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-scxh12IZI7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-scxh12IZI7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxh12IZI7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-scxh12IZI7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-scxh12IZI7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-scxh12IZI7 .navbar.opened {
  transition: all .3s;
}
.cid-scxh12IZI7 .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-scxh12IZI7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-scxh12IZI7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-scxh12IZI7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-scxh12IZI7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-scxh12IZI7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-scxh12IZI7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-scxh12IZI7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-scxh12IZI7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-scxh12IZI7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-scxh12IZI7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-scxh12IZI7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-scxh12IZI7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-scxh12IZI7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-scxh12IZI7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-scxh12IZI7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-scxh12IZI7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-scxh12IZI7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-scxh12IZI7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-scxh12IZI7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-scxh12IZI7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-scxh12IZI7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-scxh12IZI7 .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-scxh12IZI7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-scxh12IZI7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-scxh12IZI7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-scxh12IZI7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-scxh12IZI7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-scxh12IZI7 .dropdown-item.active,
.cid-scxh12IZI7 .dropdown-item:active {
  background-color: transparent;
}
.cid-scxh12IZI7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-scxh12IZI7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-scxh12IZI7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-scxh12IZI7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-scxh12IZI7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-scxh12IZI7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-scxh12IZI7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-scxh12IZI7 .navbar-buttons {
  text-align: center;
}
.cid-scxh12IZI7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-scxh12IZI7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-scxh12IZI7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-scxh12IZI7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-scxh12IZI7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-scxh12IZI7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-scxh12IZI7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxh12IZI7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-scxh12IZI7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-scxh12IZI7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxh12IZI7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-scxh12IZI7 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scxh12IZI7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-scxh12IZI7 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-scxh12IZI7 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-scxh12IZI7 .navbar {
    height: 77px;
  }
  .cid-scxh12IZI7 .navbar.opened {
    height: auto;
  }
  .cid-scxh12IZI7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-scxh13mFXA {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-scxh13mFXA .title-align {
  width: 100%;
}
.cid-scxh13mFXA .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-scxh13mFXA .img-col img {
  z-index: 2;
  position: relative;
}
.cid-scxh13mFXA .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-scxh13mFXA .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-scxh13mFXA .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-scxh13mFXA .price-wrap {
  margin-left: 3rem;
}
.cid-scxh13mFXA .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-scxh13mFXA .item-first {
  margin-left: 0!important;
}
.cid-scxh13mFXA H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-scxh13mFXA H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-scxh13mFXA img {
  margin: auto;
  max-width: 500px;
}
.cid-scxh13mFXA .mbr-section-subtitle,
.cid-scxh13mFXA .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-scxh13mFXA .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-scxh13mFXA H2:before {
    content: none;
  }
  .cid-scxh13mFXA .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-scxh13mFXA .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-scxh13mFXA .pricebox {
    margin-right: 0rem;
  }
  .cid-scxh13mFXA .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-scxh13JdVm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-scxh13JdVm h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-scxh13JdVm .mbr-section-subtitle {
  color: #767676;
}
.cid-scxh13JdVm .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-scxh13JdVm .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-scxh13JdVm .article-counter-left {
  color: #4f4943;
}
.cid-scxh13JdVm .article-counter-right {
  color: #4f4943;
}
.cid-scxh141tOe {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-scxh141tOe .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-scxi8aps3v .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxi8aps3v .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-scxi8aps3v .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-scxi8aps3v .dropdown-item {
  color: #000000 !important;
}
.cid-scxi8aps3v .dropdown-item:hover {
  color: #000000 !important;
}
.cid-scxi8aps3v .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-scxi8aps3v .nav-link:hover {
  color: #efefef !important;
}
.cid-scxi8aps3v .btn-white {
  color: #149dcc !important;
}
.cid-scxi8aps3v .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-scxi8aps3v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-scxi8aps3v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-scxi8aps3v .container {
  display: flex;
  margin: auto;
}
.cid-scxi8aps3v .navbar.navbar-short .nav-link,
.cid-scxi8aps3v .navbar.navbar-short .navbar-caption,
.cid-scxi8aps3v .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-scxi8aps3v .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-scxi8aps3v .navbar-caption {
  padding-right: 3rem;
}
.cid-scxi8aps3v .navbar.opened {
  background: #0c57bf !important;
}
.cid-scxi8aps3v .nav-item:focus,
.cid-scxi8aps3v .nav-link:focus {
  outline: none;
}
.cid-scxi8aps3v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxi8aps3v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-scxi8aps3v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-scxi8aps3v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxi8aps3v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-scxi8aps3v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-scxi8aps3v .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-scxi8aps3v .navbar.opened {
  transition: all .3s;
}
.cid-scxi8aps3v .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-scxi8aps3v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-scxi8aps3v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-scxi8aps3v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-scxi8aps3v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-scxi8aps3v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-scxi8aps3v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-scxi8aps3v .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-scxi8aps3v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-scxi8aps3v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-scxi8aps3v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-scxi8aps3v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-scxi8aps3v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-scxi8aps3v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-scxi8aps3v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-scxi8aps3v .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-scxi8aps3v .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-scxi8aps3v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-scxi8aps3v .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-scxi8aps3v .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-scxi8aps3v .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-scxi8aps3v .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-scxi8aps3v .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-scxi8aps3v .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-scxi8aps3v .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-scxi8aps3v .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-scxi8aps3v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-scxi8aps3v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-scxi8aps3v .dropdown-item.active,
.cid-scxi8aps3v .dropdown-item:active {
  background-color: transparent;
}
.cid-scxi8aps3v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-scxi8aps3v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-scxi8aps3v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-scxi8aps3v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-scxi8aps3v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-scxi8aps3v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-scxi8aps3v ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-scxi8aps3v .navbar-buttons {
  text-align: center;
}
.cid-scxi8aps3v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-scxi8aps3v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-scxi8aps3v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-scxi8aps3v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-scxi8aps3v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-scxi8aps3v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-scxi8aps3v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxi8aps3v nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-scxi8aps3v nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-scxi8aps3v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxi8aps3v .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-scxi8aps3v a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scxi8aps3v .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-scxi8aps3v .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-scxi8aps3v .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-scxi8aps3v .navbar {
    height: 77px;
  }
  .cid-scxi8aps3v .navbar.opened {
    height: auto;
  }
  .cid-scxi8aps3v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-scxi8aU9i4 {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-scxi8aU9i4 .title-align {
  width: 100%;
}
.cid-scxi8aU9i4 .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-scxi8aU9i4 .img-col img {
  z-index: 2;
  position: relative;
}
.cid-scxi8aU9i4 .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-scxi8aU9i4 .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-scxi8aU9i4 .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-scxi8aU9i4 .price-wrap {
  margin-left: 3rem;
}
.cid-scxi8aU9i4 .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-scxi8aU9i4 .item-first {
  margin-left: 0!important;
}
.cid-scxi8aU9i4 H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-scxi8aU9i4 H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-scxi8aU9i4 img {
  margin: auto;
  max-width: 500px;
}
.cid-scxi8aU9i4 .mbr-section-subtitle,
.cid-scxi8aU9i4 .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-scxi8aU9i4 .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-scxi8aU9i4 H2:before {
    content: none;
  }
  .cid-scxi8aU9i4 .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-scxi8aU9i4 .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-scxi8aU9i4 .pricebox {
    margin-right: 0rem;
  }
  .cid-scxi8aU9i4 .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-scxi8bnPhf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-scxi8bnPhf h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-scxi8bnPhf .mbr-section-subtitle {
  color: #767676;
}
.cid-scxi8bnPhf .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-scxi8bnPhf .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-scxi8bnPhf .article-counter-left {
  color: #4f4943;
}
.cid-scxi8bnPhf .article-counter-right {
  color: #4f4943;
}
.cid-scxi8bE5ob {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-scxi8bE5ob .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-scxiKAfV0Q .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxiKAfV0Q .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-scxiKAfV0Q .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-scxiKAfV0Q .dropdown-item {
  color: #000000 !important;
}
.cid-scxiKAfV0Q .dropdown-item:hover {
  color: #000000 !important;
}
.cid-scxiKAfV0Q .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-scxiKAfV0Q .nav-link:hover {
  color: #efefef !important;
}
.cid-scxiKAfV0Q .btn-white {
  color: #149dcc !important;
}
.cid-scxiKAfV0Q .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-scxiKAfV0Q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-scxiKAfV0Q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-scxiKAfV0Q .container {
  display: flex;
  margin: auto;
}
.cid-scxiKAfV0Q .navbar.navbar-short .nav-link,
.cid-scxiKAfV0Q .navbar.navbar-short .navbar-caption,
.cid-scxiKAfV0Q .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-scxiKAfV0Q .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-scxiKAfV0Q .navbar-caption {
  padding-right: 3rem;
}
.cid-scxiKAfV0Q .navbar.opened {
  background: #0c57bf !important;
}
.cid-scxiKAfV0Q .nav-item:focus,
.cid-scxiKAfV0Q .nav-link:focus {
  outline: none;
}
.cid-scxiKAfV0Q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxiKAfV0Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-scxiKAfV0Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-scxiKAfV0Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxiKAfV0Q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-scxiKAfV0Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-scxiKAfV0Q .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-scxiKAfV0Q .navbar.opened {
  transition: all .3s;
}
.cid-scxiKAfV0Q .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-scxiKAfV0Q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-scxiKAfV0Q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-scxiKAfV0Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-scxiKAfV0Q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-scxiKAfV0Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-scxiKAfV0Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-scxiKAfV0Q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-scxiKAfV0Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-scxiKAfV0Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-scxiKAfV0Q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-scxiKAfV0Q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-scxiKAfV0Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-scxiKAfV0Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-scxiKAfV0Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-scxiKAfV0Q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-scxiKAfV0Q .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-scxiKAfV0Q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-scxiKAfV0Q .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-scxiKAfV0Q .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-scxiKAfV0Q .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-scxiKAfV0Q .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-scxiKAfV0Q .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-scxiKAfV0Q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-scxiKAfV0Q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-scxiKAfV0Q .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-scxiKAfV0Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-scxiKAfV0Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-scxiKAfV0Q .dropdown-item.active,
.cid-scxiKAfV0Q .dropdown-item:active {
  background-color: transparent;
}
.cid-scxiKAfV0Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-scxiKAfV0Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-scxiKAfV0Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-scxiKAfV0Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-scxiKAfV0Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-scxiKAfV0Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-scxiKAfV0Q ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-scxiKAfV0Q .navbar-buttons {
  text-align: center;
}
.cid-scxiKAfV0Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-scxiKAfV0Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-scxiKAfV0Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-scxiKAfV0Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-scxiKAfV0Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-scxiKAfV0Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-scxiKAfV0Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxiKAfV0Q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-scxiKAfV0Q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-scxiKAfV0Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxiKAfV0Q .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-scxiKAfV0Q a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scxiKAfV0Q .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-scxiKAfV0Q .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-scxiKAfV0Q .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-scxiKAfV0Q .navbar {
    height: 77px;
  }
  .cid-scxiKAfV0Q .navbar.opened {
    height: auto;
  }
  .cid-scxiKAfV0Q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-scxiKANzam {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-scxiKANzam .title-align {
  width: 100%;
}
.cid-scxiKANzam .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-scxiKANzam .img-col img {
  z-index: 2;
  position: relative;
}
.cid-scxiKANzam .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-scxiKANzam .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-scxiKANzam .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-scxiKANzam .price-wrap {
  margin-left: 3rem;
}
.cid-scxiKANzam .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-scxiKANzam .item-first {
  margin-left: 0!important;
}
.cid-scxiKANzam H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-scxiKANzam H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-scxiKANzam img {
  margin: auto;
  max-width: 500px;
}
.cid-scxiKANzam .mbr-section-subtitle,
.cid-scxiKANzam .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-scxiKANzam .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-scxiKANzam H2:before {
    content: none;
  }
  .cid-scxiKANzam .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-scxiKANzam .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-scxiKANzam .pricebox {
    margin-right: 0rem;
  }
  .cid-scxiKANzam .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-scxiKB9Jrg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-scxiKB9Jrg h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-scxiKB9Jrg .mbr-section-subtitle {
  color: #767676;
}
.cid-scxiKB9Jrg .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-scxiKB9Jrg .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-scxiKB9Jrg .article-counter-left {
  color: #4f4943;
}
.cid-scxiKB9Jrg .article-counter-right {
  color: #4f4943;
}
.cid-scxiKBARGH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-scxiKBARGH .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
.cid-scxjnGSZ0w .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxjnGSZ0w .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-scxjnGSZ0w .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-scxjnGSZ0w .dropdown-item {
  color: #000000 !important;
}
.cid-scxjnGSZ0w .dropdown-item:hover {
  color: #000000 !important;
}
.cid-scxjnGSZ0w .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-scxjnGSZ0w .nav-link:hover {
  color: #efefef !important;
}
.cid-scxjnGSZ0w .btn-white {
  color: #149dcc !important;
}
.cid-scxjnGSZ0w .btn:hover {
  border-color: #efefef !important;
  color: #efefef !important;
}
.cid-scxjnGSZ0w .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-scxjnGSZ0w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-scxjnGSZ0w .container {
  display: flex;
  margin: auto;
}
.cid-scxjnGSZ0w .navbar.navbar-short .nav-link,
.cid-scxjnGSZ0w .navbar.navbar-short .navbar-caption,
.cid-scxjnGSZ0w .navbar.navbar-short .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-scxjnGSZ0w .navbar.navbar-short .hamburger span {
  background: #ffffff !important;
}
.cid-scxjnGSZ0w .navbar-caption {
  padding-right: 3rem;
}
.cid-scxjnGSZ0w .navbar.opened {
  background: #0c57bf !important;
}
.cid-scxjnGSZ0w .nav-item:focus,
.cid-scxjnGSZ0w .nav-link:focus {
  outline: none;
}
.cid-scxjnGSZ0w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxjnGSZ0w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-scxjnGSZ0w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-scxjnGSZ0w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-scxjnGSZ0w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-scxjnGSZ0w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-scxjnGSZ0w .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0c57bf;
  background: none;
}
.cid-scxjnGSZ0w .navbar.opened {
  transition: all .3s;
}
.cid-scxjnGSZ0w .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-scxjnGSZ0w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-scxjnGSZ0w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-scxjnGSZ0w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-scxjnGSZ0w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-scxjnGSZ0w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-scxjnGSZ0w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-scxjnGSZ0w .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-scxjnGSZ0w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-scxjnGSZ0w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-scxjnGSZ0w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-scxjnGSZ0w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-scxjnGSZ0w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-scxjnGSZ0w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-scxjnGSZ0w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-scxjnGSZ0w .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-scxjnGSZ0w .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-scxjnGSZ0w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-scxjnGSZ0w .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-scxjnGSZ0w .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-scxjnGSZ0w .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-scxjnGSZ0w .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-scxjnGSZ0w .navbar.navbar-short {
  background: #0c57bf !important;
  min-height: 60px;
}
.cid-scxjnGSZ0w .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-scxjnGSZ0w .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-scxjnGSZ0w .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-scxjnGSZ0w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-scxjnGSZ0w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-scxjnGSZ0w .dropdown-item.active,
.cid-scxjnGSZ0w .dropdown-item:active {
  background-color: transparent;
}
.cid-scxjnGSZ0w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-scxjnGSZ0w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-scxjnGSZ0w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-scxjnGSZ0w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0c57bf;
}
.cid-scxjnGSZ0w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-scxjnGSZ0w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-scxjnGSZ0w ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-scxjnGSZ0w .navbar-buttons {
  text-align: center;
}
.cid-scxjnGSZ0w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-scxjnGSZ0w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-scxjnGSZ0w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-scxjnGSZ0w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-scxjnGSZ0w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-scxjnGSZ0w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-scxjnGSZ0w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxjnGSZ0w nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-scxjnGSZ0w nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-scxjnGSZ0w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scxjnGSZ0w .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-scxjnGSZ0w a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scxjnGSZ0w .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-scxjnGSZ0w .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-scxjnGSZ0w .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-scxjnGSZ0w .navbar {
    height: 77px;
  }
  .cid-scxjnGSZ0w .navbar.opened {
    height: auto;
  }
  .cid-scxjnGSZ0w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-scxjnHrypt {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #149dcc;
}
.cid-scxjnHrypt .title-align {
  width: 100%;
}
.cid-scxjnHrypt .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-scxjnHrypt .img-col img {
  z-index: 2;
  position: relative;
}
.cid-scxjnHrypt .mbr-iconfont {
  background: white;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  color: #e7272d;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-scxjnHrypt .list {
  display: flex;
  margin: 0;
  align-items: center;
}
.cid-scxjnHrypt .pricebox {
  position: relative;
  display: flex;
  background: #e7272d;
  justify-content: space-between;
  padding: 1rem;
  padding-right: 2.6rem;
}
.cid-scxjnHrypt .price-wrap {
  margin-left: 3rem;
}
.cid-scxjnHrypt .item {
  margin-left: 3rem;
  height: fit-content;
}
.cid-scxjnHrypt .item-first {
  margin-left: 0!important;
}
.cid-scxjnHrypt H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.cid-scxjnHrypt H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-scxjnHrypt img {
  margin: auto;
  max-width: 500px;
}
.cid-scxjnHrypt .mbr-section-subtitle,
.cid-scxjnHrypt .title-align {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-scxjnHrypt .pricebox {
    margin-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-scxjnHrypt H2:before {
    content: none;
  }
  .cid-scxjnHrypt .list {
    flex-direction: column;
    padding: 0;
    margin-left: 1.5rem;
    align-items: flex-start;
  }
  .cid-scxjnHrypt .item {
    margin-left: 0rem;
    width: 100%;
  }
  .cid-scxjnHrypt .pricebox {
    margin-right: 0rem;
  }
  .cid-scxjnHrypt .mbr-iconfont {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -45px;
  }
}
.cid-scxjnHUctW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-scxjnHUctW h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-scxjnHUctW .mbr-section-subtitle {
  color: #767676;
}
.cid-scxjnHUctW .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-scxjnHUctW .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-scxjnHUctW .article-counter-left {
  color: #4f4943;
}
.cid-scxjnHUctW .article-counter-right {
  color: #4f4943;
}
.cid-scxjnIaatu {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-scxjnIaatu .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-scxlv9RLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 501px) {
  .cid-scxlv9RLyy .col + .mbr-section-btn .btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn .btn {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col,
  .cid-scxlv9RLyy .dragArea > *:nth-last-child(2).col-auto,
  .cid-scxlv9RLyy .col + .mbr-section-btn,
  .cid-scxlv9RLyy .col-auto + .mbr-section-btn {
    margin: 0;
  }
}
.cid-scxlv9RLyy .follow-heading {
  padding-right: 4rem;
  color: #ffffff;
}
.cid-scxlv9RLyy .input-form {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.cid-scxlv9RLyy .social-media {
  margin-top: 1.5rem;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 4rem;
}
.cid-scxlv9RLyy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-scxlv9RLyy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-scxlv9RLyy .subtext-1,
.cid-scxlv9RLyy .subtext-2 {
  margin-bottom: .6rem;
}
.cid-scxlv9RLyy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #149dcc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-scxlv9RLyy .icon-transition span:hover {
  background-color: #e7272d;
}
.cid-scxlv9RLyy .card-support {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .card-support li {
  margin-right: .4rem;
  margin-bottom: .4rem;
  display: inline-block;
}
.cid-scxlv9RLyy .mbr-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-scxlv9RLyy .mbr-list li {
  margin-bottom: .25rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
.cid-scxlv9RLyy .mbr-form {
  margin-top: .5rem;
  clear: both;
  text-align: left;
}
.cid-scxlv9RLyy .form-control {
  font-size: .9rem;
  height: 3.5rem;
  border: 0px solid;
  border-radius: 5px;
  margin-right: .6rem;
  padding: .5rem 1rem;
  background-color: #efefef;
}
.cid-scxlv9RLyy .form-text {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-1 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .subtext-2 {
  color: #ffffff;
  text-align: left;
}
.cid-scxlv9RLyy .form-group {
  max-width: 400px;
}
.cid-scxlv9RLyy .column-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  word-break: break-word;
}
.cid-scxlv9RLyy .column-menu ul li {
  padding: .2rem 0;
}
@media (max-width: 991px) {
  .cid-scxlv9RLyy .form-row {
    justify-content: center;
  }
  .cid-scxlv9RLyy .social-media {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .subtext-1,
  .cid-scxlv9RLyy .subtext-2,
  .cid-scxlv9RLyy .card-support {
    text-align: center;
  }
  .cid-scxlv9RLyy .mbr-list {
    margin-top: 2rem;
    text-align: center;
  }
  .cid-scxlv9RLyy .form-text {
    text-align: center;
  }
  .cid-scxlv9RLyy .follow-section {
    margin: 0;
  }
  .cid-scxlv9RLyy .mbr-form {
    text-align: center;
  }
  .cid-scxlv9RLyy .social-media ul li {
    margin-right: .1rem;
  }
  .cid-scxlv9RLyy .follow-heading {
    padding: 0;
    text-align: center;
  }
  .cid-scxlv9RLyy .firstColumn,
  .cid-scxlv9RLyy .secondColumn {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cid-scxlv9RLyy .form-row {
    flex-direction: column;
  }
}
.cid-scxlv9RLyy LI {
  color: #ffffff;
}
