body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #0f7699 !important;
}
.bg-success {
  background-color: #2bc741 !important;
}
.bg-info {
  background-color: #a000b1 !important;
}
.bg-warning {
  background-color: #0f7699 !important;
}
.bg-danger {
  background-color: #ff8f33 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #a000b1 !important;
  border-color: #a000b1 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #5b0065 !important;
  border-color: #5b0065 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5b0065 !important;
  border-color: #5b0065 !important;
}
.btn-success,
.btn-success:active {
  background-color: #2bc741 !important;
  border-color: #2bc741 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #1d882c !important;
  border-color: #1d882c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1d882c !important;
  border-color: #1d882c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff8f33 !important;
  border-color: #ff8f33 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #e56800 !important;
  border-color: #e56800 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #e56800 !important;
  border-color: #e56800 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #062e3c;
  color: #062e3c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #0f7699;
  border-color: #0f7699;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #44004b;
  color: #44004b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #a000b1;
  border-color: #a000b1;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a000b1 !important;
  border-color: #a000b1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #197326;
  color: #197326;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #2bc741;
  border-color: #2bc741;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #2bc741 !important;
  border-color: #2bc741 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #062e3c;
  color: #062e3c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #0f7699;
  border-color: #0f7699;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #cc5c00;
  color: #cc5c00;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ff8f33;
  border-color: #ff8f33;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8f33 !important;
  border-color: #ff8f33 !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: #0f7699 !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #2bc741 !important;
}
.text-info {
  color: #a000b1 !important;
}
.text-warning {
  color: #0f7699 !important;
}
.text-danger {
  color: #ff8f33 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #062e3c !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #197326 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #44004b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #062e3c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cc5c00 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a000b1;
}
.alert-warning {
  background-color: #0f7699;
}
.alert-danger {
  background-color: #ff8f33;
}
.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-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0f7699;
  border-color: #0f7699;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0f7699;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3cbfec;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #8be698;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #eb31ff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #3cbfec;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #0f7699;
}
/* 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);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #0f7699;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #0f7699;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0f7699;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0f7699;
  border-bottom-color: #0f7699;
}
.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: #0f7699 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%230f7699' %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.3;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-szR6O2rpYW {
  display: flex;
  background-image: url("../../../assets/images/shutterstock-493599352-2000x1333.jpg");
}
.cid-szR6O2rpYW .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #adcde9);
}
.cid-szR6O2rpYW .mbr-section-title {
  margin: 0;
}
.cid-szR6O2rpYW .mbr-text {
  color: #efefef;
}
.cid-szR6O2rpYW .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-szR6O2rpYW .card-img {
  text-align: left;
}
.cid-szR6O2rpYW .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-szR6O2rpYW .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-szR6O2rpYW .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szR6O2rpYW .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-szR6O2rpYW .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-szR6O2rpYW .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-t2qhG3rvDT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t2qhG3rvDT h3 {
  font-weight: 300;
}
.cid-t2qhG3rvDT .card-img {
  width: initial;
}
.cid-t2qhG3rvDT .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-t2qhG3rvDT .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-t2qhG3rvDT .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t2qhG3rvDT .mbr-section-subtitle {
  color: #767676;
}
.cid-t2qhG3rvDT .mbr-text {
  color: #767676;
}
.cid-t2qhG3rvDT .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
}
.cid-t2qhG3rvDT .mbr-al-i-c {
  align-items: center;
}
.cid-sbWfVd31pT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2c3350;
}
.cid-sbWfVd31pT .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sbWfVd31pT .section-text {
  padding: 2rem 0;
}
.cid-sbWfVd31pT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sbWfVd31pT .inner-container {
    width: 100% !important;
  }
}
.cid-rSoqw5IqHf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rSoqw5IqHf .card-box {
  padding: 0 2rem;
}
.cid-rSoqw5IqHf .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rSoqw5IqHf .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-rSoqw5IqHf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-rSoqw5IqHf p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-rSoqw5IqHf .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-rSoqw5IqHf .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #b2ccd2;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rSoqw5IqHf .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rSoqw5IqHf .card-title {
  text-align: center;
}
.cid-rSonz8jsF8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSonz8jsF8 .mbr-text {
  color: #767676;
}
.cid-rSonz8jsF8 h4 {
  text-align: center;
}
.cid-rSonz8jsF8 p {
  text-align: center;
}
.cid-rSonz8jsF8 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rSonNv9PUj {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSonNv9PUj .mbr-text {
  color: #767676;
}
.cid-rSonNv9PUj h4 {
  text-align: center;
}
.cid-rSonNv9PUj p {
  text-align: center;
}
.cid-rSonNv9PUj .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tRWlYs8rBJ {
  background-image: url("../../../assets/images/cabecerasdaraia-1344x768.jpg");
}
.cid-tRWlYs8rBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRWlYs8rBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRWlYs8rBJ .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tRWlYs8rBJ .container-fluid {
    padding: 0 25px;
  }
}
.cid-tRWlYs8rBJ .container-fluid .row {
  padding: 0;
}
.cid-tRWlYs8rBJ .title-wrapper .image-wrapper {
  margin-bottom: 36px;
}
.cid-tRWlYs8rBJ .title-wrapper .image-wrapper img {
  width: 108px;
  height: 108px;
  display: inline;
}
.cid-tRWlYs8rBJ .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tRWlYs8rBJ .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-tRWlYs8rBJ .title-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-tRWlYs8rBJ .mbr-section-title {
  color: #ffffff;
}
.cid-tRWlYs8rBJ .mbr-text {
  color: #b6b6b6;
  text-align: center;
}
.cid-tRWlYs8rBJ .mbr-section-title,
.cid-tRWlYs8rBJ .mbr-section-btn,
.cid-tRWlYs8rBJ .image-wrapper {
  text-align: center;
}
.cid-uCJLDQA5Px {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uCJLDQA5Px .card-box {
  padding: 0 2rem;
}
.cid-uCJLDQA5Px .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uCJLDQA5Px .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-uCJLDQA5Px h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-uCJLDQA5Px p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-uCJLDQA5Px .mbr-text {
  color: #767676;
}
.cid-uCJLDQA5Px .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uCJLDQA5Px .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tg2b9UE4Qm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("");
}
.cid-tg2b9UE4Qm .row {
  flex-direction: row-reverse;
}
.cid-tg2b9UE4Qm .text-wrapper {
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-tg2b9UE4Qm .text-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1000px) {
  .cid-tg2b9UE4Qm .text-wrapper {
    padding: 2rem 0;
  }
}
.cid-tg2b9UE4Qm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tg2b9UE4Qm .text-block {
  color: #565A69;
  margin-bottom: 50px;
}
.cid-tg2b9UE4Qm .row.justify-content-between {
  margin-bottom: 3px;
  margin: 0;
}
.cid-tg2b9UE4Qm .mbr-section-btn {
  padding-top: 53px;
  margin: 0px;
}
.cid-tg2b9UE4Qm .desc {
  margin-top: 22px;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-tg2b9UE4Qm .btn-primary {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.cid-tg2b9UE4Qm .btn-primary:hover {
  color: #000000 !important;
  background-color: #e3e3e3 !important;
  border-color: #e3e3e3;
}
.cid-tg2b9UE4Qm .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.cid-tg2b9UE4Qm .desc1 {
  font-weight: 700;
  color: #ffffff;
}
.cid-tg2b9UE4Qm .desc2 {
  font-weight: 700;
  margin-top: 20px;
  color: #ffffff;
}
.cid-tg2b9UE4Qm .mbr-section-button {
  margin-top: 25px;
}
.cid-sk2dcmi7GP {
  background-color: #ffffff;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-sk2dcmi7GP H1 {
  color: #3f51b5;
}
.cid-sk2dcmi7GP .mbr-text,
.cid-sk2dcmi7GP .mbr-section-btn {
  color: #232323;
}
.cid-sk2dcmi7GP .img1 {
  box-shadow: 0 10px 55px 5px rgba(255, 102, 140, 0.35);
  border-radius: 10px;
}
.cid-sk2dcmi7GP .relative {
  position: relative;
}
.cid-sk2dcmi7GP .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-sk2dcmi7GP .card-img2 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-sk2dcmi7GP .card-img2 .img2 {
  width: 120%;
  left: -20%;
}
.cid-sk2dcmi7GP .card-img1 {
  display: inline-block;
  width: 50%;
}
.cid-sk2dcmi7GP .card-img1 .img1 {
  width: 180%;
}
.cid-sk2dcmi7GP .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 102, 140, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-sKYSDojm15 {
  padding-top: 1rem;
  margin: 0 auto;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sKYSDojm15 img {
  width: 120px;
  margin: auto;
}
.cid-sKYSDojm15 .card {
  transition: all 0.3s;
  height: fit-content;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sKYSDojm15 .card {
    max-width: 12.5%;
  }
}
.cid-sKYSDojm15 .mbr-section-title {
  color: #767676;
}
.cid-sqEbOEWOqB {
  background-image: url("../../../assets/images/chatbotem-2.png");
}
.cid-sqEbOEWOqB .column-content {
  padding-top: 180px;
  padding-bottom: 135px;
  background-color: #ffffff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-sqEbOEWOqB .text-content .btn-bgr {
  z-index: 0;
}
.cid-sqEbOEWOqB .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-sqEbOEWOqB .container-full-width {
  position: relative;
}
.cid-sqEbOEWOqB .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-sqEbOEWOqB .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-sqEbOEWOqB .layer path {
  fill: #ffffff;
}
@media (min-width: 576px) {
  .cid-sqEbOEWOqB .text-content {
    width: 540px;
  }
  .cid-sqEbOEWOqB .column-content {
    width: 100%;
  }
  .cid-sqEbOEWOqB .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-sqEbOEWOqB .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-sqEbOEWOqB .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-sqEbOEWOqB .column-content {
    width: 50%;
  }
  .cid-sqEbOEWOqB .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-sqEbOEWOqB .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqEbOEWOqB .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-sqEbOEWOqB .column-content {
    height: 33rem;
  }
}
.cid-sqEbOEWOqB .mbr-text,
.cid-sqEbOEWOqB .mbr-section-btn {
  color: #767676;
}
.cid-sHwQD88ZPz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sHwQD88ZPz .mbr-section-subtitle,
.cid-sHwQD88ZPz .mbr-text {
  color: #767676;
}
.cid-sHwQD88ZPz .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sHwQD88ZPz .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sHwQD88ZPz .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sHwQD88ZPz .card-wrapper .card-img .mbr-overlay {
  background-color: #b2ccd2;
  display: none;
  transition: opacity .3s;
}
.cid-sHwQD88ZPz .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-sHwQD88ZPz .card-wrapper .card-img img {
  width: 100%;
}
.cid-sHwQD88ZPz .card-wrapper .card-box {
  background-color: #b2ccd2;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sHwQD88ZPz .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sHwQD88ZPz .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sHwQD88ZPz .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sHwQD88ZPz .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sHwQD88ZPz .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-sHwQD88ZPz .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-sHwQD88ZPz .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-sHwQD88ZPz .mbr-section-title {
  color: #232323;
}
.cid-sHwUXRYKsF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sHwUXRYKsF .mbr-section-subtitle,
.cid-sHwUXRYKsF .mbr-text {
  color: #767676;
}
.cid-sHwUXRYKsF .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sHwUXRYKsF .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sHwUXRYKsF .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sHwUXRYKsF .card-wrapper .card-img .mbr-overlay {
  background-color: #b2ccd2;
  display: none;
  transition: opacity .3s;
}
.cid-sHwUXRYKsF .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  left: 0;
  top: 50%;
  height: auto;
  transform: translateY(-50%);
}
.cid-sHwUXRYKsF .card-wrapper .card-img img {
  width: 100%;
}
.cid-sHwUXRYKsF .card-wrapper .card-box {
  background-color: #b2ccd2;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sHwUXRYKsF .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sHwUXRYKsF .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sHwUXRYKsF .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sHwUXRYKsF .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sHwUXRYKsF .card-img .mbr-section-btn {
  opacity: 0;
}
.cid-sHwUXRYKsF .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-sHwUXRYKsF .card-img:hover .mbr-section-btn {
  opacity: 1;
}
.cid-t25mqcXa1d {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/background14.jpg");
}
.cid-t25mqcXa1d .mbr-overlay {
  background: #879a9f;
}
.cid-t25mqcXa1d .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
}
.cid-t25mqcXa1d .mbr-section-subtitle {
  color: #232323;
}
.cid-sqzqdvW3H8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sqzqdvW3H8 h4 {
  display: flex;
  letter-spacing: 0.03em;
  color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqzqdvW3H8 .panel-text {
  letter-spacing: 0.03em;
  color: #232323;
}
.cid-sqzqdvW3H8 .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sqzqdvW3H8 .mbr-section-subtitle {
  letter-spacing: 0.03em;
  font-weight: 500;
}
.cid-sqzqdvW3H8 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sqzqdvW3H8 .panel-group {
  width: 100%;
}
.cid-sqzqdvW3H8 .card {
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-sqzqdvW3H8 .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
}
.cid-sqzqdvW3H8 .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ff8f33;
  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;
}
.cid-sqzqdvW3H8 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sqzqdvW3H8 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sqzqdvW3H8 .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-sqzqdvW3H8 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-sqzqdvW3H8 .card .panel-body {
  background: #ffffff;
}
.cid-sqzqdvW3H8 .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sqzqdvW3H8 .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqzqdvW3H8 .sign {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sqzqdvW3H8 .media-container-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sqzqdvW3H8 .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sqzqdvW3H8 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.cid-tg2bl18hb5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tg2bl18hb5 .mbr-section-title {
  color: #06182d;
}
.cid-tg2bl18hb5 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tg2bl18hb5 .mbr-section-subtitle {
  color: #06182d;
}
.cid-tg2bl18hb5 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tg2bl18hb5 .mbr-section-text {
  color: #999999;
}
.cid-tg2bl18hb5 .carousel-control {
  background: #000;
  opacity: 0.2;
}
.cid-tg2bl18hb5 .carousel {
  width: 85%;
  margin: auto;
}
.cid-tg2bl18hb5 .carousel-item {
  justify-content: center;
}
.cid-tg2bl18hb5 .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-tg2bl18hb5 .carousel-item .wrap-img {
  text-align: center;
}
.cid-tg2bl18hb5 .carousel-item .wrap-img img {
  transition: all 0.3s;
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-tg2bl18hb5 .carousel-controls {
  display: flex;
  justify-content: center;
}
.cid-tg2bl18hb5 .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-tg2bl18hb5 .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-tg2bl18hb5 .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-tg2bl18hb5 .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-tg2bl18hb5 .cloneditem-1,
.cid-tg2bl18hb5 .cloneditem-2,
.cid-tg2bl18hb5 .cloneditem-3,
.cid-tg2bl18hb5 .cloneditem-4,
.cid-tg2bl18hb5 .cloneditem-5 {
  display: none;
}
.cid-tg2bl18hb5 .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tg2bl18hb5 .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-tg2bl18hb5 .carousel-inner {
    opacity: 0.8;
  }
  .cid-tg2bl18hb5 .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides2 .cloneditem-1,
  .cid-tg2bl18hb5 .carousel-inner.slides2 .cloneditem-2,
  .cid-tg2bl18hb5 .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-tg2bl18hb5 .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides3 .cloneditem-1,
  .cid-tg2bl18hb5 .carousel-inner.slides3 .cloneditem-2,
  .cid-tg2bl18hb5 .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-tg2bl18hb5 .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(25%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-25%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides4 .cloneditem-1,
  .cid-tg2bl18hb5 .carousel-inner.slides4 .cloneditem-2,
  .cid-tg2bl18hb5 .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-tg2bl18hb5 .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(20%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-20%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides5 .cloneditem-1,
  .cid-tg2bl18hb5 .carousel-inner.slides5 .cloneditem-2,
  .cid-tg2bl18hb5 .carousel-inner.slides5 .cloneditem-3,
  .cid-tg2bl18hb5 .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-tg2bl18hb5 .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-tg2bl18hb5 .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tg2bl18hb5 .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-tg2bl18hb5 .carousel-inner.slides6 .cloneditem-1,
  .cid-tg2bl18hb5 .carousel-inner.slides6 .cloneditem-2,
  .cid-tg2bl18hb5 .carousel-inner.slides6 .cloneditem-3,
  .cid-tg2bl18hb5 .carousel-inner.slides6 .cloneditem-4,
  .cid-tg2bl18hb5 .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-tg2bl18hb5 .carousel-control-prev {
  position: absolute !important;
  left: -50px !important;
}
.cid-tg2bl18hb5 .carousel-control-next {
  position: absolute !important;
  right: -50px !important;
}
@media (max-width: 576px) {
  .cid-tg2bl18hb5 .carousel-control-prev {
    left: -10px !important;
  }
  .cid-tg2bl18hb5 .carousel-control-next {
    right: -10px !important;
  }
}
.cid-sFh7KonLTF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sFh7KonLTF .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sFh7KonLTF .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sFh7KonLTF .col + .mbr-section-btn .btn,
.cid-sFh7KonLTF .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sFh7KonLTF .col + .mbr-section-btn .btn,
  .cid-sFh7KonLTF .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sFh7KonLTF .dragArea > *:nth-last-child(2).col,
  .cid-sFh7KonLTF .dragArea > *:nth-last-child(2).col-auto,
  .cid-sFh7KonLTF .col + .mbr-section-btn,
  .cid-sFh7KonLTF .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sFh7KonLTF .dragArea {
    flex-direction: column;
  }
}
.cid-sFh7KonLTF .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sFh7KonLTF .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sFh7KonLTF .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sFh7KonLTF .form-group {
  max-width: 220px;
}
.cid-sFh7KonLTF .mbr-section-btn {
  padding-left: 0;
}
.cid-sFh7KonLTF .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sFh7KonLTF .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sFh7KonLTF .mbr-text {
  color: #444;
}
.cid-sFh7KonLTF h5 {
  margin-bottom: 0;
}
.cid-sFh7KonLTF .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sFh7KonLTF .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sFh7KonLTF .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sFh7KonLTF .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFh7KonLTF .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sFh7KonLTF .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sFh7KonLTF .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sFh7KonLTF .social-list a:hover {
  opacity: 0.4;
}
.cid-sFh7KonLTF .media-container-row > div {
  padding: 0px;
}
.cid-sFh7KonLTF .text2 {
  color: #0f7699;
  text-align: left;
}
.cid-sFh7KonLTF .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sFh7KonLTF .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sFh7KonLTF .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sFh7KonLTF .social-list,
  .cid-sFh7KonLTF .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sFh7KonLTF h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sFh7KonLTF .form-group {
    max-width: 180px;
  }
}
.cid-sFh7KonLTF .links span {
  color: #9e9e9e;
}
.cid-sFh7KonLTF .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sFh7KonLTF .logo-title {
  text-align: center;
}
.cid-sgKsTASVjN.popup-builder {
  background-color: #ffffff;
}
.cid-sgKsTASVjN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sgKsTASVjN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sgKsTASVjN .modal-content,
.cid-sgKsTASVjN .modal-dialog {
  height: auto;
}
.cid-sgKsTASVjN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sgKsTASVjN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sgKsTASVjN .form-wrapper .mbr-form .form-group,
  .cid-sgKsTASVjN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sgKsTASVjN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sgKsTASVjN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sgKsTASVjN .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-sgKsTASVjN .pt-0 {
  padding-top: 0 !important;
}
.cid-sgKsTASVjN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sgKsTASVjN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sgKsTASVjN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sgKsTASVjN .modal-open {
  overflow: hidden;
}
.cid-sgKsTASVjN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sgKsTASVjN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sgKsTASVjN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sgKsTASVjN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sgKsTASVjN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sgKsTASVjN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sgKsTASVjN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sgKsTASVjN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sgKsTASVjN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sgKsTASVjN .modal-backdrop.fade {
  opacity: 0;
}
.cid-sgKsTASVjN .modal-backdrop.show {
  opacity: .5;
}
.cid-sgKsTASVjN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sgKsTASVjN .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sgKsTASVjN .modal-header .close:hover {
  opacity: 1;
}
.cid-sgKsTASVjN .modal-header .close:focus {
  outline: none;
}
.cid-sgKsTASVjN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #a000b1;
}
.cid-sgKsTASVjN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sgKsTASVjN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sgKsTASVjN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sgKsTASVjN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sgKsTASVjN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sgKsTASVjN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sgKsTASVjN .modal-sm {
    max-width: 300px;
  }
  .cid-sgKsTASVjN .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sgKsTASVjN .modal-lg,
  .cid-sgKsTASVjN .modal-xl {
    max-width: 800px;
  }
  .cid-sgKsTASVjN .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sgKsTASVjN .modal-xl {
    max-width: 1140px;
  }
  .cid-sgKsTASVjN .container {
    max-width: 1140px;
  }
}
.cid-sgKsTASVjN .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sgKsTASVjN .container {
    max-width: 720px;
  }
}
.cid-sgKsTASVjN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sgKsTASVjN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sgKsTASVjN .form-group {
  margin-bottom: 1rem;
}
.cid-sgKsTASVjN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sgKsTASVjN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sgKsTASVjN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sccjZx3ifR.popup-builder {
  background-color: #ffffff;
}
.cid-sccjZx3ifR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sccjZx3ifR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sccjZx3ifR .modal-content,
.cid-sccjZx3ifR .modal-dialog {
  height: auto;
}
.cid-sccjZx3ifR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sccjZx3ifR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sccjZx3ifR .form-wrapper .mbr-form .form-group,
  .cid-sccjZx3ifR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sccjZx3ifR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sccjZx3ifR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sccjZx3ifR .mbr-text {
  text-align: center;
}
.cid-sccjZx3ifR .pt-0 {
  padding-top: 0 !important;
}
.cid-sccjZx3ifR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sccjZx3ifR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sccjZx3ifR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sccjZx3ifR .modal-open {
  overflow: hidden;
}
.cid-sccjZx3ifR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sccjZx3ifR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sccjZx3ifR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sccjZx3ifR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sccjZx3ifR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sccjZx3ifR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sccjZx3ifR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sccjZx3ifR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sccjZx3ifR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sccjZx3ifR .modal-backdrop.fade {
  opacity: 0;
}
.cid-sccjZx3ifR .modal-backdrop.show {
  opacity: .5;
}
.cid-sccjZx3ifR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sccjZx3ifR .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sccjZx3ifR .modal-header .close:hover {
  opacity: 1;
}
.cid-sccjZx3ifR .modal-header .close:focus {
  outline: none;
}
.cid-sccjZx3ifR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sccjZx3ifR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sccjZx3ifR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sccjZx3ifR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sccjZx3ifR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sccjZx3ifR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sccjZx3ifR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sccjZx3ifR .modal-sm {
    max-width: 300px;
  }
  .cid-sccjZx3ifR .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sccjZx3ifR .modal-lg,
  .cid-sccjZx3ifR .modal-xl {
    max-width: 800px;
  }
  .cid-sccjZx3ifR .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sccjZx3ifR .modal-xl {
    max-width: 1140px;
  }
  .cid-sccjZx3ifR .container {
    max-width: 1140px;
  }
}
.cid-sccjZx3ifR .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sccjZx3ifR .container {
    max-width: 720px;
  }
}
.cid-sccjZx3ifR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sccjZx3ifR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sccjZx3ifR .form-group {
  margin-bottom: 1rem;
}
.cid-sccjZx3ifR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sccjZx3ifR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sccjZx3ifR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sccov9mQFu.popup-builder {
  background-color: #ffffff;
}
.cid-sccov9mQFu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sccov9mQFu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sccov9mQFu .modal-content,
.cid-sccov9mQFu .modal-dialog {
  height: auto;
}
.cid-sccov9mQFu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sccov9mQFu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sccov9mQFu .form-wrapper .mbr-form .form-group,
  .cid-sccov9mQFu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sccov9mQFu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sccov9mQFu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sccov9mQFu .mbr-text {
  text-align: center;
}
.cid-sccov9mQFu .pt-0 {
  padding-top: 0 !important;
}
.cid-sccov9mQFu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sccov9mQFu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sccov9mQFu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sccov9mQFu .modal-open {
  overflow: hidden;
}
.cid-sccov9mQFu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sccov9mQFu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sccov9mQFu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sccov9mQFu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sccov9mQFu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sccov9mQFu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sccov9mQFu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sccov9mQFu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sccov9mQFu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sccov9mQFu .modal-backdrop.fade {
  opacity: 0;
}
.cid-sccov9mQFu .modal-backdrop.show {
  opacity: .5;
}
.cid-sccov9mQFu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sccov9mQFu .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sccov9mQFu .modal-header .close:hover {
  opacity: 1;
}
.cid-sccov9mQFu .modal-header .close:focus {
  outline: none;
}
.cid-sccov9mQFu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sccov9mQFu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sccov9mQFu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sccov9mQFu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sccov9mQFu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sccov9mQFu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sccov9mQFu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sccov9mQFu .modal-sm {
    max-width: 300px;
  }
  .cid-sccov9mQFu .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sccov9mQFu .modal-lg,
  .cid-sccov9mQFu .modal-xl {
    max-width: 800px;
  }
  .cid-sccov9mQFu .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sccov9mQFu .modal-xl {
    max-width: 1140px;
  }
  .cid-sccov9mQFu .container {
    max-width: 1140px;
  }
}
.cid-sccov9mQFu .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sccov9mQFu .container {
    max-width: 720px;
  }
}
.cid-sccov9mQFu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sccov9mQFu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sccov9mQFu .form-group {
  margin-bottom: 1rem;
}
.cid-sccov9mQFu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sccov9mQFu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sccov9mQFu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sccovoJXUB.popup-builder {
  background-color: #ffffff;
}
.cid-sccovoJXUB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sccovoJXUB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sccovoJXUB .modal-content,
.cid-sccovoJXUB .modal-dialog {
  height: auto;
}
.cid-sccovoJXUB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sccovoJXUB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sccovoJXUB .form-wrapper .mbr-form .form-group,
  .cid-sccovoJXUB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sccovoJXUB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sccovoJXUB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sccovoJXUB .mbr-text {
  text-align: center;
}
.cid-sccovoJXUB .pt-0 {
  padding-top: 0 !important;
}
.cid-sccovoJXUB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sccovoJXUB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sccovoJXUB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sccovoJXUB .modal-open {
  overflow: hidden;
}
.cid-sccovoJXUB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sccovoJXUB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sccovoJXUB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sccovoJXUB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sccovoJXUB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sccovoJXUB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sccovoJXUB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sccovoJXUB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sccovoJXUB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sccovoJXUB .modal-backdrop.fade {
  opacity: 0;
}
.cid-sccovoJXUB .modal-backdrop.show {
  opacity: .5;
}
.cid-sccovoJXUB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sccovoJXUB .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sccovoJXUB .modal-header .close:hover {
  opacity: 1;
}
.cid-sccovoJXUB .modal-header .close:focus {
  outline: none;
}
.cid-sccovoJXUB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sccovoJXUB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sccovoJXUB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sccovoJXUB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sccovoJXUB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sccovoJXUB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sccovoJXUB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sccovoJXUB .modal-sm {
    max-width: 300px;
  }
  .cid-sccovoJXUB .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sccovoJXUB .modal-lg,
  .cid-sccovoJXUB .modal-xl {
    max-width: 800px;
  }
  .cid-sccovoJXUB .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sccovoJXUB .modal-xl {
    max-width: 1140px;
  }
  .cid-sccovoJXUB .container {
    max-width: 1140px;
  }
}
.cid-sccovoJXUB .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sccovoJXUB .container {
    max-width: 720px;
  }
}
.cid-sccovoJXUB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sccovoJXUB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sccovoJXUB .form-group {
  margin-bottom: 1rem;
}
.cid-sccovoJXUB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sccovoJXUB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sccovoJXUB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sccovyJ8bo.popup-builder {
  background-color: #ffffff;
}
.cid-sccovyJ8bo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sccovyJ8bo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sccovyJ8bo .modal-content,
.cid-sccovyJ8bo .modal-dialog {
  height: auto;
}
.cid-sccovyJ8bo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sccovyJ8bo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sccovyJ8bo .form-wrapper .mbr-form .form-group,
  .cid-sccovyJ8bo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sccovyJ8bo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sccovyJ8bo .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sccovyJ8bo .mbr-text {
  text-align: center;
}
.cid-sccovyJ8bo .pt-0 {
  padding-top: 0 !important;
}
.cid-sccovyJ8bo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sccovyJ8bo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sccovyJ8bo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sccovyJ8bo .modal-open {
  overflow: hidden;
}
.cid-sccovyJ8bo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sccovyJ8bo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sccovyJ8bo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sccovyJ8bo .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sccovyJ8bo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sccovyJ8bo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sccovyJ8bo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sccovyJ8bo .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sccovyJ8bo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sccovyJ8bo .modal-backdrop.fade {
  opacity: 0;
}
.cid-sccovyJ8bo .modal-backdrop.show {
  opacity: .5;
}
.cid-sccovyJ8bo .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sccovyJ8bo .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sccovyJ8bo .modal-header .close:hover {
  opacity: 1;
}
.cid-sccovyJ8bo .modal-header .close:focus {
  outline: none;
}
.cid-sccovyJ8bo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sccovyJ8bo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sccovyJ8bo .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sccovyJ8bo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sccovyJ8bo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sccovyJ8bo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sccovyJ8bo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sccovyJ8bo .modal-sm {
    max-width: 300px;
  }
  .cid-sccovyJ8bo .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sccovyJ8bo .modal-lg,
  .cid-sccovyJ8bo .modal-xl {
    max-width: 800px;
  }
  .cid-sccovyJ8bo .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sccovyJ8bo .modal-xl {
    max-width: 1140px;
  }
  .cid-sccovyJ8bo .container {
    max-width: 1140px;
  }
}
.cid-sccovyJ8bo .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sccovyJ8bo .container {
    max-width: 720px;
  }
}
.cid-sccovyJ8bo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sccovyJ8bo .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sccovyJ8bo .form-group {
  margin-bottom: 1rem;
}
.cid-sccovyJ8bo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sccovyJ8bo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sccovyJ8bo .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sccox0DqOE.popup-builder {
  background-color: #ffffff;
}
.cid-sccox0DqOE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sccox0DqOE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sccox0DqOE .modal-content,
.cid-sccox0DqOE .modal-dialog {
  height: auto;
}
.cid-sccox0DqOE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sccox0DqOE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sccox0DqOE .form-wrapper .mbr-form .form-group,
  .cid-sccox0DqOE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sccox0DqOE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sccox0DqOE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sccox0DqOE .mbr-text {
  text-align: center;
}
.cid-sccox0DqOE .pt-0 {
  padding-top: 0 !important;
}
.cid-sccox0DqOE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sccox0DqOE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sccox0DqOE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sccox0DqOE .modal-open {
  overflow: hidden;
}
.cid-sccox0DqOE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sccox0DqOE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sccox0DqOE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sccox0DqOE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sccox0DqOE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sccox0DqOE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sccox0DqOE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sccox0DqOE .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sccox0DqOE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sccox0DqOE .modal-backdrop.fade {
  opacity: 0;
}
.cid-sccox0DqOE .modal-backdrop.show {
  opacity: .5;
}
.cid-sccox0DqOE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sccox0DqOE .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sccox0DqOE .modal-header .close:hover {
  opacity: 1;
}
.cid-sccox0DqOE .modal-header .close:focus {
  outline: none;
}
.cid-sccox0DqOE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sccox0DqOE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sccox0DqOE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sccox0DqOE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sccox0DqOE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sccox0DqOE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sccox0DqOE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sccox0DqOE .modal-sm {
    max-width: 300px;
  }
  .cid-sccox0DqOE .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sccox0DqOE .modal-lg,
  .cid-sccox0DqOE .modal-xl {
    max-width: 800px;
  }
  .cid-sccox0DqOE .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sccox0DqOE .modal-xl {
    max-width: 1140px;
  }
  .cid-sccox0DqOE .container {
    max-width: 1140px;
  }
}
.cid-sccox0DqOE .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sccox0DqOE .container {
    max-width: 720px;
  }
}
.cid-sccox0DqOE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sccox0DqOE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sccox0DqOE .form-group {
  margin-bottom: 1rem;
}
.cid-sccox0DqOE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sccox0DqOE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sccox0DqOE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sccoxc4iyY.popup-builder {
  background-color: #ffffff;
}
.cid-sccoxc4iyY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sccoxc4iyY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sccoxc4iyY .modal-content,
.cid-sccoxc4iyY .modal-dialog {
  height: auto;
}
.cid-sccoxc4iyY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sccoxc4iyY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sccoxc4iyY .form-wrapper .mbr-form .form-group,
  .cid-sccoxc4iyY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sccoxc4iyY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sccoxc4iyY .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sccoxc4iyY .mbr-text {
  text-align: center;
}
.cid-sccoxc4iyY .pt-0 {
  padding-top: 0 !important;
}
.cid-sccoxc4iyY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sccoxc4iyY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sccoxc4iyY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sccoxc4iyY .modal-open {
  overflow: hidden;
}
.cid-sccoxc4iyY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sccoxc4iyY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sccoxc4iyY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sccoxc4iyY .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sccoxc4iyY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sccoxc4iyY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sccoxc4iyY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sccoxc4iyY .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sccoxc4iyY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sccoxc4iyY .modal-backdrop.fade {
  opacity: 0;
}
.cid-sccoxc4iyY .modal-backdrop.show {
  opacity: .5;
}
.cid-sccoxc4iyY .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sccoxc4iyY .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sccoxc4iyY .modal-header .close:hover {
  opacity: 1;
}
.cid-sccoxc4iyY .modal-header .close:focus {
  outline: none;
}
.cid-sccoxc4iyY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sccoxc4iyY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sccoxc4iyY .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sccoxc4iyY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sccoxc4iyY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sccoxc4iyY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sccoxc4iyY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sccoxc4iyY .modal-sm {
    max-width: 300px;
  }
  .cid-sccoxc4iyY .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sccoxc4iyY .modal-lg,
  .cid-sccoxc4iyY .modal-xl {
    max-width: 800px;
  }
  .cid-sccoxc4iyY .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sccoxc4iyY .modal-xl {
    max-width: 1140px;
  }
  .cid-sccoxc4iyY .container {
    max-width: 1140px;
  }
}
.cid-sccoxc4iyY .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sccoxc4iyY .container {
    max-width: 720px;
  }
}
.cid-sccoxc4iyY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sccoxc4iyY .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sccoxc4iyY .form-group {
  margin-bottom: 1rem;
}
.cid-sccoxc4iyY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sccoxc4iyY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sccoxc4iyY .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sHwWMbfziS.popup-builder {
  background-color: #ffffff;
}
.cid-sHwWMbfziS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sHwWMbfziS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sHwWMbfziS .modal-content,
.cid-sHwWMbfziS .modal-dialog {
  height: auto;
}
.cid-sHwWMbfziS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sHwWMbfziS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sHwWMbfziS .form-wrapper .mbr-form .form-group,
  .cid-sHwWMbfziS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sHwWMbfziS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sHwWMbfziS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sHwWMbfziS .mbr-text {
  text-align: center;
}
.cid-sHwWMbfziS .pt-0 {
  padding-top: 0 !important;
}
.cid-sHwWMbfziS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sHwWMbfziS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sHwWMbfziS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sHwWMbfziS .modal-open {
  overflow: hidden;
}
.cid-sHwWMbfziS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sHwWMbfziS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sHwWMbfziS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sHwWMbfziS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sHwWMbfziS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sHwWMbfziS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sHwWMbfziS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sHwWMbfziS .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sHwWMbfziS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sHwWMbfziS .modal-backdrop.fade {
  opacity: 0;
}
.cid-sHwWMbfziS .modal-backdrop.show {
  opacity: .5;
}
.cid-sHwWMbfziS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sHwWMbfziS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sHwWMbfziS .modal-header {
    padding: 1rem;
  }
}
.cid-sHwWMbfziS .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sHwWMbfziS .modal-header .close:hover {
  opacity: 1;
}
.cid-sHwWMbfziS .modal-header .close:focus {
  outline: none;
}
.cid-sHwWMbfziS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sHwWMbfziS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sHwWMbfziS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHwWMbfziS .modal-body {
    padding: 1rem;
  }
}
.cid-sHwWMbfziS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sHwWMbfziS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHwWMbfziS .modal-footer {
    padding: 1rem;
  }
}
.cid-sHwWMbfziS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sHwWMbfziS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sHwWMbfziS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sHwWMbfziS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sHwWMbfziS .modal-sm {
    max-width: 300px;
  }
  .cid-sHwWMbfziS .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sHwWMbfziS .modal-lg,
  .cid-sHwWMbfziS .modal-xl {
    max-width: 800px;
  }
  .cid-sHwWMbfziS .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sHwWMbfziS .modal-xl {
    max-width: 1140px;
  }
  .cid-sHwWMbfziS .container {
    max-width: 1140px;
  }
}
.cid-sHwWMbfziS .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sHwWMbfziS .container {
    max-width: 720px;
  }
}
.cid-sHwWMbfziS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sHwWMbfziS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sHwWMbfziS .form-group {
  margin-bottom: 1rem;
}
.cid-sHwWMbfziS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sHwWMbfziS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sHwWMbfziS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sHwWMbfziS .mbr-section-btn {
  margin: 0;
}
.cid-sHwWMbfziS .mbr-section-btn .btn {
  margin: 0;
}
.cid-sHwWN5rlKB.popup-builder {
  background-color: #ffffff;
}
.cid-sHwWN5rlKB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sHwWN5rlKB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sHwWN5rlKB .modal-content,
.cid-sHwWN5rlKB .modal-dialog {
  height: auto;
}
.cid-sHwWN5rlKB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sHwWN5rlKB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sHwWN5rlKB .form-wrapper .mbr-form .form-group,
  .cid-sHwWN5rlKB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sHwWN5rlKB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sHwWN5rlKB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sHwWN5rlKB .mbr-text {
  text-align: center;
}
.cid-sHwWN5rlKB .pt-0 {
  padding-top: 0 !important;
}
.cid-sHwWN5rlKB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sHwWN5rlKB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sHwWN5rlKB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sHwWN5rlKB .modal-open {
  overflow: hidden;
}
.cid-sHwWN5rlKB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sHwWN5rlKB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sHwWN5rlKB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sHwWN5rlKB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sHwWN5rlKB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sHwWN5rlKB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sHwWN5rlKB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sHwWN5rlKB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sHwWN5rlKB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sHwWN5rlKB .modal-backdrop.fade {
  opacity: 0;
}
.cid-sHwWN5rlKB .modal-backdrop.show {
  opacity: .5;
}
.cid-sHwWN5rlKB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sHwWN5rlKB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sHwWN5rlKB .modal-header {
    padding: 1rem;
  }
}
.cid-sHwWN5rlKB .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sHwWN5rlKB .modal-header .close:hover {
  opacity: 1;
}
.cid-sHwWN5rlKB .modal-header .close:focus {
  outline: none;
}
.cid-sHwWN5rlKB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sHwWN5rlKB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sHwWN5rlKB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHwWN5rlKB .modal-body {
    padding: 1rem;
  }
}
.cid-sHwWN5rlKB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sHwWN5rlKB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHwWN5rlKB .modal-footer {
    padding: 1rem;
  }
}
.cid-sHwWN5rlKB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sHwWN5rlKB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sHwWN5rlKB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sHwWN5rlKB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sHwWN5rlKB .modal-sm {
    max-width: 300px;
  }
  .cid-sHwWN5rlKB .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sHwWN5rlKB .modal-lg,
  .cid-sHwWN5rlKB .modal-xl {
    max-width: 800px;
  }
  .cid-sHwWN5rlKB .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sHwWN5rlKB .modal-xl {
    max-width: 1140px;
  }
  .cid-sHwWN5rlKB .container {
    max-width: 1140px;
  }
}
.cid-sHwWN5rlKB .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sHwWN5rlKB .container {
    max-width: 720px;
  }
}
.cid-sHwWN5rlKB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sHwWN5rlKB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sHwWN5rlKB .form-group {
  margin-bottom: 1rem;
}
.cid-sHwWN5rlKB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sHwWN5rlKB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sHwWN5rlKB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sHwWN5rlKB .mbr-section-btn {
  margin: 0;
}
.cid-sHwWN5rlKB .mbr-section-btn .btn {
  margin: 0;
}
.cid-uD66UMBOsM.popup-builder {
  background-color: #ffffff;
}
.cid-uD66UMBOsM.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uD66UMBOsM.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uD66UMBOsM .modal-content,
.cid-uD66UMBOsM .modal-dialog {
  height: auto;
}
.cid-uD66UMBOsM .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uD66UMBOsM .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uD66UMBOsM .form-wrapper .mbr-form .form-group,
  .cid-uD66UMBOsM .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uD66UMBOsM .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uD66UMBOsM .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uD66UMBOsM .mbr-text {
  text-align: center;
}
.cid-uD66UMBOsM .pt-0 {
  padding-top: 0 !important;
}
.cid-uD66UMBOsM .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uD66UMBOsM .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uD66UMBOsM .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uD66UMBOsM .modal-open {
  overflow: hidden;
}
.cid-uD66UMBOsM .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uD66UMBOsM .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uD66UMBOsM .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uD66UMBOsM .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uD66UMBOsM .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uD66UMBOsM .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uD66UMBOsM .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uD66UMBOsM .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uD66UMBOsM .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uD66UMBOsM .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uD66UMBOsM .modal-backdrop.fade {
  opacity: 0;
}
.cid-uD66UMBOsM .modal-backdrop.show {
  opacity: .5;
}
.cid-uD66UMBOsM .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uD66UMBOsM .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uD66UMBOsM .modal-header {
    padding: 1rem;
  }
}
.cid-uD66UMBOsM .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uD66UMBOsM .modal-header .close svg {
  fill: #55b4d4;
}
.cid-uD66UMBOsM .modal-header .close:hover {
  opacity: 1;
}
.cid-uD66UMBOsM .modal-header .close:focus {
  outline: none;
}
.cid-uD66UMBOsM .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uD66UMBOsM .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uD66UMBOsM .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD66UMBOsM .modal-body {
    padding: 1rem;
  }
}
.cid-uD66UMBOsM .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uD66UMBOsM .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD66UMBOsM .modal-footer {
    padding: 1rem;
  }
}
.cid-uD66UMBOsM .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uD66UMBOsM .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uD66UMBOsM .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uD66UMBOsM .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uD66UMBOsM .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uD66UMBOsM .modal-lg,
  .cid-uD66UMBOsM .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uD66UMBOsM .modal-xl {
    max-width: 1140px;
  }
}
.cid-uD66UMBOsM .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uD66UMBOsM .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uD66UMBOsM .form-group {
  margin-bottom: 1rem;
}
.cid-uD66UMBOsM .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uD66UMBOsM .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uD66UMBOsM .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uD66UMBOsM .mbr-section-btn {
  margin: 0;
}
.cid-uD66UMBOsM .mbr-section-btn .btn {
  margin: 0;
}
.cid-uD67ERACgz.popup-builder {
  background-color: #ffffff;
}
.cid-uD67ERACgz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uD67ERACgz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uD67ERACgz .modal-content,
.cid-uD67ERACgz .modal-dialog {
  height: auto;
}
.cid-uD67ERACgz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uD67ERACgz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uD67ERACgz .form-wrapper .mbr-form .form-group,
  .cid-uD67ERACgz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uD67ERACgz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uD67ERACgz .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uD67ERACgz .mbr-text {
  text-align: center;
}
.cid-uD67ERACgz .pt-0 {
  padding-top: 0 !important;
}
.cid-uD67ERACgz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uD67ERACgz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uD67ERACgz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uD67ERACgz .modal-open {
  overflow: hidden;
}
.cid-uD67ERACgz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uD67ERACgz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uD67ERACgz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uD67ERACgz .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uD67ERACgz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uD67ERACgz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uD67ERACgz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uD67ERACgz .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uD67ERACgz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uD67ERACgz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uD67ERACgz .modal-backdrop.fade {
  opacity: 0;
}
.cid-uD67ERACgz .modal-backdrop.show {
  opacity: .5;
}
.cid-uD67ERACgz .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uD67ERACgz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uD67ERACgz .modal-header {
    padding: 1rem;
  }
}
.cid-uD67ERACgz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uD67ERACgz .modal-header .close svg {
  fill: #55b4d4;
}
.cid-uD67ERACgz .modal-header .close:hover {
  opacity: 1;
}
.cid-uD67ERACgz .modal-header .close:focus {
  outline: none;
}
.cid-uD67ERACgz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uD67ERACgz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uD67ERACgz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD67ERACgz .modal-body {
    padding: 1rem;
  }
}
.cid-uD67ERACgz .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uD67ERACgz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD67ERACgz .modal-footer {
    padding: 1rem;
  }
}
.cid-uD67ERACgz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uD67ERACgz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uD67ERACgz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uD67ERACgz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uD67ERACgz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uD67ERACgz .modal-lg,
  .cid-uD67ERACgz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uD67ERACgz .modal-xl {
    max-width: 1140px;
  }
}
.cid-uD67ERACgz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uD67ERACgz .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uD67ERACgz .form-group {
  margin-bottom: 1rem;
}
.cid-uD67ERACgz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uD67ERACgz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uD67ERACgz .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uD67ERACgz .mbr-section-btn {
  margin: 0;
}
.cid-uD67ERACgz .mbr-section-btn .btn {
  margin: 0;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-rSpxC3Hczp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/cabeceramm-1200x600.jpg");
}
.cid-rSpxC3Hczp .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-rSpxC3Hczp .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-rSpxC3Hczp .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-rSpxC3Hczp .mbr-text {
  color: #ffffff;
}
.cid-rSpxC3Hczp .card {
  padding-bottom: 1.5rem;
}
.cid-sZg1LtxzNJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sZg1LtxzNJ .row {
  flex-direction: row-reverse;
}
.cid-sZg1LtxzNJ .mbr-media span {
  font-size: 2rem;
  transition: all 0.2s;
  color: #0f7699;
  background: #ffffff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
}
.cid-sZg1LtxzNJ .mbr-media {
  position: relative;
}
.cid-sZg1LtxzNJ .mbr-media img {
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-sZg1LtxzNJ .mbr-media {
    margin-bottom: 2rem;
  }
}
.cid-sZg1LtxzNJ .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-sZg1LtxzNJ .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-sZg1LtxzNJ .card-title {
  padding: 0;
  margin: 0;
}
.cid-sZg1LtxzNJ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sZg1LtxzNJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sZg1LtxzNJ .card-wrapper {
    width: fit-content;
  }
}
.cid-sZg1LtxzNJ .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
@media (max-width: 991px) {
  .cid-sZg1LtxzNJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZg1LtxzNJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sZg1LtxzNJ .card-title,
.cid-sZg1LtxzNJ .card-icon {
  color: #5b6c8f;
}
.cid-sZg1LtxzNJ .mbr-section-title {
  color: #103178;
}
.cid-sZg1LtxzNJ .mbr-text,
.cid-sZg1LtxzNJ .mbr-section-btn {
  color: #103178;
}
.cid-sZg1LtxzNJ .price-title {
  text-align: center;
  color: #103178;
}
.cid-sZg1LtxzNJ .price {
  text-align: center;
  color: #103178;
}
.cid-sZg1LtxzNJ .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sZg1LtxzNJ .mbr-media a:hover {
  background-image: none!important;
}
.cid-sZg1LtxzNJ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sZg1LtxzNJ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sZg1LtxzNJ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sZg1LtxzNJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sZg1LtxzNJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t2ryw6WTU8 {
  padding-top: 560px;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-rSpELNcHgk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-rSpELNcHgk .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rSpELNcHgk .section-text {
  padding: 2rem 0;
}
.cid-rSpELNcHgk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rSpELNcHgk .inner-container {
    width: 100% !important;
  }
}
.cid-rSpyy9M8li {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rSpyy9M8li .mbr-section-text {
  color: #767676;
}
.cid-rSpyy9M8li .mbr-section-subtitle {
  color: #767676;
}
.cid-rSpyy9M8li .tabcont {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rSpyy9M8li .mbr-iconfont {
  font-size: 48px;
}
.cid-rSpyy9M8li .card-img {
  margin-bottom: 1.5rem;
}
.cid-rSpyy9M8li .tab-content-row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rSpyy9M8li .tab-content {
  margin-top: 3rem;
  width: 100%;
}
.cid-rSpyy9M8li .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rSpyy9M8li .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #767676;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: color .3s;
  border: 2px solid #767676;
}
.cid-rSpyy9M8li .nav-tabs .nav-link:hover {
  background: #149dcc;
}
.cid-rSpyy9M8li .nav-tabs .nav-link.active {
  color: #ffffff;
  font-style: normal;
  border: 2px solid #149dcc;
  background: #149dcc;
}
.cid-rSpyy9M8li .nav-tabs .nav-link.active:hover {
  border: 2px solid #149dcc;
}
.cid-rSpz8xG0Hp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSpz8xG0Hp .card-box {
  padding: 0 2rem;
}
.cid-rSpz8xG0Hp .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rSpz8xG0Hp .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-rSpz8xG0Hp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-rSpz8xG0Hp p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-rSpz8xG0Hp .mbr-text {
  color: #767676;
}
.cid-rSpz8xG0Hp .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rSpz8xG0Hp .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rSpA6aOhrx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSpA6aOhrx .card-box {
  padding: 0 2rem;
}
.cid-rSpA6aOhrx .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rSpA6aOhrx .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-rSpA6aOhrx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-rSpA6aOhrx p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-rSpA6aOhrx .mbr-text {
  color: #767676;
}
.cid-rSpA6aOhrx .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rSpA6aOhrx .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-t2q2kaQNoM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1d1d1f;
}
.cid-t2q2kaQNoM .item-wrapper {
  width: 100%;
}
.cid-t2q2kaQNoM .left-side {
  text-align: left;
  padding: 0 100px 20px;
}
.cid-t2q2kaQNoM .row.big {
  align-items: center;
}
.cid-t2q2kaQNoM .mbr-section-title {
  margin: 26px 0 37px;
  color: #ffffff;
  font-weight: 700;
  text-align: right;
}
.cid-t2q2kaQNoM .mbr-iconfont {
  font-size: 60px;
  color: #b2b2b2;
  margin-right: 5px;
}
.cid-t2q2kaQNoM .desc1 {
  padding-bottom: 14px;
  margin-top: 14px;
  font-weight: 700;
}
.cid-t2q2kaQNoM .desc2 {
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t2q2kaQNoM .desc1,
.cid-t2q2kaQNoM .iconfont-wrapper {
  color: #ffffff;
}
.cid-t2q2kaQNoM .right-side {
  padding: 0;
}
.cid-t2q2kaQNoM .justify-content-center {
  padding: 0;
  margin: 0;
}
.cid-t2q2kaQNoM .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-t2q2kaQNoM .bottom {
  margin-bottom: 42px;
}
@media (max-width: 990px) {
  .cid-t2q2kaQNoM .left-side {
    padding: 0 30px 20px;
  }
}
@media (max-width: 690px) {
  .cid-t2q2kaQNoM .left-side {
    padding: 0 15px 20px;
  }
  .cid-t2q2kaQNoM .align-left {
    flex-direction: column;
  }
  .cid-t2q2kaQNoM .mbr-iconfont {
    margin-right: 0px;
  }
}
.cid-uCIUQ1WKr8 {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uCIUQ1WKr8 .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-uCIUQ1WKr8 h4 {
  margin: 0;
}
.cid-uCIUQ1WKr8 .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-uCIUQ1WKr8 .plan-body {
  padding-bottom: 2rem;
}
.cid-uCIUQ1WKr8 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCIUQ1WKr8 .nav-tabs {
  border: none !important;
}
.cid-uCIUQ1WKr8 .nav-tabs .nav-item {
  margin: 0;
}
.cid-uCIUQ1WKr8 .nav-tabs .btn {
  transition: all 0.5s;
  border: none !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCIUQ1WKr8 .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-uCIUQ1WKr8 .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-uCIUQ1WKr8 .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-uCIUQ1WKr8 .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-uCIUQ1WKr8 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-uCIUQ1WKr8 .line2 {
  background: #255085;
}
.cid-uCIUQ1WKr8 .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-uCIUQ1WKr8 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-uCIUQ1WKr8 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-uCIUQ1WKr8 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-uCIUQ1WKr8 .plan-header,
.cid-uCIUQ1WKr8 .plan-body {
  background-color: #fff;
}
.cid-uCIUQ1WKr8 .price-figure {
  font-weight: 700;
}
.cid-uCIUQ1WKr8 .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-uCIUQ1WKr8 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uCIUQ1WKr8 .color1 {
  color: #fa7300;
}
.cid-uCIUQ1WKr8 .color2 {
  color: #fa7300;
}
.cid-uCIUQ1WKr8 LI {
  color: #767676;
}
.cid-uCIUQ1WKr8 .price-term {
  color: #767676;
}
.cid-uCIUPtXuEJ {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uCIUPtXuEJ .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-uCIUPtXuEJ h4 {
  margin: 0;
}
.cid-uCIUPtXuEJ .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-uCIUPtXuEJ .plan-body {
  padding-bottom: 2rem;
}
.cid-uCIUPtXuEJ .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCIUPtXuEJ .nav-tabs {
  border: none !important;
}
.cid-uCIUPtXuEJ .nav-tabs .nav-item {
  margin: 0;
}
.cid-uCIUPtXuEJ .nav-tabs .btn {
  transition: all 0.5s;
  border: none !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCIUPtXuEJ .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-uCIUPtXuEJ .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-uCIUPtXuEJ .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-uCIUPtXuEJ .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-uCIUPtXuEJ .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-uCIUPtXuEJ .line2 {
  background: #255085;
}
.cid-uCIUPtXuEJ .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-uCIUPtXuEJ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-uCIUPtXuEJ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-uCIUPtXuEJ .plan .list-group-item:last-child::after {
  display: none;
}
.cid-uCIUPtXuEJ .plan-header,
.cid-uCIUPtXuEJ .plan-body {
  background-color: #fff;
}
.cid-uCIUPtXuEJ .price-figure {
  font-weight: 700;
}
.cid-uCIUPtXuEJ .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-uCIUPtXuEJ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uCIUPtXuEJ .color1 {
  color: #0f7699;
}
.cid-uCIUPtXuEJ .color2 {
  color: #0f7699;
}
.cid-uCIUPtXuEJ LI {
  color: #767676;
}
.cid-uCIUPtXuEJ .price-term {
  color: #767676;
}
.cid-sd26a7Z2XN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-sd26a7Z2XN .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sd26a7Z2XN .panel-group {
  width: 100%;
}
.cid-sd26a7Z2XN .panel-text,
.cid-sd26a7Z2XN .header-text,
.cid-sd26a7Z2XN .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sd26a7Z2XN .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-sd26a7Z2XN .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-sd26a7Z2XN .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-sd26a7Z2XN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sd26a7Z2XN .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-sd26a7Z2XN .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-sd26a7Z2XN .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #188ef4;
}
.cid-sd26a7Z2XN .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #ffffff !important;
}
.cid-sd26a7Z2XN .card .panel-body {
  background: #ffffff;
}
.cid-sd26a7Z2XN .sign {
  color: #232323;
}
.cid-t2rzPENTI6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t2rzPENTI6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2rzPENTI6 .row {
  flex-direction: row-reverse;
}
.cid-t2rzPENTI6 img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
.cid-s89upiGq1J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #55b4d4;
}
.cid-sWZ2ITvpVR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sWZ2ITvpVR .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sWZ2ITvpVR .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sWZ2ITvpVR .col + .mbr-section-btn .btn,
.cid-sWZ2ITvpVR .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sWZ2ITvpVR .col + .mbr-section-btn .btn,
  .cid-sWZ2ITvpVR .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sWZ2ITvpVR .dragArea > *:nth-last-child(2).col,
  .cid-sWZ2ITvpVR .dragArea > *:nth-last-child(2).col-auto,
  .cid-sWZ2ITvpVR .col + .mbr-section-btn,
  .cid-sWZ2ITvpVR .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sWZ2ITvpVR .dragArea {
    flex-direction: column;
  }
}
.cid-sWZ2ITvpVR .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sWZ2ITvpVR .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sWZ2ITvpVR .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sWZ2ITvpVR .form-group {
  max-width: 220px;
}
.cid-sWZ2ITvpVR .mbr-section-btn {
  padding-left: 0;
}
.cid-sWZ2ITvpVR .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sWZ2ITvpVR .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sWZ2ITvpVR .mbr-text {
  color: #444;
}
.cid-sWZ2ITvpVR h5 {
  margin-bottom: 0;
}
.cid-sWZ2ITvpVR .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sWZ2ITvpVR .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sWZ2ITvpVR .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sWZ2ITvpVR .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sWZ2ITvpVR .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sWZ2ITvpVR .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sWZ2ITvpVR .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sWZ2ITvpVR .social-list a:hover {
  opacity: 0.4;
}
.cid-sWZ2ITvpVR .media-container-row > div {
  padding: 0px;
}
.cid-sWZ2ITvpVR .text2 {
  color: #000000;
  text-align: left;
}
.cid-sWZ2ITvpVR .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sWZ2ITvpVR .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sWZ2ITvpVR .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sWZ2ITvpVR .social-list,
  .cid-sWZ2ITvpVR .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sWZ2ITvpVR h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sWZ2ITvpVR .form-group {
    max-width: 180px;
  }
}
.cid-sWZ2ITvpVR .links span {
  color: #9e9e9e;
}
.cid-sWZ2ITvpVR .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sWZ2ITvpVR .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-s89z68eRFd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s89z68eRFd .mbr-text {
  color: #767676;
}
.cid-s89z68eRFd .mbr-text p {
  background: #ffffff;
}
.cid-rSAeiVCAgc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rSAeiVCAgc h3 {
  text-align: center;
}
.cid-rSAeiVCAgc .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-rSAeiVCAgc .mbr-content-text {
  color: #767676;
}
.cid-rSAeiVCAgc .panel-item {
  background: #ffffff;
}
.cid-rSAeiVCAgc .card {
  word-wrap: break-word;
}
.cid-rSAeiVCAgc .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-rSAip8JUG2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x960.jpg");
}
.cid-rSAip8JUG2 .mbr-text {
  color: #ffffff;
}
.cid-rSAip8JUG2 h4 {
  text-align: center;
}
.cid-rSAip8JUG2 p {
  text-align: center;
}
.cid-rSAip8JUG2 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rSAip8JUG2 .card-title,
.cid-rSAip8JUG2 .card-img {
  color: #ffffff;
}
.cid-s89wXTxSGk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/metabusinesspartner-2-774x444.png");
}
.cid-s89wXTxSGk .card-box {
  padding: 0rem;
}
.cid-s89wXTxSGk .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-s89wXTxSGk .card {
  padding: 0;
  margin: auto;
}
.cid-s89wXTxSGk .card-img {
  height: 400px;
}
.cid-s89wXTxSGk .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-s89wXTxSGk .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-s89wXTxSGk .card-wrapper {
    padding: 4rem;
  }
}
.cid-s89zgMC3S0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-s89zgMC3S0 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s89zgMC3S0 .section-text {
  padding: 2rem 0;
}
.cid-s89zgMC3S0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s89zgMC3S0 .inner-container {
    width: 100% !important;
  }
}
.cid-sBFg76wPXV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sBFg76wPXV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sBFg76wPXV .mbr-section-title {
  margin-bottom: 20px;
  color: #ff3366;
}
.cid-sBFg76wPXV .mbr-text {
  margin-bottom: 50px;
}
.cid-sBFg76wPXV .card_wrap {
  margin-bottom: 20px;
}
.cid-sBFg76wPXV .item:nth-child(1) .icon_block svg polygon {
  fill: rgba(15, 118, 153, 0.07);
}
.cid-sBFg76wPXV .item:nth-child(1) .mbr-iconfont {
  color: #0f7699;
}
.cid-sBFg76wPXV .item:nth-child(2) .icon_block svg polygon {
  fill: rgba(160, 0, 177, 0.07);
}
.cid-sBFg76wPXV .item:nth-child(2) .mbr-iconfont {
  color: #a000b1;
}
.cid-sBFg76wPXV .item .icon_block {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  width: 90px;
  height: 90px;
}
.cid-sBFg76wPXV .item .icon_block svg {
  width: 100px;
  height: 100px;
  transform: rotate(90deg);
}
.cid-sBFg76wPXV .item .icon_block .mbr-iconfont {
  line-height: 100px;
  font-size: 36px;
  position: absolute;
  top: 0;
  left: 33px;
}
.cid-sBFg76wPXV .card_title {
  margin-bottom: 18px;
  color: #ff3366;
}
.cid-sBFg76wPXV .card_text {
  margin-bottom: 0;
}
.cid-sBFg76wPXV .mbr-section-btn {
  margin-top: 30px;
}
.cid-sBFg76wPXV .shape {
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-sBFg76wPXV .shape_1 {
  top: 10px;
  left: 19px;
  width: 10px;
  height: 10px;
  background: #2bc741;
  border-radius: 50%;
}
.cid-sBFg76wPXV .shape_2 {
  top: 17px;
  right: 2px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #a000b1;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(22deg);
}
.cid-sBFg76wPXV .shape_3 {
  left: 14px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background-color: #0f7699;
}
.cid-sBFg76wPXV .shape_4 {
  right: -5px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background: #ff8f33;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .cid-sBFg76wPXV .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sBFg76wPXV .text-wrapper {
    text-align: center;
  }
  .cid-sBFg76wPXV .card_wrap {
    margin-bottom: 20px;
  }
  .cid-sBFg76wPXV .icon_block {
    margin-bottom: 20px;
  }
  .cid-sBFg76wPXV .card_title {
    margin-bottom: 10px;
  }
  .cid-sBFg76wPXV .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sBFg76wPXV .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-sZgeaJtSeB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sZgeaJtSeB .row {
  flex-direction: row-reverse;
}
.cid-sZgeaJtSeB .mbr-media span {
  font-size: 2rem;
  transition: all 0.2s;
  color: #0f7699;
  background: #ffffff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
}
.cid-sZgeaJtSeB .mbr-media {
  position: relative;
}
.cid-sZgeaJtSeB .mbr-media img {
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-sZgeaJtSeB .mbr-media {
    margin-bottom: 2rem;
  }
}
.cid-sZgeaJtSeB .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-sZgeaJtSeB .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-sZgeaJtSeB .card-title {
  padding: 0;
  margin: 0;
}
.cid-sZgeaJtSeB .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sZgeaJtSeB .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sZgeaJtSeB .card-wrapper {
    width: fit-content;
  }
}
.cid-sZgeaJtSeB .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
@media (max-width: 991px) {
  .cid-sZgeaJtSeB .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZgeaJtSeB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sZgeaJtSeB .card-title,
.cid-sZgeaJtSeB .card-icon {
  color: #41934c;
}
.cid-sZgeaJtSeB .mbr-section-title {
  color: #41934c;
}
.cid-sZgeaJtSeB .mbr-text,
.cid-sZgeaJtSeB .mbr-section-btn {
  color: #41934c;
}
.cid-sZgeaJtSeB .price-title {
  text-align: center;
  color: #103178;
}
.cid-sZgeaJtSeB .price {
  text-align: center;
  color: #103178;
}
.cid-sZgeaJtSeB .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sZgeaJtSeB .mbr-media a:hover {
  background-image: none!important;
}
.cid-sZgeaJtSeB .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sZgeaJtSeB .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sZgeaJtSeB .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sZgeaJtSeB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sZgeaJtSeB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sIwSEsfbct {
  background-image: url("../../../assets/images/whatsapp-business-logo-1024x506.png");
}
.cid-sIwSEsfbct P {
  color: #767676;
}
.cid-uCIUV8LBj6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-uCIUV8LBj6 .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-uCIUV8LBj6 h4 {
  margin: 0;
}
.cid-uCIUV8LBj6 .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-uCIUV8LBj6 .plan-body {
  padding-bottom: 2rem;
}
.cid-uCIUV8LBj6 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCIUV8LBj6 .nav-tabs {
  border: none !important;
}
.cid-uCIUV8LBj6 .nav-tabs .nav-item {
  margin: 0;
}
.cid-uCIUV8LBj6 .nav-tabs .btn {
  transition: all 0.5s;
  border: none !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCIUV8LBj6 .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-uCIUV8LBj6 .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-uCIUV8LBj6 .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-uCIUV8LBj6 .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-uCIUV8LBj6 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-uCIUV8LBj6 .line2 {
  background: #255085;
}
.cid-uCIUV8LBj6 .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-uCIUV8LBj6 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-uCIUV8LBj6 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-uCIUV8LBj6 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-uCIUV8LBj6 .plan-header,
.cid-uCIUV8LBj6 .plan-body {
  background-color: #fff;
}
.cid-uCIUV8LBj6 .price-figure {
  font-weight: 700;
}
.cid-uCIUV8LBj6 .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-uCIUV8LBj6 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uCIUV8LBj6 .color1 {
  color: #3dcc14;
}
.cid-uCIUV8LBj6 .color2 {
  color: #3dcc14;
}
.cid-uCIUV8LBj6 LI {
  color: #767676;
}
.cid-uCIUV8LBj6 .price-term {
  color: #767676;
}
.cid-seRh0HSnaw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-seRh0HSnaw .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-seRh0HSnaw .panel-group {
  width: 100%;
}
.cid-seRh0HSnaw .panel-text,
.cid-seRh0HSnaw .header-text,
.cid-seRh0HSnaw .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-seRh0HSnaw .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-seRh0HSnaw .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-seRh0HSnaw .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-seRh0HSnaw .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-seRh0HSnaw .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-seRh0HSnaw .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-seRh0HSnaw .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #188ef4;
}
.cid-seRh0HSnaw .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #ffffff !important;
}
.cid-seRh0HSnaw .card .panel-body {
  background: #ffffff;
}
.cid-seRh0HSnaw .sign {
  color: #232323;
}
.cid-rSAjpdnOQQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-rSAjpdnOQQ .btn {
  margin: 0 0 .5rem 0;
}
.cid-sYXeyP5jNt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sYXeyP5jNt .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sYXeyP5jNt .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sYXeyP5jNt .col + .mbr-section-btn .btn,
.cid-sYXeyP5jNt .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sYXeyP5jNt .col + .mbr-section-btn .btn,
  .cid-sYXeyP5jNt .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sYXeyP5jNt .dragArea > *:nth-last-child(2).col,
  .cid-sYXeyP5jNt .dragArea > *:nth-last-child(2).col-auto,
  .cid-sYXeyP5jNt .col + .mbr-section-btn,
  .cid-sYXeyP5jNt .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sYXeyP5jNt .dragArea {
    flex-direction: column;
  }
}
.cid-sYXeyP5jNt .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sYXeyP5jNt .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sYXeyP5jNt .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sYXeyP5jNt .form-group {
  max-width: 220px;
}
.cid-sYXeyP5jNt .mbr-section-btn {
  padding-left: 0;
}
.cid-sYXeyP5jNt .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sYXeyP5jNt .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sYXeyP5jNt .mbr-text {
  color: #444;
}
.cid-sYXeyP5jNt h5 {
  margin-bottom: 0;
}
.cid-sYXeyP5jNt .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sYXeyP5jNt .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYXeyP5jNt .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sYXeyP5jNt .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYXeyP5jNt .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sYXeyP5jNt .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sYXeyP5jNt .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sYXeyP5jNt .social-list a:hover {
  opacity: 0.4;
}
.cid-sYXeyP5jNt .media-container-row > div {
  padding: 0px;
}
.cid-sYXeyP5jNt .text2 {
  color: #000000;
  text-align: left;
}
.cid-sYXeyP5jNt .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sYXeyP5jNt .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sYXeyP5jNt .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sYXeyP5jNt .social-list,
  .cid-sYXeyP5jNt .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sYXeyP5jNt h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sYXeyP5jNt .form-group {
    max-width: 180px;
  }
}
.cid-sYXeyP5jNt .links span {
  color: #9e9e9e;
}
.cid-sYXeyP5jNt .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sYXeyP5jNt .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-rStWBGbX8w {
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sZgl0eqptS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sZgl0eqptS .row {
  flex-direction: row-reverse;
}
.cid-sZgl0eqptS .mbr-media span {
  font-size: 2rem;
  transition: all 0.2s;
  color: #0f7699;
  background: #ffffff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
}
.cid-sZgl0eqptS .mbr-media {
  position: relative;
}
.cid-sZgl0eqptS .mbr-media img {
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-sZgl0eqptS .mbr-media {
    margin-bottom: 2rem;
  }
}
.cid-sZgl0eqptS .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-sZgl0eqptS .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-sZgl0eqptS .card-title {
  padding: 0;
  margin: 0;
}
.cid-sZgl0eqptS .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sZgl0eqptS .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sZgl0eqptS .card-wrapper {
    width: fit-content;
  }
}
.cid-sZgl0eqptS .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
@media (max-width: 991px) {
  .cid-sZgl0eqptS .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZgl0eqptS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sZgl0eqptS .card-title,
.cid-sZgl0eqptS .card-icon {
  color: #5b6c8f;
}
.cid-sZgl0eqptS .mbr-section-title {
  color: #103178;
}
.cid-sZgl0eqptS .mbr-text,
.cid-sZgl0eqptS .mbr-section-btn {
  color: #103178;
}
.cid-sZgl0eqptS .price-title {
  text-align: center;
  color: #103178;
}
.cid-sZgl0eqptS .price {
  text-align: center;
  color: #103178;
}
.cid-sZgl0eqptS .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sZgl0eqptS .mbr-media a:hover {
  background-image: none!important;
}
.cid-sZgl0eqptS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sZgl0eqptS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sZgl0eqptS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sZgl0eqptS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sZgl0eqptS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-rStWpozWY2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rStWpozWY2 .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rStWpozWY2 .section-text {
  padding: 2rem 0;
}
.cid-rStWpozWY2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rStWpozWY2 .inner-container {
    width: 100% !important;
  }
}
.cid-rStWpozWY2 .section-text DIV {
  text-align: left;
}
.cid-rStXEmyXho {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #5b686b;
}
.cid-rStXEmyXho .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-rStXEmyXho .mbr-author-name {
  font-weight: bold;
}
.cid-rStXEmyXho .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rStXEmyXho .mbr-figure,
  .cid-rStXEmyXho img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rStXEmyXho .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uCIUYW7Dwp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uCIUYW7Dwp .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-uCIUYW7Dwp .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-uCIUYW7Dwp .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-uCIUYW7Dwp .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-uCIUYW7Dwp .plan .list-group-item:last-child::after {
  display: none;
}
.cid-uCIUYW7Dwp .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-uCIUYW7Dwp .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCIUYW7Dwp .price-figure {
  font-weight: 700;
  color: #a000b1;
}
.cid-uCIUYW7Dwp .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-uCIUYW7Dwp .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uCIUYW7Dwp SPAN {
  color: #000000;
}
.cid-uCIUYW7Dwp UL {
  color: #000000;
}
.cid-s89ABZRrVc {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-s89ABZRrVc svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-s89ABZRrVc .mbr-text,
.cid-s89ABZRrVc .mbr-section-btn {
  color: #716c80;
}
.cid-s89ABZRrVc #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-s89ABZRrVc #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-s89ABZRrVc H1 {
  color: #a000b1;
}
.cid-s89ABZRrVc img {
  width: 70%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(255, 102, 140, 0.35);
}
.cid-s89ABZRrVc .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-s89ABZRrVc .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-s89ABZRrVc img {
    left: 0px;
    width: 100%;
  }
}
.cid-sYXeJbLhTs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sYXeJbLhTs .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sYXeJbLhTs .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sYXeJbLhTs .col + .mbr-section-btn .btn,
.cid-sYXeJbLhTs .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sYXeJbLhTs .col + .mbr-section-btn .btn,
  .cid-sYXeJbLhTs .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sYXeJbLhTs .dragArea > *:nth-last-child(2).col,
  .cid-sYXeJbLhTs .dragArea > *:nth-last-child(2).col-auto,
  .cid-sYXeJbLhTs .col + .mbr-section-btn,
  .cid-sYXeJbLhTs .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sYXeJbLhTs .dragArea {
    flex-direction: column;
  }
}
.cid-sYXeJbLhTs .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sYXeJbLhTs .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sYXeJbLhTs .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sYXeJbLhTs .form-group {
  max-width: 220px;
}
.cid-sYXeJbLhTs .mbr-section-btn {
  padding-left: 0;
}
.cid-sYXeJbLhTs .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sYXeJbLhTs .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sYXeJbLhTs .mbr-text {
  color: #444;
}
.cid-sYXeJbLhTs h5 {
  margin-bottom: 0;
}
.cid-sYXeJbLhTs .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sYXeJbLhTs .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYXeJbLhTs .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sYXeJbLhTs .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYXeJbLhTs .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sYXeJbLhTs .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sYXeJbLhTs .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sYXeJbLhTs .social-list a:hover {
  opacity: 0.4;
}
.cid-sYXeJbLhTs .media-container-row > div {
  padding: 0px;
}
.cid-sYXeJbLhTs .text2 {
  color: #000000;
  text-align: left;
}
.cid-sYXeJbLhTs .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sYXeJbLhTs .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sYXeJbLhTs .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sYXeJbLhTs .social-list,
  .cid-sYXeJbLhTs .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sYXeJbLhTs h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sYXeJbLhTs .form-group {
    max-width: 180px;
  }
}
.cid-sYXeJbLhTs .links span {
  color: #9e9e9e;
}
.cid-sYXeJbLhTs .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sYXeJbLhTs .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sAsuaGC8YP {
  display: flex;
  padding-top: 150px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/shutterstock-493599352-2000x1333.jpg");
}
.cid-sAsuaGC8YP .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #adcde9);
}
.cid-sAsuaGC8YP .mbr-section-title {
  margin: 0;
}
.cid-sAsuaGC8YP .mbr-text {
  color: #efefef;
}
.cid-sAsuaGC8YP .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sAsuaGC8YP .card-img {
  text-align: left;
}
.cid-sAsuaGC8YP .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sAsuaGC8YP .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAsuaGC8YP .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sAsuaGC8YP .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sAsuaGC8YP .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sAsuaGC8YP .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-skAZwLNfVg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-skAZwLNfVg P {
  color: #767676;
}
.cid-skAYcl84qE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f1730b;
}
.cid-skAYcl84qE .mbr-section-subtitle {
  color: #000000;
}
.cid-skAYcl84qE .mbr-text {
  color: #ffffff;
}
.cid-t0bvSaFUbq {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-t0bvSaFUbq .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-t0bvSaFUbq h4 {
  margin: 0;
}
.cid-t0bvSaFUbq .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-t0bvSaFUbq .plan-body {
  padding-bottom: 2rem;
}
.cid-t0bvSaFUbq .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t0bvSaFUbq .nav-tabs {
  border: none !important;
}
.cid-t0bvSaFUbq .nav-tabs .nav-item {
  margin: 0;
}
.cid-t0bvSaFUbq .nav-tabs .btn {
  transition: all 0.5s;
  border: none !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0bvSaFUbq .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-t0bvSaFUbq .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-t0bvSaFUbq .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-t0bvSaFUbq .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-t0bvSaFUbq .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-t0bvSaFUbq .line2 {
  background: #255085;
}
.cid-t0bvSaFUbq .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-t0bvSaFUbq .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-t0bvSaFUbq .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-t0bvSaFUbq .plan .list-group-item:last-child::after {
  display: none;
}
.cid-t0bvSaFUbq .plan-header,
.cid-t0bvSaFUbq .plan-body {
  background-color: #fff;
}
.cid-t0bvSaFUbq .price-figure {
  font-weight: 700;
}
.cid-t0bvSaFUbq .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-t0bvSaFUbq .price-figure {
    font-size: 4.25rem;
  }
}
.cid-t0bvSaFUbq .color1 {
  color: #fa7300;
}
.cid-t0bvSaFUbq .color2 {
  color: #fa7300;
}
.cid-t0bvSaFUbq LI {
  color: #767676;
}
.cid-t0bvSaFUbq .price-term {
  color: #767676;
}
.cid-t0cbpPNB6p {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-t0cbpPNB6p .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-t0cbpPNB6p h4 {
  margin: 0;
}
.cid-t0cbpPNB6p .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-t0cbpPNB6p .plan-body {
  padding-bottom: 2rem;
}
.cid-t0cbpPNB6p .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t0cbpPNB6p .nav-tabs {
  border: none !important;
}
.cid-t0cbpPNB6p .nav-tabs .nav-item {
  margin: 0;
}
.cid-t0cbpPNB6p .nav-tabs .btn {
  transition: all 0.5s;
  border: none !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0cbpPNB6p .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-t0cbpPNB6p .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-t0cbpPNB6p .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-t0cbpPNB6p .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-t0cbpPNB6p .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-t0cbpPNB6p .line2 {
  background: #255085;
}
.cid-t0cbpPNB6p .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-t0cbpPNB6p .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-t0cbpPNB6p .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-t0cbpPNB6p .plan .list-group-item:last-child::after {
  display: none;
}
.cid-t0cbpPNB6p .plan-header,
.cid-t0cbpPNB6p .plan-body {
  background-color: #fff;
}
.cid-t0cbpPNB6p .price-figure {
  font-weight: 700;
}
.cid-t0cbpPNB6p .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-t0cbpPNB6p .price-figure {
    font-size: 4.25rem;
  }
}
.cid-t0cbpPNB6p .color1 {
  color: #fa7300;
}
.cid-t0cbpPNB6p .color2 {
  color: #fa7300;
}
.cid-t0cbpPNB6p LI {
  color: #767676;
}
.cid-t0cbpPNB6p .price-term {
  color: #767676;
}
.cid-slDsyE6B1M {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slDsyE6B1M .counter-container {
  color: #767676;
}
.cid-slDsyE6B1M .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-slDsyE6B1M .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-slDsyE6B1M .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-slDsyE6B1M .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #fa7300;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-skAYcR2Y4L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0f7699;
}
.cid-skAYcR2Y4L .mbr-text {
  color: #ffffff;
}
.cid-skAYcR2Y4L .mbr-section-subtitle {
  color: #000000;
}
.cid-skAYcR2Y4L H2 {
  color: #ffffff;
}
.cid-t0cA8lTIWu {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-t0cA8lTIWu .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-t0cA8lTIWu h4 {
  margin: 0;
}
.cid-t0cA8lTIWu .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-t0cA8lTIWu .plan-body {
  padding-bottom: 2rem;
}
.cid-t0cA8lTIWu .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t0cA8lTIWu .nav-tabs {
  border: none !important;
}
.cid-t0cA8lTIWu .nav-tabs .nav-item {
  margin: 0;
}
.cid-t0cA8lTIWu .nav-tabs .btn {
  transition: all 0.5s;
  border: none !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0cA8lTIWu .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-t0cA8lTIWu .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-t0cA8lTIWu .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-t0cA8lTIWu .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-t0cA8lTIWu .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-t0cA8lTIWu .line2 {
  background: #255085;
}
.cid-t0cA8lTIWu .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-t0cA8lTIWu .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-t0cA8lTIWu .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-t0cA8lTIWu .plan .list-group-item:last-child::after {
  display: none;
}
.cid-t0cA8lTIWu .plan-header,
.cid-t0cA8lTIWu .plan-body {
  background-color: #fff;
}
.cid-t0cA8lTIWu .price-figure {
  font-weight: 700;
}
.cid-t0cA8lTIWu .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-t0cA8lTIWu .price-figure {
    font-size: 4.25rem;
  }
}
.cid-t0cA8lTIWu .color1 {
  color: #0f7699;
}
.cid-t0cA8lTIWu .color2 {
  color: #0f7699;
}
.cid-t0cA8lTIWu LI {
  color: #767676;
}
.cid-t0cA8lTIWu .price-term {
  color: #767676;
}
.cid-t0cA8OlrK1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-t0cA8OlrK1 .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-t0cA8OlrK1 h4 {
  margin: 0;
}
.cid-t0cA8OlrK1 .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-t0cA8OlrK1 .plan-body {
  padding-bottom: 2rem;
}
.cid-t0cA8OlrK1 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t0cA8OlrK1 .nav-tabs {
  border: none !important;
}
.cid-t0cA8OlrK1 .nav-tabs .nav-item {
  margin: 0;
}
.cid-t0cA8OlrK1 .nav-tabs .btn {
  transition: all 0.5s;
  border: none !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0cA8OlrK1 .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-t0cA8OlrK1 .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-t0cA8OlrK1 .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-t0cA8OlrK1 .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-t0cA8OlrK1 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-t0cA8OlrK1 .line2 {
  background: #255085;
}
.cid-t0cA8OlrK1 .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-t0cA8OlrK1 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-t0cA8OlrK1 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-t0cA8OlrK1 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-t0cA8OlrK1 .plan-header,
.cid-t0cA8OlrK1 .plan-body {
  background-color: #fff;
}
.cid-t0cA8OlrK1 .price-figure {
  font-weight: 700;
}
.cid-t0cA8OlrK1 .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-t0cA8OlrK1 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-t0cA8OlrK1 .color1 {
  color: #0f7699;
}
.cid-t0cA8OlrK1 .color2 {
  color: #0f7699;
}
.cid-t0cA8OlrK1 LI {
  color: #767676;
}
.cid-t0cA8OlrK1 .price-term {
  color: #767676;
}
.cid-slDszIkhp3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slDszIkhp3 .counter-container {
  color: #767676;
}
.cid-slDszIkhp3 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-slDszIkhp3 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-slDszIkhp3 .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-slDszIkhp3 .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #0f7699;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-rSB5sZd0YS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a000b1;
}
.cid-rSB5sZd0YS .mbr-text {
  color: #ffffff;
}
.cid-rSB5sZd0YS .mbr-section-subtitle {
  color: #000000;
}
.cid-rSB5wJPRWJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rSB5wJPRWJ .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-rSB5wJPRWJ .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-rSB5wJPRWJ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-rSB5wJPRWJ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-rSB5wJPRWJ .plan .list-group-item:last-child::after {
  display: none;
}
.cid-rSB5wJPRWJ .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-rSB5wJPRWJ .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rSB5wJPRWJ .price-figure {
  font-weight: 700;
  color: #a000b1;
}
.cid-rSB5wJPRWJ .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-rSB5wJPRWJ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rSB5wJPRWJ SPAN {
  color: #000000;
}
.cid-rSB5wJPRWJ UL {
  color: #000000;
}
.cid-slDsAjlt9A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slDsAjlt9A .counter-container {
  color: #767676;
}
.cid-slDsAjlt9A .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-slDsAjlt9A .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-slDsAjlt9A .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-slDsAjlt9A .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #a000b1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-rSB5tH9CcZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2bc741;
}
.cid-rSB5tH9CcZ .mbr-text {
  color: #ffffff;
}
.cid-rSB5tH9CcZ .mbr-section-subtitle {
  color: #000000;
}
.cid-t258EH2OzQ {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-t258EH2OzQ .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-t258EH2OzQ h4 {
  margin: 0;
}
.cid-t258EH2OzQ .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-t258EH2OzQ .plan-body {
  padding-bottom: 2rem;
}
.cid-t258EH2OzQ .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t258EH2OzQ .nav-tabs {
  border: none !important;
}
.cid-t258EH2OzQ .nav-tabs .nav-item {
  margin: 0;
}
.cid-t258EH2OzQ .nav-tabs .btn {
  transition: all 0.5s;
  border: none !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-t258EH2OzQ .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-t258EH2OzQ .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-t258EH2OzQ .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-t258EH2OzQ .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-t258EH2OzQ .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-t258EH2OzQ .line2 {
  background: #255085;
}
.cid-t258EH2OzQ .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-t258EH2OzQ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-t258EH2OzQ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-t258EH2OzQ .plan .list-group-item:last-child::after {
  display: none;
}
.cid-t258EH2OzQ .plan-header,
.cid-t258EH2OzQ .plan-body {
  background-color: #fff;
}
.cid-t258EH2OzQ .price-figure {
  font-weight: 700;
}
.cid-t258EH2OzQ .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-t258EH2OzQ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-t258EH2OzQ .color1 {
  color: #3dcc14;
}
.cid-t258EH2OzQ .color2 {
  color: #3dcc14;
}
.cid-t258EH2OzQ LI {
  color: #767676;
}
.cid-t258EH2OzQ .price-term {
  color: #767676;
}
.cid-slDsAYCzIb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-slDsAYCzIb .counter-container {
  color: #767676;
}
.cid-slDsAYCzIb .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-slDsAYCzIb .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-slDsAYCzIb .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-slDsAYCzIb .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #3dcc14;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-sqzkTsBndI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sqzkTsBndI h4 {
  display: flex;
  letter-spacing: 0.03em;
  color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqzkTsBndI .panel-text {
  letter-spacing: 0.03em;
  color: #232323;
}
.cid-sqzkTsBndI .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sqzkTsBndI .mbr-section-subtitle {
  letter-spacing: 0.03em;
  font-weight: 500;
}
.cid-sqzkTsBndI .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sqzkTsBndI .panel-group {
  width: 100%;
}
.cid-sqzkTsBndI .card {
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-sqzkTsBndI .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
}
.cid-sqzkTsBndI .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #0f7699;
  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;
}
.cid-sqzkTsBndI .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sqzkTsBndI .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sqzkTsBndI .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-sqzkTsBndI .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-sqzkTsBndI .card .panel-body {
  background: #ffffff;
}
.cid-sqzkTsBndI .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqzkTsBndI .sign {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sqzkTsBndI .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sqzkTsBndI .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-sH2rgnhfBN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sH2rgnhfBN .container-fluid {
  padding: 0 3rem;
}
.cid-sH2rgnhfBN ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sH2rgnhfBN ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-sH2rgnhfBN ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-sH2rgnhfBN ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-sH2rgnhfBN .container-fluid {
    padding: 0 1rem;
  }
  .cid-sH2rgnhfBN .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-sH2rgnhfBN .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sH2rgnhfBN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #0f7699, #ff3366);
  display: inline-block;
}
.cid-t2qgj8vqpd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t2qgj8vqpd .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-t2qgj8vqpd .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-t2qgj8vqpd .col + .mbr-section-btn .btn,
.cid-t2qgj8vqpd .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-t2qgj8vqpd .col + .mbr-section-btn .btn,
  .cid-t2qgj8vqpd .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-t2qgj8vqpd .dragArea > *:nth-last-child(2).col,
  .cid-t2qgj8vqpd .dragArea > *:nth-last-child(2).col-auto,
  .cid-t2qgj8vqpd .col + .mbr-section-btn,
  .cid-t2qgj8vqpd .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-t2qgj8vqpd .dragArea {
    flex-direction: column;
  }
}
.cid-t2qgj8vqpd .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-t2qgj8vqpd .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-t2qgj8vqpd .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-t2qgj8vqpd .form-group {
  max-width: 220px;
}
.cid-t2qgj8vqpd .mbr-section-btn {
  padding-left: 0;
}
.cid-t2qgj8vqpd .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-t2qgj8vqpd .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-t2qgj8vqpd .mbr-text {
  color: #444;
}
.cid-t2qgj8vqpd h5 {
  margin-bottom: 0;
}
.cid-t2qgj8vqpd .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-t2qgj8vqpd .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t2qgj8vqpd .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-t2qgj8vqpd .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t2qgj8vqpd .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t2qgj8vqpd .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-t2qgj8vqpd .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t2qgj8vqpd .social-list a:hover {
  opacity: 0.4;
}
.cid-t2qgj8vqpd .media-container-row > div {
  padding: 0px;
}
.cid-t2qgj8vqpd .text2 {
  color: #000000;
  text-align: left;
}
.cid-t2qgj8vqpd .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-t2qgj8vqpd .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t2qgj8vqpd .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-t2qgj8vqpd .social-list,
  .cid-t2qgj8vqpd .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t2qgj8vqpd h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-t2qgj8vqpd .form-group {
    max-width: 180px;
  }
}
.cid-t2qgj8vqpd .links span {
  color: #9e9e9e;
}
.cid-t2qgj8vqpd .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-t2qgj8vqpd .logo-title {
  text-align: center;
}
.cid-uPJLhWo54F.popup-builder {
  background-color: #ffffff;
}
.cid-uPJLhWo54F.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uPJLhWo54F.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uPJLhWo54F .modal-content,
.cid-uPJLhWo54F .modal-dialog {
  height: auto;
}
.cid-uPJLhWo54F .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPJLhWo54F .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uPJLhWo54F .form-wrapper .mbr-form .form-group,
  .cid-uPJLhWo54F .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uPJLhWo54F .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uPJLhWo54F .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPJLhWo54F .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uPJLhWo54F .pt-0 {
  padding-top: 0 !important;
}
.cid-uPJLhWo54F .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uPJLhWo54F .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uPJLhWo54F .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uPJLhWo54F .modal-open {
  overflow: hidden;
}
.cid-uPJLhWo54F .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uPJLhWo54F .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uPJLhWo54F .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uPJLhWo54F .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uPJLhWo54F .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uPJLhWo54F .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uPJLhWo54F .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uPJLhWo54F .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uPJLhWo54F .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uPJLhWo54F .modal-backdrop.fade {
  opacity: 0;
}
.cid-uPJLhWo54F .modal-backdrop.show {
  opacity: .5;
}
.cid-uPJLhWo54F .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-uPJLhWo54F .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uPJLhWo54F .modal-header .close:hover {
  opacity: 1;
}
.cid-uPJLhWo54F .modal-header .close:focus {
  outline: none;
}
.cid-uPJLhWo54F .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #a000b1;
}
.cid-uPJLhWo54F .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-uPJLhWo54F .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-uPJLhWo54F .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uPJLhWo54F .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uPJLhWo54F .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uPJLhWo54F .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uPJLhWo54F .modal-sm {
    max-width: 300px;
  }
  .cid-uPJLhWo54F .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uPJLhWo54F .modal-lg,
  .cid-uPJLhWo54F .modal-xl {
    max-width: 800px;
  }
  .cid-uPJLhWo54F .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uPJLhWo54F .modal-xl {
    max-width: 1140px;
  }
  .cid-uPJLhWo54F .container {
    max-width: 1140px;
  }
}
.cid-uPJLhWo54F .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uPJLhWo54F .container {
    max-width: 720px;
  }
}
.cid-uPJLhWo54F .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uPJLhWo54F .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uPJLhWo54F .form-group {
  margin-bottom: 1rem;
}
.cid-uPJLhWo54F .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uPJLhWo54F .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uPJLhWo54F .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sH3t83rerH.popup-builder {
  background-color: #ffffff;
}
.cid-sH3t83rerH.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sH3t83rerH.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sH3t83rerH .modal-content,
.cid-sH3t83rerH .modal-dialog {
  height: auto;
}
.cid-sH3t83rerH .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sH3t83rerH .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sH3t83rerH .form-wrapper .mbr-form .form-group,
  .cid-sH3t83rerH .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sH3t83rerH .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sH3t83rerH .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sH3t83rerH .mbr-text {
  text-align: center;
}
.cid-sH3t83rerH .pt-0 {
  padding-top: 0 !important;
}
.cid-sH3t83rerH .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sH3t83rerH .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sH3t83rerH .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sH3t83rerH .modal-open {
  overflow: hidden;
}
.cid-sH3t83rerH .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sH3t83rerH .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sH3t83rerH .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sH3t83rerH .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sH3t83rerH .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sH3t83rerH .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sH3t83rerH .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sH3t83rerH .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sH3t83rerH .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sH3t83rerH .modal-backdrop.fade {
  opacity: 0;
}
.cid-sH3t83rerH .modal-backdrop.show {
  opacity: .5;
}
.cid-sH3t83rerH .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sH3t83rerH .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sH3t83rerH .modal-header {
    padding: 1rem;
  }
}
.cid-sH3t83rerH .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sH3t83rerH .modal-header .close:hover {
  opacity: 1;
}
.cid-sH3t83rerH .modal-header .close:focus {
  outline: none;
}
.cid-sH3t83rerH .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0f7699;
}
.cid-sH3t83rerH .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sH3t83rerH .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sH3t83rerH .modal-body {
    padding: 1rem;
  }
}
.cid-sH3t83rerH .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sH3t83rerH .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sH3t83rerH .modal-footer {
    padding: 1rem;
  }
}
.cid-sH3t83rerH .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sH3t83rerH .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sH3t83rerH .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sH3t83rerH .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sH3t83rerH .modal-sm {
    max-width: 300px;
  }
  .cid-sH3t83rerH .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sH3t83rerH .modal-lg,
  .cid-sH3t83rerH .modal-xl {
    max-width: 800px;
  }
  .cid-sH3t83rerH .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sH3t83rerH .modal-xl {
    max-width: 1140px;
  }
  .cid-sH3t83rerH .container {
    max-width: 1140px;
  }
}
.cid-sH3t83rerH .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sH3t83rerH .container {
    max-width: 720px;
  }
}
.cid-sH3t83rerH .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sH3t83rerH .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sH3t83rerH .form-group {
  margin-bottom: 1rem;
}
.cid-sH3t83rerH .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sH3t83rerH .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sH3t83rerH .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sH3t83rerH .mbr-section-btn {
  margin: 0;
}
.cid-sH3t83rerH .mbr-section-btn .btn {
  margin: 0;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sflf8Hte4W {
  padding-top: 120px;
  background-image: url("../../../assets/images/tecnologia-1024x600.jpg");
}
.cid-sflf8Hte4W .container {
  margin-bottom: 15%;
}
.cid-sflf8Hte4W .content-container .btn-bgr {
  z-index: 0;
}
.cid-sflf8Hte4W .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sflf8Hte4W .icon-block-top span {
  background-color: #172eca;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sflf8Hte4W .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sflf8Hte4W .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sflf8Hte4W .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sflf8Hte4W .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sflf8Hte4W .box-item-text,
.cid-sflf8Hte4W .mbr-section-btn {
  color: #8d97ad;
}
.cid-sflf8Hte4W .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sflf8Hte4W .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sflf8Hte4W .box-list li:last-child {
  border-bottom: none;
}
.cid-sflf8Hte4W .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sflf8Hte4W .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sflf8Hte4W .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sflf8Hte4W .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sflf8Hte4W .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sflf8Hte4W .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sflf8Hte4W .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sflf8Hte4W .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sflf8Hte4W .mbr-text {
  color: #efefef;
}
.cid-sflf8Hte4W H1 {
  color: #ffffff;
}
.cid-sqEt53PSIv {
  padding-top: 0px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/17.jpg");
}
.cid-sqEt53PSIv .block {
  background-color: #ffda00;
}
.cid-sqEt53PSIv img {
  width: 100%;
}
.cid-sqEt53PSIv .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
  display: flex;
  justify-content: flex-end;
}
.cid-sqEt53PSIv .content {
  max-width: 600px;
}
.cid-sqEt53PSIv h4 {
  position: absolute;
  transform: rotate(270deg);
  transform-origin: bottom left;
  left: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sqEt53PSIv .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sqEt53PSIv h4 {
    left: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sqEt53PSIv .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sqEt53PSIv h4 {
    left: 2rem;
    bottom: 30%;
  }
  .cid-sqEt53PSIv .content-wrapper {
    padding-left: 3rem;
  }
}
.cid-sfliIaYfE7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sfliIaYfE7 .mbr-text,
.cid-sfliIaYfE7 blockquote {
  color: #767676;
}
.cid-sfliZqoYIS {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/ofrecer-servicio-949x250.jpg");
}
.cid-sYXePOBTsZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sYXePOBTsZ .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sYXePOBTsZ .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sYXePOBTsZ .col + .mbr-section-btn .btn,
.cid-sYXePOBTsZ .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sYXePOBTsZ .col + .mbr-section-btn .btn,
  .cid-sYXePOBTsZ .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sYXePOBTsZ .dragArea > *:nth-last-child(2).col,
  .cid-sYXePOBTsZ .dragArea > *:nth-last-child(2).col-auto,
  .cid-sYXePOBTsZ .col + .mbr-section-btn,
  .cid-sYXePOBTsZ .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sYXePOBTsZ .dragArea {
    flex-direction: column;
  }
}
.cid-sYXePOBTsZ .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sYXePOBTsZ .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sYXePOBTsZ .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sYXePOBTsZ .form-group {
  max-width: 220px;
}
.cid-sYXePOBTsZ .mbr-section-btn {
  padding-left: 0;
}
.cid-sYXePOBTsZ .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sYXePOBTsZ .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sYXePOBTsZ .mbr-text {
  color: #444;
}
.cid-sYXePOBTsZ h5 {
  margin-bottom: 0;
}
.cid-sYXePOBTsZ .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sYXePOBTsZ .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYXePOBTsZ .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sYXePOBTsZ .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYXePOBTsZ .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sYXePOBTsZ .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sYXePOBTsZ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sYXePOBTsZ .social-list a:hover {
  opacity: 0.4;
}
.cid-sYXePOBTsZ .media-container-row > div {
  padding: 0px;
}
.cid-sYXePOBTsZ .text2 {
  color: #000000;
  text-align: left;
}
.cid-sYXePOBTsZ .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sYXePOBTsZ .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sYXePOBTsZ .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sYXePOBTsZ .social-list,
  .cid-sYXePOBTsZ .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sYXePOBTsZ h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sYXePOBTsZ .form-group {
    max-width: 180px;
  }
}
.cid-sYXePOBTsZ .links span {
  color: #9e9e9e;
}
.cid-sYXePOBTsZ .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sYXePOBTsZ .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-rTKpJ9ytdc {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rTKpJ9ytdc .images-container.container-fluid {
  padding: 0;
}
.cid-rTKpJ9ytdc .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rTKpJ9ytdc .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rTKpJ9ytdc .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rTKpJ9ytdc .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rTKpJ9ytdc .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rTKpJ9ytdc .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rTKpJ9ytdc .img-item {
    width: 100% !important;
  }
  .cid-rTKpJ9ytdc .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sIwQkQg29w {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sIwQkQg29w .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sIwQkQg29w .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sIwQkQg29w .col + .mbr-section-btn .btn,
.cid-sIwQkQg29w .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sIwQkQg29w .col + .mbr-section-btn .btn,
  .cid-sIwQkQg29w .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sIwQkQg29w .dragArea > *:nth-last-child(2).col,
  .cid-sIwQkQg29w .dragArea > *:nth-last-child(2).col-auto,
  .cid-sIwQkQg29w .col + .mbr-section-btn,
  .cid-sIwQkQg29w .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sIwQkQg29w .dragArea {
    flex-direction: column;
  }
}
.cid-sIwQkQg29w .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sIwQkQg29w .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sIwQkQg29w .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sIwQkQg29w .form-group {
  max-width: 220px;
}
.cid-sIwQkQg29w .mbr-section-btn {
  padding-left: 0;
}
.cid-sIwQkQg29w .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sIwQkQg29w .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sIwQkQg29w .mbr-text {
  color: #444;
}
.cid-sIwQkQg29w h5 {
  margin-bottom: 0;
}
.cid-sIwQkQg29w .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sIwQkQg29w .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIwQkQg29w .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sIwQkQg29w .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sIwQkQg29w .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sIwQkQg29w .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sIwQkQg29w .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sIwQkQg29w .social-list a:hover {
  opacity: 0.4;
}
.cid-sIwQkQg29w .media-container-row > div {
  padding: 0px;
}
.cid-sIwQkQg29w .text2 {
  color: #000000;
  text-align: left;
}
.cid-sIwQkQg29w .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sIwQkQg29w .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sIwQkQg29w .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sIwQkQg29w .social-list,
  .cid-sIwQkQg29w .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sIwQkQg29w h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sIwQkQg29w .form-group {
    max-width: 180px;
  }
}
.cid-sIwQkQg29w .links span {
  color: #9e9e9e;
}
.cid-sIwQkQg29w .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sIwQkQg29w .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-s6swAX0749 {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s6swAX0749 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sIwQHnFtiz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sIwQHnFtiz .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sIwQHnFtiz .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sIwQHnFtiz .col + .mbr-section-btn .btn,
.cid-sIwQHnFtiz .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sIwQHnFtiz .col + .mbr-section-btn .btn,
  .cid-sIwQHnFtiz .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sIwQHnFtiz .dragArea > *:nth-last-child(2).col,
  .cid-sIwQHnFtiz .dragArea > *:nth-last-child(2).col-auto,
  .cid-sIwQHnFtiz .col + .mbr-section-btn,
  .cid-sIwQHnFtiz .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sIwQHnFtiz .dragArea {
    flex-direction: column;
  }
}
.cid-sIwQHnFtiz .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sIwQHnFtiz .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sIwQHnFtiz .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sIwQHnFtiz .form-group {
  max-width: 220px;
}
.cid-sIwQHnFtiz .mbr-section-btn {
  padding-left: 0;
}
.cid-sIwQHnFtiz .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sIwQHnFtiz .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sIwQHnFtiz .mbr-text {
  color: #444;
}
.cid-sIwQHnFtiz h5 {
  margin-bottom: 0;
}
.cid-sIwQHnFtiz .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sIwQHnFtiz .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIwQHnFtiz .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sIwQHnFtiz .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sIwQHnFtiz .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sIwQHnFtiz .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sIwQHnFtiz .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sIwQHnFtiz .social-list a:hover {
  opacity: 0.4;
}
.cid-sIwQHnFtiz .media-container-row > div {
  padding: 0px;
}
.cid-sIwQHnFtiz .text2 {
  color: #000000;
  text-align: left;
}
.cid-sIwQHnFtiz .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sIwQHnFtiz .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sIwQHnFtiz .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sIwQHnFtiz .social-list,
  .cid-sIwQHnFtiz .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sIwQHnFtiz h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sIwQHnFtiz .form-group {
    max-width: 180px;
  }
}
.cid-sIwQHnFtiz .links span {
  color: #9e9e9e;
}
.cid-sIwQHnFtiz .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sIwQHnFtiz .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-skvDM5JtAt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-skvDM5JtAt .mbr-text,
.cid-skvDM5JtAt blockquote {
  color: #767676;
}
.cid-sIwQFCBG0U {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sIwQFCBG0U .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sIwQFCBG0U .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sIwQFCBG0U .col + .mbr-section-btn .btn,
.cid-sIwQFCBG0U .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sIwQFCBG0U .col + .mbr-section-btn .btn,
  .cid-sIwQFCBG0U .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sIwQFCBG0U .dragArea > *:nth-last-child(2).col,
  .cid-sIwQFCBG0U .dragArea > *:nth-last-child(2).col-auto,
  .cid-sIwQFCBG0U .col + .mbr-section-btn,
  .cid-sIwQFCBG0U .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sIwQFCBG0U .dragArea {
    flex-direction: column;
  }
}
.cid-sIwQFCBG0U .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sIwQFCBG0U .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sIwQFCBG0U .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sIwQFCBG0U .form-group {
  max-width: 220px;
}
.cid-sIwQFCBG0U .mbr-section-btn {
  padding-left: 0;
}
.cid-sIwQFCBG0U .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sIwQFCBG0U .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sIwQFCBG0U .mbr-text {
  color: #444;
}
.cid-sIwQFCBG0U h5 {
  margin-bottom: 0;
}
.cid-sIwQFCBG0U .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sIwQFCBG0U .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIwQFCBG0U .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sIwQFCBG0U .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sIwQFCBG0U .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sIwQFCBG0U .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sIwQFCBG0U .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sIwQFCBG0U .social-list a:hover {
  opacity: 0.4;
}
.cid-sIwQFCBG0U .media-container-row > div {
  padding: 0px;
}
.cid-sIwQFCBG0U .text2 {
  color: #000000;
  text-align: left;
}
.cid-sIwQFCBG0U .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sIwQFCBG0U .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sIwQFCBG0U .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sIwQFCBG0U .social-list,
  .cid-sIwQFCBG0U .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sIwQFCBG0U h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sIwQFCBG0U .form-group {
    max-width: 180px;
  }
}
.cid-sIwQFCBG0U .links span {
  color: #9e9e9e;
}
.cid-sIwQFCBG0U .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sIwQFCBG0U .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-szFCMRTn3K {
  background-image: url("../../../assets/images/background10.jpg");
}
.cid-szFCMRTn3K .media-content .btn-bgr {
  z-index: 0;
}
.cid-szFCMRTn3K .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-szFCMRTn3K .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-szFCMRTn3K {
    text-align: center !important;
  }
  .cid-szFCMRTn3K .mbr-text {
    text-align: center;
  }
}
.cid-szFCMRTn3K .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-szFEaZiZzL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-szFEaZiZzL .mbr-text {
  color: #767676;
}
.cid-szFEaZiZzL h4 {
  text-align: center;
}
.cid-szFEaZiZzL p {
  text-align: center;
}
.cid-szFEaZiZzL .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sFguH1mdL1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2ccd2;
}
.cid-sFguH1mdL1 .link-wrap {
  width: 100%;
}
@media (min-width: 1500px) {
  .cid-sFguH1mdL1 .container {
    max-width: 1400px;
  }
}
.cid-sFguH1mdL1 img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-sFguH1mdL1 .link {
  display: inline-block;
}
.cid-sFguH1mdL1 .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-sFguH1mdL1 .link a:before {
  position: absolute;
  right: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-sFguH1mdL1 .link a:hover {
  text-decoration: underline;
}
.cid-sFguH1mdL1 .card {
  min-height: 280px;
  transition: all 0.3s;
}
.cid-sFguH1mdL1 .card-wrapper {
  background-position: center;
  padding: 3rem 2rem;
  background: #ffffff;
  background-size: cover;
  flex-direction: column;
  display: flex;
  transition: all 0.3s;
  justify-content: center;
  align-items: center;
}
.cid-sFguH1mdL1 .card-wrapper:hover {
  transform: scale(0.97);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 10px 20px 0 rgba(0, 0, 0, 0.05);
}
.cid-sFguH1mdL1 .link,
.cid-sFguH1mdL1 .link-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sFguH1mdL1 .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFguH1mdL1 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sFguH1mdL1 .card-subtitle {
  color: #0077ff;
}
.cid-sFguH1mdL1 .mbr-text,
.cid-sFguH1mdL1 .link-wrap {
  color: #555555;
}
.cid-szFSfgPqBy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-szFSfgPqBy h4 {
  display: flex;
  letter-spacing: 0.03em;
  color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szFSfgPqBy .panel-text {
  letter-spacing: 0.03em;
  color: #232323;
}
.cid-szFSfgPqBy .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-szFSfgPqBy .mbr-section-subtitle {
  letter-spacing: 0.03em;
  font-weight: 500;
}
.cid-szFSfgPqBy .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-szFSfgPqBy .panel-group {
  width: 100%;
}
.cid-szFSfgPqBy .card {
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-szFSfgPqBy .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
}
.cid-szFSfgPqBy .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ff8f33;
  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;
}
.cid-szFSfgPqBy .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-szFSfgPqBy .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-szFSfgPqBy .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-szFSfgPqBy .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-szFSfgPqBy .card .panel-body {
  background: #ffffff;
}
.cid-szFSfgPqBy .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-szFSfgPqBy .sign {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szFSfgPqBy .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-szFSfgPqBy .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-szFJKBKlNj {
  background-image: url("../../../assets/images/2-1-1366x768.jpg");
}
.cid-szFJKBKlNj .mbr-section-subtitle {
  letter-spacing: .2rem;
}
.cid-szFJKBKlNj .media-container-column {
  background-color: #0f7699;
}
@media (max-width: 767px) {
  .cid-szFJKBKlNj .media-container-column {
    padding: 1rem !important;
  }
}
.cid-sKYV9Cw8Ok {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sKYV9Cw8Ok .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sKYV9Cw8Ok .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sKYV9Cw8Ok .col + .mbr-section-btn .btn,
.cid-sKYV9Cw8Ok .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sKYV9Cw8Ok .col + .mbr-section-btn .btn,
  .cid-sKYV9Cw8Ok .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sKYV9Cw8Ok .dragArea > *:nth-last-child(2).col,
  .cid-sKYV9Cw8Ok .dragArea > *:nth-last-child(2).col-auto,
  .cid-sKYV9Cw8Ok .col + .mbr-section-btn,
  .cid-sKYV9Cw8Ok .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sKYV9Cw8Ok .dragArea {
    flex-direction: column;
  }
}
.cid-sKYV9Cw8Ok .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sKYV9Cw8Ok .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sKYV9Cw8Ok .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sKYV9Cw8Ok .form-group {
  max-width: 220px;
}
.cid-sKYV9Cw8Ok .mbr-section-btn {
  padding-left: 0;
}
.cid-sKYV9Cw8Ok .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sKYV9Cw8Ok .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sKYV9Cw8Ok .mbr-text {
  color: #444;
}
.cid-sKYV9Cw8Ok h5 {
  margin-bottom: 0;
}
.cid-sKYV9Cw8Ok .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKYV9Cw8Ok .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sKYV9Cw8Ok .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sKYV9Cw8Ok .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKYV9Cw8Ok .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sKYV9Cw8Ok .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKYV9Cw8Ok .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sKYV9Cw8Ok .social-list a:hover {
  opacity: 0.4;
}
.cid-sKYV9Cw8Ok .media-container-row > div {
  padding: 0px;
}
.cid-sKYV9Cw8Ok .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKYV9Cw8Ok .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKYV9Cw8Ok .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sKYV9Cw8Ok .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sKYV9Cw8Ok .social-list,
  .cid-sKYV9Cw8Ok .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sKYV9Cw8Ok h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sKYV9Cw8Ok .form-group {
    max-width: 180px;
  }
}
.cid-sKYV9Cw8Ok .links span {
  color: #9e9e9e;
}
.cid-sKYV9Cw8Ok .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKYV9Cw8Ok .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sFbk6Tc4e2 {
  display: flex;
  background-color: #2c3350;
  background: linear-gradient(90deg, #2c3350, #2c3350);
}
.cid-sFbk6Tc4e2 .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #adcde9);
}
.cid-sFbk6Tc4e2 .mbr-section-title {
  margin: 0;
}
.cid-sFbk6Tc4e2 .mbr-text {
  color: #efefef;
}
.cid-sFbk6Tc4e2 .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sFbk6Tc4e2 .card-img {
  text-align: left;
}
.cid-sFbk6Tc4e2 .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sFbk6Tc4e2 .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sFbk6Tc4e2 .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sFbk6Tc4e2 .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sFbk6Tc4e2 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sFbk6Tc4e2 .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sFbk6Tc4e2 .title-cont,
.cid-sFbk6Tc4e2 .mbr-section-title {
  color: #77f1ac;
}
.cid-sFbGcWtU3u {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #3f51b5;
}
.cid-sFbGcWtU3u .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFbGcWtU3u .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sFbGcWtU3u .mbr-section-title {
  color: #ffffff;
}
.cid-sFbGcWtU3u .mbr-text,
.cid-sFbGcWtU3u .mbr-section-btn {
  color: #ffffff;
}
.cid-sFfBApsjZS {
  padding-top: 100px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sFfBApsjZS .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-sFfBApsjZS .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sFfBApsjZS .text-content {
  padding-right: 1.5rem;
}
.cid-sFfBApsjZS .mbr-text,
.cid-sFfBApsjZS .mbr-section-btn {
  color: #767676;
}
.cid-sFfBApsjZS .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(111, 66, 106, 0.3);
  box-shadow: 0px 0px 30px rgba(111, 66, 106, 0.3);
  border-radius: .25rem;
}
.cid-sFfBApsjZS .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-sFfBApsjZS .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sFfBApsjZS .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sFfBApsjZS .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-sFfBApsjZS .main-row {
    margin: 0;
  }
  .cid-sFfBApsjZS .mbr-section-title,
  .cid-sFfBApsjZS .mbr-text,
  .cid-sFfBApsjZS .list,
  .cid-sFfBApsjZS .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sFfBApsjZS .text-content {
    padding: 0;
  }
}
.cid-sZgkJzJAP9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sZgkJzJAP9 .row {
  flex-direction: row-reverse;
}
.cid-sZgkJzJAP9 .mbr-media span {
  font-size: 2rem;
  transition: all 0.2s;
  color: #0f7699;
  background: #ffffff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
}
.cid-sZgkJzJAP9 .mbr-media {
  position: relative;
}
.cid-sZgkJzJAP9 .mbr-media img {
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-sZgkJzJAP9 .mbr-media {
    margin-bottom: 2rem;
  }
}
.cid-sZgkJzJAP9 .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-sZgkJzJAP9 .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-sZgkJzJAP9 .card-title {
  padding: 0;
  margin: 0;
}
.cid-sZgkJzJAP9 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sZgkJzJAP9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sZgkJzJAP9 .card-wrapper {
    width: fit-content;
  }
}
.cid-sZgkJzJAP9 .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
@media (max-width: 991px) {
  .cid-sZgkJzJAP9 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZgkJzJAP9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sZgkJzJAP9 .card-title,
.cid-sZgkJzJAP9 .card-icon {
  color: #5b6c8f;
}
.cid-sZgkJzJAP9 .mbr-section-title {
  color: #103178;
}
.cid-sZgkJzJAP9 .mbr-text,
.cid-sZgkJzJAP9 .mbr-section-btn {
  color: #103178;
}
.cid-sZgkJzJAP9 .price-title {
  text-align: center;
  color: #103178;
}
.cid-sZgkJzJAP9 .price {
  text-align: center;
  color: #103178;
}
.cid-sZgkJzJAP9 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sZgkJzJAP9 .mbr-media a:hover {
  background-image: none!important;
}
.cid-sZgkJzJAP9 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sZgkJzJAP9 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sZgkJzJAP9 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sZgkJzJAP9 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sZgkJzJAP9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sHNm2CgQhk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr {
  z-index: 0;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-primary-outline {
  border: 1px solid #0f7699;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-primary-outline:hover {
  background-color: #0f7699 !important;
  color: #ffffff !important;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-secondary-outline {
  border: 1px solid #ff3366;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-secondary-outline:hover {
  background-color: #ff3366 !important;
  color: #ffffff !important;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-success-outline {
  border: 1px solid #2bc741;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-success-outline:hover {
  background-color: #2bc741 !important;
  color: #ffffff !important;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-info-outline {
  border: 1px solid #a000b1;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-info-outline:hover {
  background-color: #a000b1 !important;
  color: #ffffff !important;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-warning-outline {
  border: 1px solid #0f7699;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-warning-outline:hover {
  background-color: #0f7699 !important;
  color: #ffffff !important;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-danger-outline {
  border: 1px solid #ff8f33;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-danger-outline:hover {
  background-color: #ff8f33 !important;
  color: #ffffff !important;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sHNm2CgQhk .plan-body .btn-bgr.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sHNm2CgQhk .list-group-item {
  padding: 20px 15px;
}
.cid-sHNm2CgQhk .price-term {
  display: block;
  line-height: 1;
}
.cid-sHNm2CgQhk .plan-header {
  overflow: hidden;
}
.cid-sHNm2CgQhk .plan-header .plan-title {
  background-color: #74a3c7;
  font-weight: 300;
  margin-bottom: 25px;
  padding: 12.5px;
}
.cid-sHNm2CgQhk .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #232323;
  border-left: 1px solid #f6f7f8;
}
.cid-sHNm2CgQhk .plan:first-child {
  border-left: 1px solid transparent;
}
.cid-sHNm2CgQhk .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
  background: transparent;
}
.cid-sHNm2CgQhk .plan:nth-child(3) .plan-title {
  background-color: #62cab1;
}
.cid-sHNm2CgQhk .plan:nth-child(3) .plan-header,
.cid-sHNm2CgQhk .plan:nth-child(3) .plan-body {
  background-color: #ffffff;
}
.cid-sHNm2CgQhk .plan .mbr-section-btn {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
}
.cid-sHNm2CgQhk .plan .mbr-section-btn .btn {
  width: 80%;
}
.cid-sHNm2CgQhk .plan-header,
.cid-sHNm2CgQhk .plan-body {
  background-color: #fafafa;
}
.cid-sHNm2CgQhk .price-figure {
  color: #494949;
  margin-right: -10px;
}
.cid-sHNm2CgQhk .price-value {
  vertical-align: bottom;
  line-height: 2;
  margin-right: 0.25rem;
  color: #494949;
}
@media (max-width: 768px) {
  .cid-sHNm2CgQhk .plan {
    margin-bottom: 15px !important;
  }
}
@media (max-width: 550px) {
  .cid-sHNm2CgQhk .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sFbkPiaNKO {
  padding-top: 14rem;
  padding-bottom: 14rem;
  background-color: #3f51b5;
}
@media (max-width: 992px) {
  .cid-sFbkPiaNKO {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }
}
.cid-sFbkPiaNKO .text-wrapper {
  z-index: 11;
}
.cid-sFbkPiaNKO .wrapper {
  display: flex;
}
.cid-sFbkPiaNKO section {
  overflow: hidden;
}
.cid-sFbkPiaNKO .image-wrapper {
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-sFbkPiaNKO .image-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
  }
}
@media (max-width: 1200px) {
  .cid-sFbkPiaNKO .image-wrapper {
    max-width: 450px;
  }
}
@media (max-width: 992px) {
  .cid-sFbkPiaNKO .image-wrapper {
    max-width: 550px;
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sFbkPiaNKO .image-wrapper {
    max-width: 280px;
    margin: auto;
    margin-bottom: 3rem;
  }
}
.cid-sFbkPiaNKO .row {
  align-items: center;
}
.cid-sFbkPiaNKO .animate__fadeInUp:before {
  background: #3f51b5;
}
.cid-sFbkPiaNKO .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0f7699;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sFbkPiaNKO .wrapper {
    flex-direction: column;
  }
  .cid-sFbkPiaNKO .iconfont-wrapper {
    margin: auto;
  }
  .cid-sFbkPiaNKO .mbr-iconfont {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-sFbkPiaNKO .mbr-section-title {
  color: #b2ccd2;
  text-align: right;
}
.cid-sFbkPiaNKO .mbr-section-title DIV {
  text-align: right;
}
.cid-sKYVev8FFs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sKYVev8FFs .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sKYVev8FFs .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sKYVev8FFs .col + .mbr-section-btn .btn,
.cid-sKYVev8FFs .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sKYVev8FFs .col + .mbr-section-btn .btn,
  .cid-sKYVev8FFs .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sKYVev8FFs .dragArea > *:nth-last-child(2).col,
  .cid-sKYVev8FFs .dragArea > *:nth-last-child(2).col-auto,
  .cid-sKYVev8FFs .col + .mbr-section-btn,
  .cid-sKYVev8FFs .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sKYVev8FFs .dragArea {
    flex-direction: column;
  }
}
.cid-sKYVev8FFs .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sKYVev8FFs .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sKYVev8FFs .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sKYVev8FFs .form-group {
  max-width: 220px;
}
.cid-sKYVev8FFs .mbr-section-btn {
  padding-left: 0;
}
.cid-sKYVev8FFs .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sKYVev8FFs .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sKYVev8FFs .mbr-text {
  color: #444;
}
.cid-sKYVev8FFs h5 {
  margin-bottom: 0;
}
.cid-sKYVev8FFs .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKYVev8FFs .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sKYVev8FFs .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sKYVev8FFs .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKYVev8FFs .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sKYVev8FFs .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKYVev8FFs .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sKYVev8FFs .social-list a:hover {
  opacity: 0.4;
}
.cid-sKYVev8FFs .media-container-row > div {
  padding: 0px;
}
.cid-sKYVev8FFs .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKYVev8FFs .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKYVev8FFs .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sKYVev8FFs .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sKYVev8FFs .social-list,
  .cid-sKYVev8FFs .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sKYVev8FFs h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sKYVev8FFs .form-group {
    max-width: 180px;
  }
}
.cid-sKYVev8FFs .links span {
  color: #9e9e9e;
}
.cid-sKYVev8FFs .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKYVev8FFs .logo-title {
  text-align: center;
}
.cid-uvy9HMbvSe.popup-builder {
  background-color: #ffffff;
}
.cid-uvy9HMbvSe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uvy9HMbvSe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uvy9HMbvSe .modal-content,
.cid-uvy9HMbvSe .modal-dialog {
  height: auto;
}
.cid-uvy9HMbvSe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uvy9HMbvSe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uvy9HMbvSe .form-wrapper .mbr-form .form-group,
  .cid-uvy9HMbvSe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uvy9HMbvSe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uvy9HMbvSe .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uvy9HMbvSe .mbr-text {
  text-align: center;
}
.cid-uvy9HMbvSe .pt-0 {
  padding-top: 0 !important;
}
.cid-uvy9HMbvSe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uvy9HMbvSe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uvy9HMbvSe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uvy9HMbvSe .modal-open {
  overflow: hidden;
}
.cid-uvy9HMbvSe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uvy9HMbvSe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uvy9HMbvSe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uvy9HMbvSe .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uvy9HMbvSe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uvy9HMbvSe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uvy9HMbvSe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uvy9HMbvSe .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uvy9HMbvSe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uvy9HMbvSe .modal-backdrop.fade {
  opacity: 0;
}
.cid-uvy9HMbvSe .modal-backdrop.show {
  opacity: .5;
}
.cid-uvy9HMbvSe .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uvy9HMbvSe .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvy9HMbvSe .modal-header {
    padding: 1rem;
  }
}
.cid-uvy9HMbvSe .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uvy9HMbvSe .modal-header .close:hover {
  opacity: 1;
}
.cid-uvy9HMbvSe .modal-header .close:focus {
  outline: none;
}
.cid-uvy9HMbvSe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0f7699;
}
.cid-uvy9HMbvSe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uvy9HMbvSe .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvy9HMbvSe .modal-body {
    padding: 1rem;
  }
}
.cid-uvy9HMbvSe .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uvy9HMbvSe .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvy9HMbvSe .modal-footer {
    padding: 1rem;
  }
}
.cid-uvy9HMbvSe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uvy9HMbvSe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uvy9HMbvSe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uvy9HMbvSe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uvy9HMbvSe .modal-sm {
    max-width: 300px;
  }
  .cid-uvy9HMbvSe .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uvy9HMbvSe .modal-lg,
  .cid-uvy9HMbvSe .modal-xl {
    max-width: 800px;
  }
  .cid-uvy9HMbvSe .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uvy9HMbvSe .modal-xl {
    max-width: 1140px;
  }
  .cid-uvy9HMbvSe .container {
    max-width: 1140px;
  }
}
.cid-uvy9HMbvSe .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uvy9HMbvSe .container {
    max-width: 720px;
  }
}
.cid-uvy9HMbvSe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uvy9HMbvSe .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uvy9HMbvSe .form-group {
  margin-bottom: 1rem;
}
.cid-uvy9HMbvSe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uvy9HMbvSe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uvy9HMbvSe .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uvy9HMbvSe .mbr-section-btn {
  margin: 0;
}
.cid-uvy9HMbvSe .mbr-section-btn .btn {
  margin: 0;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sFgXX5Ez1v {
  background-image: url("../../../assets/images/chatbotem.gif");
}
.cid-sFgXX5Ez1v .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-sFgXX5Ez1v .mbr-arrow i {
  color: #ffffff !important;
}
.cid-sFgXX5Ez1v .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sFgXX5Ez1v .animated-element,
.cid-sFgXX5Ez1v .typed-cursor {
  color: #ffffff;
}
.cid-sFgXX5Ez1v .animated-element {
  border-bottom: 5px solid #2bc741;
}
@media (max-width: 767px) {
  .cid-sFgXX5Ez1v .typed-text {
    text-align: center;
  }
}
.cid-sHOcqeiH8v {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sHOcqeiH8v img,
.cid-sHOcqeiH8v .item-img {
  width: 100%;
}
.cid-sHOcqeiH8v .item:focus,
.cid-sHOcqeiH8v span:focus {
  outline: none;
}
.cid-sHOcqeiH8v .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sHOcqeiH8v .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sHOcqeiH8v .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHOcqeiH8v .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sHOcqeiH8v .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sHOcqeiH8v .mbr-section-title {
  color: #232323;
}
.cid-sHOcqeiH8v .mbr-text,
.cid-sHOcqeiH8v .mbr-section-btn {
  text-align: left;
}
.cid-sHOcqeiH8v .item-title {
  text-align: left;
}
.cid-sHOcqeiH8v .item-subtitle {
  text-align: center;
}
.cid-sHObXhsbPZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sHObXhsbPZ h3 {
  font-weight: 300;
}
.cid-sHObXhsbPZ .card-img {
  width: initial;
}
.cid-sHObXhsbPZ .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sHObXhsbPZ .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-sHObXhsbPZ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sHObXhsbPZ .mbr-section-subtitle {
  color: #767676;
}
.cid-sHObXhsbPZ .mbr-text {
  color: #767676;
}
.cid-sHObXhsbPZ .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
}
.cid-sHObXhsbPZ .mbr-al-i-c {
  align-items: center;
}
.cid-sHObYS45GW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sHObYS45GW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sHObYS45GW .card-title {
  margin-bottom: 26px;
  color: #ff3366;
}
.cid-sHObYS45GW .mbr-text {
  margin-bottom: 30px;
}
.cid-sHObYS45GW .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-sHObYS45GW .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-sHObYS45GW .iconfont-wrapper svg #grad_1 {
  stop-color: #2bc741;
}
.cid-sHObYS45GW .iconfont-wrapper svg #grad_2 {
  stop-color: #76e286;
}
.cid-sHObYS45GW .iconfont-wrapper svg #blur_svg {
  flood-color: #2bc741;
}
.cid-sHObYS45GW .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-sHObYS45GW .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHObYS45GW .text-wrapper {
    text-align: center;
  }
  .cid-sHObYS45GW .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sHObYS45GW .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sHObYS45GW .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sHObYS45GW .card-title,
.cid-sHObYS45GW .icon_block {
  color: #232323;
}
.cid-sHObZpZ4x1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sHObZpZ4x1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sHObZpZ4x1 .card-title {
  margin-bottom: 26px;
  color: #ff3366;
}
.cid-sHObZpZ4x1 .mbr-text {
  margin-bottom: 30px;
}
.cid-sHObZpZ4x1 .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-sHObZpZ4x1 .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-sHObZpZ4x1 .iconfont-wrapper svg #grad_1 {
  stop-color: #2bc741;
}
.cid-sHObZpZ4x1 .iconfont-wrapper svg #grad_2 {
  stop-color: #76e286;
}
.cid-sHObZpZ4x1 .iconfont-wrapper svg #blur_svg {
  flood-color: #2bc741;
}
.cid-sHObZpZ4x1 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-sHObZpZ4x1 .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHObZpZ4x1 .text-wrapper {
    text-align: center;
  }
  .cid-sHObZpZ4x1 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sHObZpZ4x1 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sHObZpZ4x1 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sHObZpZ4x1 .card-title,
.cid-sHObZpZ4x1 .icon_block {
  color: #232323;
}
.cid-sZCjjULATh {
  padding-top: 180px;
  background-image: url("../../../assets/images/background15-1.jpg");
}
.cid-sZCjjULATh .container {
  margin-bottom: 15%;
}
.cid-sZCjjULATh .content-container .btn-bgr {
  z-index: 0;
}
.cid-sZCjjULATh .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sZCjjULATh .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-sZCjjULATh .box-item:first-child {
  background-color: #767676;
  margin-top: -200px;
}
.cid-sZCjjULATh .box-item:nth-child(2) {
  background-color: #515151;
}
.cid-sZCjjULATh .box-item:last-child {
  background-color: #5e22f8;
}
.cid-sZCjjULATh .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sZCjjULATh .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sZCjjULATh .box-list li:last-child {
  border-bottom: none;
}
.cid-sZCjjULATh .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sZCjjULATh .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sZCjjULATh .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sZCjjULATh .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-sZCjjULATh .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sZCjjULATh .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-sZCjjULATh .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sZCjjULATh .mbr-text,
.cid-sZCjjULATh .mbr-section-btn {
  color: #232323;
}
.cid-sZCjjULATh H1 {
  color: #232323;
}
.cid-sKYVccaJ6c {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sKYVccaJ6c .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sKYVccaJ6c .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sKYVccaJ6c .col + .mbr-section-btn .btn,
.cid-sKYVccaJ6c .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sKYVccaJ6c .col + .mbr-section-btn .btn,
  .cid-sKYVccaJ6c .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sKYVccaJ6c .dragArea > *:nth-last-child(2).col,
  .cid-sKYVccaJ6c .dragArea > *:nth-last-child(2).col-auto,
  .cid-sKYVccaJ6c .col + .mbr-section-btn,
  .cid-sKYVccaJ6c .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sKYVccaJ6c .dragArea {
    flex-direction: column;
  }
}
.cid-sKYVccaJ6c .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sKYVccaJ6c .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sKYVccaJ6c .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sKYVccaJ6c .form-group {
  max-width: 220px;
}
.cid-sKYVccaJ6c .mbr-section-btn {
  padding-left: 0;
}
.cid-sKYVccaJ6c .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sKYVccaJ6c .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sKYVccaJ6c .mbr-text {
  color: #444;
}
.cid-sKYVccaJ6c h5 {
  margin-bottom: 0;
}
.cid-sKYVccaJ6c .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKYVccaJ6c .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sKYVccaJ6c .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sKYVccaJ6c .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKYVccaJ6c .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sKYVccaJ6c .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKYVccaJ6c .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sKYVccaJ6c .social-list a:hover {
  opacity: 0.4;
}
.cid-sKYVccaJ6c .media-container-row > div {
  padding: 0px;
}
.cid-sKYVccaJ6c .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKYVccaJ6c .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKYVccaJ6c .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sKYVccaJ6c .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sKYVccaJ6c .social-list,
  .cid-sKYVccaJ6c .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sKYVccaJ6c h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sKYVccaJ6c .form-group {
    max-width: 180px;
  }
}
.cid-sKYVccaJ6c .links span {
  color: #9e9e9e;
}
.cid-sKYVccaJ6c .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKYVccaJ6c .logo-title {
  text-align: center;
}
.cid-uvy9I4BGjT.popup-builder {
  background-color: #ffffff;
}
.cid-uvy9I4BGjT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uvy9I4BGjT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uvy9I4BGjT .modal-content,
.cid-uvy9I4BGjT .modal-dialog {
  height: auto;
}
.cid-uvy9I4BGjT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uvy9I4BGjT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uvy9I4BGjT .form-wrapper .mbr-form .form-group,
  .cid-uvy9I4BGjT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uvy9I4BGjT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uvy9I4BGjT .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uvy9I4BGjT .mbr-text {
  text-align: center;
}
.cid-uvy9I4BGjT .pt-0 {
  padding-top: 0 !important;
}
.cid-uvy9I4BGjT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uvy9I4BGjT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uvy9I4BGjT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uvy9I4BGjT .modal-open {
  overflow: hidden;
}
.cid-uvy9I4BGjT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uvy9I4BGjT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uvy9I4BGjT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uvy9I4BGjT .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uvy9I4BGjT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uvy9I4BGjT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uvy9I4BGjT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uvy9I4BGjT .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uvy9I4BGjT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uvy9I4BGjT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uvy9I4BGjT .modal-backdrop.show {
  opacity: .5;
}
.cid-uvy9I4BGjT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uvy9I4BGjT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvy9I4BGjT .modal-header {
    padding: 1rem;
  }
}
.cid-uvy9I4BGjT .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uvy9I4BGjT .modal-header .close:hover {
  opacity: 1;
}
.cid-uvy9I4BGjT .modal-header .close:focus {
  outline: none;
}
.cid-uvy9I4BGjT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0f7699;
}
.cid-uvy9I4BGjT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uvy9I4BGjT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvy9I4BGjT .modal-body {
    padding: 1rem;
  }
}
.cid-uvy9I4BGjT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uvy9I4BGjT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvy9I4BGjT .modal-footer {
    padding: 1rem;
  }
}
.cid-uvy9I4BGjT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uvy9I4BGjT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uvy9I4BGjT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uvy9I4BGjT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uvy9I4BGjT .modal-sm {
    max-width: 300px;
  }
  .cid-uvy9I4BGjT .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uvy9I4BGjT .modal-lg,
  .cid-uvy9I4BGjT .modal-xl {
    max-width: 800px;
  }
  .cid-uvy9I4BGjT .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uvy9I4BGjT .modal-xl {
    max-width: 1140px;
  }
  .cid-uvy9I4BGjT .container {
    max-width: 1140px;
  }
}
.cid-uvy9I4BGjT .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uvy9I4BGjT .container {
    max-width: 720px;
  }
}
.cid-uvy9I4BGjT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uvy9I4BGjT .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uvy9I4BGjT .form-group {
  margin-bottom: 1rem;
}
.cid-uvy9I4BGjT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uvy9I4BGjT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uvy9I4BGjT .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uvy9I4BGjT .mbr-section-btn {
  margin: 0;
}
.cid-uvy9I4BGjT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sHIJlvAztE {
  padding-top: 150px;
  background-image: url("../../../assets/images/whatsapp-business-logo-1024x506.png");
}
.cid-sHIJlvAztE .text-content {
  padding-bottom: 60px;
}
.cid-sHIJlvAztE .content-container .btn-bgr {
  z-index: 0;
}
.cid-sHIJlvAztE .box-item-text {
  color: #767676;
}
.cid-sHIJlvAztE .box-item {
  padding: 2.5rem;
}
.cid-sHIJlvAztE .box-item:first-child {
  background-color: #ffffff;
}
.cid-sHIJlvAztE .box-item:nth-child(2) {
  background-color: #efefef;
}
.cid-sHIJlvAztE .box-item:last-child {
  background-color: #ffffff;
}
.cid-sHIJlvAztE .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sHIJlvAztE .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sHIJlvAztE .box-list li:last-child {
  border-bottom: none;
}
.cid-sHIJlvAztE .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sHIJlvAztE .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-sHIJlvAztE .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-sHIJlvAztE .mbr-section-subtitle,
  .cid-sHIJlvAztE .mbr-section-title,
  .cid-sHIJlvAztE .mbr-text,
  .cid-sHIJlvAztE .mbr-section-btn,
  .cid-sHIJlvAztE .icon-block-top,
  .cid-sHIJlvAztE .box-item-title,
  .cid-sHIJlvAztE .box-item-text {
    text-align: center !important;
  }
}
.cid-sHIJlvAztE .mbr-section-title {
  color: #232323;
}
.cid-sHIJlvAztE .mbr-text,
.cid-sHIJlvAztE .mbr-section-btn {
  color: #232323;
}
.cid-sHIMTcgYBv {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/whatsapp-bussines-1286x684.png");
}
.cid-sHIMTcgYBv .row:not(.items-row) {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sHIMTcgYBv .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sHIMTcgYBv .main-head {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sHIMTcgYBv .first-table {
  margin: 0;
}
.cid-sHIMTcgYBv .first-table.two-items {
  margin-right: 15px;
}
.cid-sHIMTcgYBv .first-table .table-head-wrapper {
  background: #149dcc;
}
.cid-sHIMTcgYBv .second-table {
  margin: 0;
  margin-left: 15px;
}
.cid-sHIMTcgYBv .second-table .table-head-wrapper {
  background: #2bc741;
}
.cid-sHIMTcgYBv .table {
  padding: 2rem;
  background: #ffffff;
  position: relative;
}
.cid-sHIMTcgYBv .table .table-wrapper .table-head-wrapper {
  margin: -2rem;
  margin-bottom: 0 !important;
  padding: 2rem;
  padding-bottom: 0 !important;
}
.cid-sHIMTcgYBv .table .table-wrapper .table-head-wrapper span {
  width: 100%;
  display: block;
}
.cid-sHIMTcgYBv .table .table-wrapper .table-purchase {
  padding-bottom: 2rem;
}
.cid-sHIMTcgYBv .table .table-wrapper .table-purchase .table-pricing {
  margin: 0;
  margin-top: .5rem !important;
}
.cid-sHIMTcgYBv .table .table-wrapper .list-group {
  padding-top: 2rem;
  list-style: none;
}
.cid-sHIMTcgYBv .table .table-wrapper .list-group li {
  padding: .4rem;
  border-bottom: 1px solid #232323;
}
.cid-sHIMTcgYBv .table .table-wrapper .list-group li .mbr-iconfont {
  font-size: 30px;
}
@media (max-width: 767px) {
  .cid-sHIMTcgYBv .first-table,
  .cid-sHIMTcgYBv .second-table {
    margin: 0 15px;
  }
  .cid-sHIMTcgYBv .first-table {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sHIMTcgYBv .items-row {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-sHIMTcgYBv .first-table,
  .cid-sHIMTcgYBv .second-table {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .cid-sHIMTcgYBv .main-head {
    padding-bottom: 2rem;
  }
}
.cid-sHIMTcgYBv .table-heading {
  color: #ffffff;
}
.cid-sHIMTcgYBv .pricing-value {
  color: #ffffff;
}
.cid-sHIMTcgYBv .table-pricing {
  color: #ffffff;
}
.cid-sHIMTcgYBv .main-title {
  color: #77f1ac;
}
.cid-sHIMTcgYBv .main-text,
.cid-sHIMTcgYBv .main-btn {
  color: #77f1ac;
}
.cid-uCJL1KWCF0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-uCJL1KWCF0 .list-group-item {
  padding: 0.5rem 3.25rem;
}
.cid-uCJL1KWCF0 h4 {
  margin: 0;
}
.cid-uCJL1KWCF0 .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-uCJL1KWCF0 .plan-body {
  padding-bottom: 2rem;
}
.cid-uCJL1KWCF0 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uCJL1KWCF0 .nav-tabs {
  border: none !important;
}
.cid-uCJL1KWCF0 .nav-tabs .nav-item {
  margin: 0;
}
.cid-uCJL1KWCF0 .nav-tabs .btn {
  transition: all 0.5s;
  border: none !important;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCJL1KWCF0 .nav-tabs .btn:after {
  display: none;
}
@media (min-width: 768px) {
  .cid-uCJL1KWCF0 .nav-tabs .btn {
    margin: 0px !important;
  }
  .cid-uCJL1KWCF0 .nav-tabs .nav-item:first-child .btn {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-uCJL1KWCF0 .nav-tabs .nav-item:last-child .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.cid-uCJL1KWCF0 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-uCJL1KWCF0 .line2 {
  background: #255085;
}
.cid-uCJL1KWCF0 .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding-right: 0;
  padding-left: 0;
}
.cid-uCJL1KWCF0 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-uCJL1KWCF0 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: '';
  background-color: #eaeaea;
}
.cid-uCJL1KWCF0 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-uCJL1KWCF0 .plan-header,
.cid-uCJL1KWCF0 .plan-body {
  background-color: #fff;
}
.cid-uCJL1KWCF0 .price-figure {
  font-weight: 700;
}
.cid-uCJL1KWCF0 .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-uCJL1KWCF0 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uCJL1KWCF0 .color1 {
  color: #3dcc14;
}
.cid-uCJL1KWCF0 .color2 {
  color: #3dcc14;
}
.cid-uCJL1KWCF0 LI {
  color: #767676;
}
.cid-uCJL1KWCF0 .price-term {
  color: #767676;
}
.cid-sHIR6hhP8G {
  padding-top: 90px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-sHIR6hhP8G .mbr-section-title {
  color: #06182d;
}
.cid-sHIR6hhP8G .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #2bc741;
  background: linear-gradient(#2bc741 0%, #41934c 69%, #41934c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sHIR6hhP8G .mbr-section-subtitle {
  color: #06182d;
}
.cid-sHIR6hhP8G .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sHIR6hhP8G .mbr-text {
  color: #a000b1;
  font-weight: 300;
}
.cid-sHIR6hhP8G .title-text {
  margin-bottom: 70px;
}
.cid-sHIR6hhP8G .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-sHIR6hhP8G .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sHIR6hhP8G .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sHIR6hhP8G .title-text .mbr-section-title {
  color: #ff3366;
}
.cid-sHIR6hhP8G .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-sHIR6hhP8G .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-sHIR6hhP8G .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sHIR6hhP8G .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #ff4e3c;
}
.cid-sHIR6hhP8G .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-sHIR6hhP8G .p-4 {
  padding: 1rem 0 !important;
}
.cid-sHIR6hhP8G .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-sHIR6hhP8G .mbri-arrow-down:before {
  content: "\e960";
}
.cid-sHIR6hhP8G .mbri-arrow-up:before {
  content: "\e960";
}
.cid-sHIR6hhP8G .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-sHIR6hhP8G .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-sHIR6hhP8G .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-sHIR6hhP8G .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-sHIR6hhP8G .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-sHIR6hhP8G .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-sHIR6hhP8G .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #ff4e3c;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-sHIR6hhP8G .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-sHIR6hhP8G .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sHIR6hhP8G .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-sHIR6hhP8G .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-sHIR6hhP8G .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-sHIR6hhP8G .card .card-header a.panel-title .toggle-icon:before,
.cid-sHIR6hhP8G .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-sHIR6hhP8G .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-sHIR6hhP8G .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-sHIR6hhP8G .card .panel-body {
  padding: 14px 20px;
}
.cid-sHIR6hhP8G .card .panel-body p {
  color: #a000b1;
  line-height: 1.5;
}
.cid-sHIR6hhP8G .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-sHIR6hhP8G .title-text .mbr-text {
  color: #232323;
}
.cid-sHIR6hhP8G .card .panel-body p {
  color: #41934c;
}
.cid-sKYVhoAtLb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sKYVhoAtLb .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sKYVhoAtLb .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sKYVhoAtLb .col + .mbr-section-btn .btn,
.cid-sKYVhoAtLb .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sKYVhoAtLb .col + .mbr-section-btn .btn,
  .cid-sKYVhoAtLb .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sKYVhoAtLb .dragArea > *:nth-last-child(2).col,
  .cid-sKYVhoAtLb .dragArea > *:nth-last-child(2).col-auto,
  .cid-sKYVhoAtLb .col + .mbr-section-btn,
  .cid-sKYVhoAtLb .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sKYVhoAtLb .dragArea {
    flex-direction: column;
  }
}
.cid-sKYVhoAtLb .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sKYVhoAtLb .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sKYVhoAtLb .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sKYVhoAtLb .form-group {
  max-width: 220px;
}
.cid-sKYVhoAtLb .mbr-section-btn {
  padding-left: 0;
}
.cid-sKYVhoAtLb .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sKYVhoAtLb .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sKYVhoAtLb .mbr-text {
  color: #444;
}
.cid-sKYVhoAtLb h5 {
  margin-bottom: 0;
}
.cid-sKYVhoAtLb .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKYVhoAtLb .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sKYVhoAtLb .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sKYVhoAtLb .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKYVhoAtLb .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sKYVhoAtLb .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKYVhoAtLb .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sKYVhoAtLb .social-list a:hover {
  opacity: 0.4;
}
.cid-sKYVhoAtLb .media-container-row > div {
  padding: 0px;
}
.cid-sKYVhoAtLb .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKYVhoAtLb .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKYVhoAtLb .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sKYVhoAtLb .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sKYVhoAtLb .social-list,
  .cid-sKYVhoAtLb .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sKYVhoAtLb h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sKYVhoAtLb .form-group {
    max-width: 180px;
  }
}
.cid-sKYVhoAtLb .links span {
  color: #9e9e9e;
}
.cid-sKYVhoAtLb .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKYVhoAtLb .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sezochkq2U {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sezochkq2U .mbr-text,
.cid-sezochkq2U blockquote {
  color: #767676;
}
.cid-sIwQDDi7nz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sIwQDDi7nz .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-sIwQDDi7nz .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sIwQDDi7nz .col + .mbr-section-btn .btn,
.cid-sIwQDDi7nz .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sIwQDDi7nz .col + .mbr-section-btn .btn,
  .cid-sIwQDDi7nz .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sIwQDDi7nz .dragArea > *:nth-last-child(2).col,
  .cid-sIwQDDi7nz .dragArea > *:nth-last-child(2).col-auto,
  .cid-sIwQDDi7nz .col + .mbr-section-btn,
  .cid-sIwQDDi7nz .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sIwQDDi7nz .dragArea {
    flex-direction: column;
  }
}
.cid-sIwQDDi7nz .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-sIwQDDi7nz .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-sIwQDDi7nz .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sIwQDDi7nz .form-group {
  max-width: 220px;
}
.cid-sIwQDDi7nz .mbr-section-btn {
  padding-left: 0;
}
.cid-sIwQDDi7nz .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sIwQDDi7nz .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sIwQDDi7nz .mbr-text {
  color: #444;
}
.cid-sIwQDDi7nz h5 {
  margin-bottom: 0;
}
.cid-sIwQDDi7nz .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sIwQDDi7nz .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIwQDDi7nz .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sIwQDDi7nz .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sIwQDDi7nz .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sIwQDDi7nz .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sIwQDDi7nz .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sIwQDDi7nz .social-list a:hover {
  opacity: 0.4;
}
.cid-sIwQDDi7nz .media-container-row > div {
  padding: 0px;
}
.cid-sIwQDDi7nz .text2 {
  color: #000000;
  text-align: left;
}
.cid-sIwQDDi7nz .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sIwQDDi7nz .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sIwQDDi7nz .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sIwQDDi7nz .social-list,
  .cid-sIwQDDi7nz .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sIwQDDi7nz h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sIwQDDi7nz .form-group {
    max-width: 180px;
  }
}
.cid-sIwQDDi7nz .links span {
  color: #9e9e9e;
}
.cid-sIwQDDi7nz .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sIwQDDi7nz .logo-title {
  text-align: center;
}
.cid-uKmjC7c6oh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uKmjC7c6oh nav.navbar {
  position: fixed;
}
.cid-uKmjC7c6oh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKmjC7c6oh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKmjC7c6oh .dropdown-item:hover,
.cid-uKmjC7c6oh .dropdown-item:focus {
  background: #0f7699 !important;
  color: white !important;
}
.cid-uKmjC7c6oh .dropdown-item:hover span {
  color: white;
}
.cid-uKmjC7c6oh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKmjC7c6oh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKmjC7c6oh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKmjC7c6oh .nav-link {
  position: relative;
}
.cid-uKmjC7c6oh .container {
  display: flex;
  margin: auto;
}
.cid-uKmjC7c6oh .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown-menu,
.cid-uKmjC7c6oh .navbar.opened {
  background: #ffffff !important;
}
.cid-uKmjC7c6oh .nav-item:focus,
.cid-uKmjC7c6oh .nav-link:focus {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKmjC7c6oh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKmjC7c6oh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKmjC7c6oh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKmjC7c6oh .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uKmjC7c6oh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 12px !important;
}
.cid-uKmjC7c6oh .navbar.opened {
  transition: all 0.3s;
}
.cid-uKmjC7c6oh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKmjC7c6oh .navbar .navbar-logo img {
  width: auto;
}
.cid-uKmjC7c6oh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uKmjC7c6oh .navbar.collapsed {
  justify-content: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKmjC7c6oh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKmjC7c6oh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uKmjC7c6oh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKmjC7c6oh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKmjC7c6oh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKmjC7c6oh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKmjC7c6oh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKmjC7c6oh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKmjC7c6oh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKmjC7c6oh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKmjC7c6oh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKmjC7c6oh .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKmjC7c6oh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKmjC7c6oh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uKmjC7c6oh .navbar {
    padding: 0 50px !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uKmjC7c6oh .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uKmjC7c6oh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKmjC7c6oh .dropdown-item.active,
.cid-uKmjC7c6oh .dropdown-item:active {
  background-color: transparent;
}
.cid-uKmjC7c6oh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKmjC7c6oh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uKmjC7c6oh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKmjC7c6oh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKmjC7c6oh ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uKmjC7c6oh .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uKmjC7c6oh .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uKmjC7c6oh .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uKmjC7c6oh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uKmjC7c6oh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uKmjC7c6oh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKmjC7c6oh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKmjC7c6oh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKmjC7c6oh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKmjC7c6oh .navbar {
    height: 100px;
  }
  .cid-uKmjC7c6oh .navbar.opened {
    height: auto;
  }
  .cid-uKmjC7c6oh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKmjC7c6oh .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uKmjC7c6oh .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uKmjC7c6oh .nav-link:before {
  content: '';
  position: absolute;
  color: #0f7699;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-ugb4dEFlol {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugb4dEFlol .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ugb4dEFlol .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ugb4dEFlol .container {
    padding: 0 25px;
  }
}
.cid-ugb4dEFlol .row {
  margin: 0;
}
.cid-ugb4dEFlol .row .card {
  padding: 0;
  justify-content: center;
}
.cid-ugb4dEFlol .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-ugb4dEFlol .image-wrapper {
    min-height: 350px;
  }
}
.cid-ugb4dEFlol .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10rem 0 0 0 !important;
}
.cid-ugb4dEFlol .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-ugb4dEFlol .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-ugb4dEFlol .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ugb4dEFlol .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugb4dEFlol .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-ugb4dEFlol .mbr-section-title {
  color: #000000;
}
.cid-ugb4dEFlol .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ulCT1368Jc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #0f7699;
}
.cid-ulCT1368Jc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulCT1368Jc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulCT1368Jc .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ulCT1368Jc .container-fluid {
    padding: 0 30px;
  }
}
.cid-ulCT1368Jc .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ulCT1368Jc .container {
    padding: 0 30px;
  }
}
.cid-ulCT1368Jc .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ulCT1368Jc .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ulCT1368Jc .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ulCT1368Jc .mbr-section-btn {
    display: block;
  }
}
.cid-ulCT1368Jc .mbr-section-title {
  color: #ffffff;
}
.cid-ugbrg8Pmfq {
  padding-top: 135px;
  padding-bottom: 135px;
}
.cid-ugbrg8Pmfq .mbr-text {
  color: #767676;
}
.cid-ugbrg8Pmfq h4 {
  text-align: center;
}
.cid-ugbrg8Pmfq p {
  text-align: center;
}
.cid-ugbrg8Pmfq .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-ulCSMVWtW3 {
  background-color: #f6f6f6 !important;
  border: 18px solid #f6f6f6;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-ulCSMVWtW3 {
    border: 8px solid #f6f6f6;
    margin-top: -8px;
  }
}
.cid-ulCSMVWtW3 .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-ulCSMVWtW3 .mbr-overlay {
  border-radius: 1.2rem;
}
.cid-ulCSMVWtW3 .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #0f7699;
}
.cid-ulCSMVWtW3 .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulCSMVWtW3 .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ulCSMVWtW3 .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-ulCSMVWtW3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ulCSMVWtW3 .mbr-section-title {
  color: #ffffff;
}
.cid-uiVoY6kY9e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uiVoY6kY9e .title__block {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uiVoY6kY9e .title__block {
    margin-bottom: 25px;
  }
}
.cid-uiVoY6kY9e .mbr-section-subtitle {
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  color: #c0c0c9;
}
.cid-uiVoY6kY9e .mbr-section-title {
  color: #233d63;
  font-weight: 300;
}
.cid-uiVoY6kY9e .mbr-section-title b,
.cid-uiVoY6kY9e .mbr-section-title strong {
  font-weight: 500;
}
.cid-uiVoY6kY9e .card__wrap:hover .btn-warning-outline {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background: transparent !important;
  box-shadow: 0px 13px 28px 0px rgba(0, 0, 0, 0.25);
}
.cid-uiVoY6kY9e .card__wrap:hover .btn-warning-outline:before {
  transform: scale(1);
}
.cid-uiVoY6kY9e .card__wrap {
  background: #ffffff;
  box-shadow: 0px 10px 40px 0px rgba(60, 67, 113, 0.05);
  position: relative;
  text-align: center;
  border-radius: 5px 5px 0 0;
  margin-top: 50px;
  overflow: hidden;
}
.cid-uiVoY6kY9e .card__wrap:before {
  content: "";
  width: 50px;
  height: 6px;
  border-radius: 5px 5px 0 0;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: -50px;
  z-index: 1;
  transition: all 0.8s ease-out;
}
.cid-uiVoY6kY9e .card__wrap:after {
  content: "";
  width: 100%;
  height: 6px;
  border-radius: 5px 5px 0 0;
  position: absolute;
  top: 0;
  left: calc(-100% - 100px);
  z-index: 1;
  transition: all 0.8s ease-out;
  background: #ffffff;
}
.cid-uiVoY6kY9e .card__wrap:hover:before {
  opacity: 1;
  left: 100%;
}
.cid-uiVoY6kY9e .card__wrap:hover:after {
  left: 100%;
}
.cid-uiVoY6kY9e .card__wrap:hover .icon__art {
  transform: scale(1.3) translateX(80px);
}
.cid-uiVoY6kY9e .wrap:nth-child(1) .card__header {
  border-top: 6px solid #0f7699;
  border-bottom: 1px solid #0f7699;
}
.cid-uiVoY6kY9e .wrap:nth-child(2) .card__header {
  border-top: 6px solid #a000b1;
  border-bottom: 1px solid #a000b1;
}
.cid-uiVoY6kY9e .wrap:nth-child(3) .card__header {
  border-top: 6px solid #2bc741;
  border-bottom: 1px solid #2bc741;
}
.cid-uiVoY6kY9e .wrap:nth-child(4) .card__header {
  border-top: 6px solid #0f7699;
  border-bottom: 1px solid #0f7699;
}
.cid-uiVoY6kY9e .icon__art {
  opacity: 0.18;
  position: absolute;
  left: -60px;
  top: 17%;
  z-index: 0;
  transition: all 0.6s ease-in-out;
}
.cid-uiVoY6kY9e .icon__art img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.cid-uiVoY6kY9e .card__header {
  position: relative;
  padding: 40px 0 32px;
}
.cid-uiVoY6kY9e .card__top {
  position: relative;
  z-index: 5;
  padding: 0 15px;
}
.cid-uiVoY6kY9e .card__price {
  color: #ff3a46;
}
.cid-uiVoY6kY9e .card__price sup {
  font-size: 60%;
  color: inherit;
}
.cid-uiVoY6kY9e .card__title {
  color: #233d63;
}
.cid-uiVoY6kY9e .card__body {
  padding: 42px 15px 40px;
}
.cid-uiVoY6kY9e .card__feature {
  margin-bottom: 15px;
  color: #233d63;
}
.cid-uiVoY6kY9e .card__footer {
  border-top: 1px solid #e9e9e9;
  padding: 40px 15px 40px;
}
.cid-uiVoY6kY9e .item {
  line-height: 45px;
}
.cid-uiVoY6kY9e .mbr-section-btn {
  margin: 0;
}
.cid-uiVoY6kY9e .mbr-section-btn .btn {
  z-index: 10;
}
.cid-uiVoY6kY9e .mbr-section-btn .btn-warning-outline {
  border: 2px solid #dbdbdb !important;
  color: #1a1a1a !important;
  position: relative;
  border-radius: 30px;
  background: transparent !important;
}
.cid-uiVoY6kY9e .mbr-section-btn .btn-warning-outline:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 30px;
  top: 0;
  left: 0;
  background: linear-gradient(130deg, rgba(15, 118, 153, 0.55) 0%, #0f7699 100%) !important;
  transform: scale(0, 1);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.cid-uiVoY6kY9e .btn__trial {
  margin-top: 32px;
  line-height: 25px;
}
.cid-uiVoY6kY9e .btn__trial a {
  color: #6a6c72 !important;
}
.cid-uiVoY6kY9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiVoY6kY9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uilc68cFs9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #1b1818;
}
.cid-uilc68cFs9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uilc68cFs9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-uilc68cFs9 .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-uilc68cFs9 .mbr-section-btn,
.cid-uilc68cFs9 .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uilc68cFs9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uilc68cFs9 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uilc68cFs9 .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uilc68cFs9 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uilc68cFs9 .mbr-section-title {
  color: #ffffff;
}
.cid-uilc68cFs9 .mbr-text,
.cid-uilc68cFs9 .mbr-section-btn {
  color: #ffffff;
}
.cid-uilc68cFs9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uilaMk3gwI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uilaMk3gwI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uilaMk3gwI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uilaMk3gwI .video-wrapper iframe {
  width: 100%;
}
.cid-uilaMk3gwI .mbr-section-title,
.cid-uilaMk3gwI .mbr-section-subtitle,
.cid-uilaMk3gwI .mbr-text {
  text-align: center;
}
.cid-ulCTFC7Q2N {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #279e64;
}
.cid-ulCTFC7Q2N .content-inner .left-content {
  display: block;
}
.cid-ulCTFC7Q2N .content-inner .left-content .mbr-section-title {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-ulCTFC7Q2N .content-inner .left-content .mbr-text {
  color: #ffffff;
}
.cid-ulCTFC7Q2N .content-inner .right-content {
  display: block;
}
.cid-ulCTFC7Q2N .content-inner .right-content .mbr-text {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 17px;
  letter-spacing: .02em;
}
.cid-ulCTFC7Q2N .content-inner .right-content .mbr-section-btn .btn {
  border-radius: 30px;
  padding: 18px 42px !important;
}
.cid-ulCTFC7Q2N .content-inner .right-content .mbr-section-btn .btn-white {
  color: #000000 !important;
}
.cid-ulCTFC7Q2N .content-inner .right-content .mbr-section-btn .btn-white:hover {
  background-color: #2bc741 !important;
  border-color: #2bc741 !important;
}
@media (max-width: 991px) {
  .cid-ulCTFC7Q2N .content-inner {
    justify-content: center !important;
  }
  .cid-ulCTFC7Q2N * {
    text-align: center;
  }
}
.cid-ulCTFC7Q2N .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulCTFC7Q2N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugbsrE9NUs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ugbsrE9NUs .listico {
  padding-right: 1rem;
  font-size: 0.9rem;
}
.cid-ugbsrE9NUs .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-ugbsrE9NUs .col + .mbr-section-btn .btn,
.cid-ugbsrE9NUs .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ugbsrE9NUs .col + .mbr-section-btn .btn,
  .cid-ugbsrE9NUs .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ugbsrE9NUs .dragArea > *:nth-last-child(2).col,
  .cid-ugbsrE9NUs .dragArea > *:nth-last-child(2).col-auto,
  .cid-ugbsrE9NUs .col + .mbr-section-btn,
  .cid-ugbsrE9NUs .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ugbsrE9NUs .dragArea {
    flex-direction: column;
  }
}
.cid-ugbsrE9NUs .btn-primary {
  border: 1px solid #0f7699 !important;
}
.cid-ugbsrE9NUs .btn-primary:hover {
  border: 1px solid #0f7699 !important;
}
.cid-ugbsrE9NUs .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ugbsrE9NUs .form-group {
  max-width: 220px;
}
.cid-ugbsrE9NUs .mbr-section-btn {
  padding-left: 0;
}
.cid-ugbsrE9NUs .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ugbsrE9NUs .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-ugbsrE9NUs .mbr-text {
  color: #444;
}
.cid-ugbsrE9NUs h5 {
  margin-bottom: 0;
}
.cid-ugbsrE9NUs .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-ugbsrE9NUs .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ugbsrE9NUs .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ugbsrE9NUs .socicon {
  font-size: 1.3rem;
  background: #55b4d4;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ugbsrE9NUs .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ugbsrE9NUs .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ugbsrE9NUs .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ugbsrE9NUs .social-list a:hover {
  opacity: 0.4;
}
.cid-ugbsrE9NUs .media-container-row > div {
  padding: 0px;
}
.cid-ugbsrE9NUs .text2 {
  color: #000000;
  text-align: left;
}
.cid-ugbsrE9NUs .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-ugbsrE9NUs .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ugbsrE9NUs .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ugbsrE9NUs .social-list,
  .cid-ugbsrE9NUs .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-ugbsrE9NUs h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ugbsrE9NUs .form-group {
    max-width: 180px;
  }
}
.cid-ugbsrE9NUs .links span {
  color: #9e9e9e;
}
.cid-ugbsrE9NUs .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ugbsrE9NUs .logo-title {
  text-align: center;
}
.cid-uvy9JE6AuB.popup-builder {
  background-color: #ffffff;
}
.cid-uvy9JE6AuB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uvy9JE6AuB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uvy9JE6AuB .modal-content,
.cid-uvy9JE6AuB .modal-dialog {
  height: auto;
}
.cid-uvy9JE6AuB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uvy9JE6AuB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uvy9JE6AuB .form-wrapper .mbr-form .form-group,
  .cid-uvy9JE6AuB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uvy9JE6AuB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uvy9JE6AuB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uvy9JE6AuB .mbr-text {
  text-align: center;
}
.cid-uvy9JE6AuB .pt-0 {
  padding-top: 0 !important;
}
.cid-uvy9JE6AuB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uvy9JE6AuB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uvy9JE6AuB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uvy9JE6AuB .modal-open {
  overflow: hidden;
}
.cid-uvy9JE6AuB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uvy9JE6AuB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uvy9JE6AuB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uvy9JE6AuB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uvy9JE6AuB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uvy9JE6AuB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uvy9JE6AuB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uvy9JE6AuB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uvy9JE6AuB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uvy9JE6AuB .modal-backdrop.fade {
  opacity: 0;
}
.cid-uvy9JE6AuB .modal-backdrop.show {
  opacity: .5;
}
.cid-uvy9JE6AuB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uvy9JE6AuB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uvy9JE6AuB .modal-header {
    padding: 1rem;
  }
}
.cid-uvy9JE6AuB .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uvy9JE6AuB .modal-header .close:hover {
  opacity: 1;
}
.cid-uvy9JE6AuB .modal-header .close:focus {
  outline: none;
}
.cid-uvy9JE6AuB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0f7699;
}
.cid-uvy9JE6AuB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uvy9JE6AuB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvy9JE6AuB .modal-body {
    padding: 1rem;
  }
}
.cid-uvy9JE6AuB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uvy9JE6AuB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvy9JE6AuB .modal-footer {
    padding: 1rem;
  }
}
.cid-uvy9JE6AuB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uvy9JE6AuB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uvy9JE6AuB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uvy9JE6AuB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uvy9JE6AuB .modal-sm {
    max-width: 300px;
  }
  .cid-uvy9JE6AuB .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uvy9JE6AuB .modal-lg,
  .cid-uvy9JE6AuB .modal-xl {
    max-width: 800px;
  }
  .cid-uvy9JE6AuB .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uvy9JE6AuB .modal-xl {
    max-width: 1140px;
  }
  .cid-uvy9JE6AuB .container {
    max-width: 1140px;
  }
}
.cid-uvy9JE6AuB .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uvy9JE6AuB .container {
    max-width: 720px;
  }
}
.cid-uvy9JE6AuB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uvy9JE6AuB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uvy9JE6AuB .form-group {
  margin-bottom: 1rem;
}
.cid-uvy9JE6AuB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uvy9JE6AuB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uvy9JE6AuB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uvy9JE6AuB .mbr-section-btn {
  margin: 0;
}
.cid-uvy9JE6AuB .mbr-section-btn .btn {
  margin: 0;
}
