.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'CeraPro-Black';
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'CeraPro-Bold';
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'CeraPro-Medium';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'CeraPro-Bold';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'CeraPro-Regular';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #0a6cff !important;
}
.bg-warning {
  background-color: #0a6cff !important;
}
.bg-danger {
  background-color: #e43f3f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0a6cff !important;
  border-color: #0a6cff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0047b2 !important;
  border-color: #0047b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0047b2 !important;
  border-color: #0047b2 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0a6cff !important;
  border-color: #0a6cff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0047b2 !important;
  border-color: #0047b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0047b2 !important;
  border-color: #0047b2 !important;
}
.btn-success,
.btn-success:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0a6cff !important;
  border-color: #0a6cff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #0047b2 !important;
  border-color: #0047b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0047b2 !important;
  border-color: #0047b2 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #0a6cff;
  color: #0a6cff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0047b2 !important;
  background-color: transparent!important;
  border-color: #0047b2 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0a6cff !important;
  border-color: #0a6cff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #0a6cff;
  color: #0a6cff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0047b2 !important;
  background-color: transparent!important;
  border-color: #0047b2 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0a6cff !important;
  border-color: #0a6cff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #0a6cff;
  color: #0a6cff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #0047b2 !important;
  background-color: transparent!important;
  border-color: #0047b2 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0a6cff !important;
  border-color: #0a6cff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #0a6cff !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #0a6cff !important;
}
.text-warning {
  color: #0a6cff !important;
}
.text-danger {
  color: #e43f3f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0041a3 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0041a3 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #0041a3 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a61717 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0a6cff;
}
.alert-warning {
  background-color: #0a6cff;
}
.alert-danger {
  background-color: #e43f3f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d6e6ff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d6e6ff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdf2f2;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'CeraPro-Medium';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'CeraPro-Medium';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #0a6cff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tda7Ma7PhA .nav-item:focus,
.cid-tda7Ma7PhA .nav-link:focus {
  outline: none;
}
.cid-tda7Ma7PhA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tda7Ma7PhA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tda7Ma7PhA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tda7Ma7PhA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tda7Ma7PhA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tda7Ma7PhA .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tda7Ma7PhA .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tda7Ma7PhA .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tda7Ma7PhA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tda7Ma7PhA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tda7Ma7PhA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tda7Ma7PhA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tda7Ma7PhA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tda7Ma7PhA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tda7Ma7PhA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tda7Ma7PhA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tda7Ma7PhA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tda7Ma7PhA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tda7Ma7PhA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tda7Ma7PhA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tda7Ma7PhA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tda7Ma7PhA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tda7Ma7PhA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tda7Ma7PhA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tda7Ma7PhA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tda7Ma7PhA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tda7Ma7PhA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tda7Ma7PhA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tda7Ma7PhA .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tda7Ma7PhA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tda7Ma7PhA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tda7Ma7PhA .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tda7Ma7PhA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tda7Ma7PhA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tda7Ma7PhA .dropdown-item.active,
.cid-tda7Ma7PhA .dropdown-item:active {
  background-color: transparent;
}
.cid-tda7Ma7PhA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tda7Ma7PhA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tda7Ma7PhA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tda7Ma7PhA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tda7Ma7PhA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tda7Ma7PhA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tda7Ma7PhA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tda7Ma7PhA .navbar-buttons {
  text-align: center;
}
.cid-tda7Ma7PhA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tda7Ma7PhA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a6cff;
}
.cid-tda7Ma7PhA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tda7Ma7PhA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tda7Ma7PhA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tda7Ma7PhA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tda7Ma7PhA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tda7Ma7PhA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tda7Ma7PhA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tda7Ma7PhA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tda7Ma7PhA .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tda7Ma7PhA a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tda7Ma7PhA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tda7Ma7PhA .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tda7Ma7PhA .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tda7Ma7PhA .nav-link:hover,
.cid-tda7Ma7PhA .dropdown-item:hover,
.cid-tda7Ma7PhA .icons-menu .mbr-iconfont:hover {
  color: #0a6cff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tda7Ma7PhA .navbar {
    height: 77px;
  }
  .cid-tda7Ma7PhA .navbar.opened {
    height: auto;
  }
}
.cid-td4WnFpqEi {
  background-color: #ffffff;
}
.cid-td4WnFpqEi .mbr-section-title {
  color: #0a6cff;
}
.cid-td4WnFpqEi .mbr-text,
.cid-td4WnFpqEi .mbr-section-btn {
  color: #000000;
}
.cid-td4WnFpqEi .mbr-section-text {
  color: #0a6cff;
}
.cid-td4WnFpqEi img {
  border-radius: 2rem;
}
.cid-td4WnFpqEi .mbr-section-subtitle {
  color: #000000;
}
.cid-td4WnFpqEi .number {
  color: #000000;
}
.cid-td4WnFpqEi .mbr-fallback-image.disabled {
  display: none;
}
.cid-td4WnFpqEi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-td4WnFpqEi .block {
  animation: pulse 3s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-td54J0pUof {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-td54J0pUof .row {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.cid-td54J0pUof .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 8px;
}
.cid-td54J0pUof .mbr-section-title {
  color: #010d4c;
  margin-bottom: 8px;
}
.cid-td54J0pUof .mbr-text {
  color: #000000;
  opacity: 0.8;
  padding-bottom: 20px;
  padding-top: 10px;
  margin-bottom: 0;
}
.cid-td54J0pUof .mbr-section-btn {
  margin-top: 20px;
}
.cid-td54J0pUof .mbr-section-btn .btn-secondary:hover,
.cid-td54J0pUof .mbr-section-btn .btn-primary:hover {
  color: #ffffff !important;
  background-color: #000000 !important;
}
.cid-td54J0pUof .mbr-section-btn .btn {
  min-height: 55px;
  padding: 10px 45px;
}
.cid-td54J0pUof .mbr-section-btn .btn:before {
  display: none;
}
.cid-td54J0pUof .mbr-section-btn .btn:hover:before {
  display: none;
}
@media (max-width: 767px) {
  .cid-td54J0pUof .image-wrapper {
    margin-top: 40px;
  }
}
.cid-td54J0pUof .image-wrapper img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-td54J0pUof .image-wrapper img {
    padding-right: 5%;
  }
}
.cid-td54J0pUof .list {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  padding: 0;
  margin-bottom: 0;
  margin-top: 16px;
  width: 100%;
}
.cid-td54J0pUof .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.cid-td54J0pUof .icon-wrapper {
  display: flex;
  margin-right: 20px;
}
.cid-td54J0pUof .icon-wrapper span {
  color: #0066ff;
  font-size: 13px;
}
.cid-td54J0pUof .list-item-text {
  flex-grow: 1;
  color: #0b3c6a;
}
.cid-td54J0pUof .mbr-fallback-image.disabled {
  display: none;
}
.cid-td54J0pUof .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-td54J0pUof .mbr-section-title,
.cid-td54J0pUof .mbr-section-btn {
  color: #0a6cff;
}
.cid-td54J0pUof .block {
  animation: pulse 3s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-td5UtQKdjC {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-td5UtQKdjC .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-td5UtQKdjC .mbr-section-title {
  text-align: left;
  color: #0a6cff;
  margin: auto;
}
.cid-td5UtQKdjC .row {
  align-items: center;
  height: 100%;
}
.cid-td5UtQKdjC .wrapper {
  margin: auto;
}
.cid-td5UgzaJQb {
  padding-top: 45px;
  padding-bottom: 150px;
  background-color: #f3f4f7;
}
.cid-td5UgzaJQb li {
  list-style: none;
}
.cid-td5UgzaJQb .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px;
}
.cid-td5UgzaJQb .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-td5UgzaJQb h4 {
  margin: 0;
}
.cid-td5UgzaJQb .item {
  color: #57468b;
}
.cid-td5UgzaJQb ul {
  padding: 0;
  margin: 0;
}
.cid-td5UgzaJQb .col-title {
  color: #57468b;
}
.cid-td5UgzaJQb .col-title1 {
  color: #bfceff;
}
.cid-td5UgzaJQb .col-title2 {
  color: #5580ff;
}
.cid-td5UgzaJQb .col-title3 {
  color: #ff8a73;
}
.cid-td5UgzaJQb .col-title4 {
  color: #57468b;
}
.cid-td5UgzaJQb .item1 {
  color: #e43f3f;
  text-transform: uppercase;
}
.cid-td5UgzaJQb .item2 {
  color: #e43f3f;
  text-transform: uppercase;
}
.cid-td5UgzaJQb .item3 {
  color: #e43f3f;
  text-transform: uppercase;
}
.cid-td5UgzaJQb .item4 {
  color: #e43f3f;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-td5UgzaJQb .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-td5UgzaJQb .ulcard {
  background: white;
  border-radius: 10px;
  padding: 10px;
}
.cid-td53UNzFDR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-td53UNzFDR .row {
  flex-direction: row-reverse;
}
.cid-td53UNzFDR .row {
  align-items: center;
}
.cid-td53UNzFDR .image-wrapper {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-td53UNzFDR .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-td53UNzFDR .text-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 30px 0 0;
}
@media (min-width: 992px) {
  .cid-td53UNzFDR .text-wrapper {
    padding: 0 0 0 60px;
    padding: 0 60px 0 0 ;
  }
}
.cid-td53UNzFDR .text-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-td53UNzFDR .text-container {
    width: 550px;
    flex-shrink: 1;
  }
}
.cid-td53UNzFDR .label-text {
  width: 100%;
  color: #000000;
}
.cid-td53UNzFDR .mbr-section-title {
  margin-bottom: 12px;
  color: #0a6cff;
}
.cid-td53UNzFDR .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 32px;
}
.cid-td53UNzFDR .item {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  flex-wrap: wrap;
}
.cid-td53UNzFDR .mbr-section-subtitle {
  margin: 0;
  width: 100%;
  color: #0a6cff;
}
.cid-td53UNzFDR .numbers-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-td53UNzFDR .number-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-td53UNzFDR .color-text {
  color: #0a6cff;
}
.cid-td53UNzFDR .text-box {
  width: 100%;
}
.cid-td53UNzFDR .icon-text {
  width: 100%;
}
.cid-td53UNzFDR .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-td53UNzFDR .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-td53UNzFDR .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-td53UNzFDR .mbr-fallback-image.disabled {
  display: none;
}
.cid-td53UNzFDR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-td53UNzFDR .block {
  animation: pulse 3s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-td6zBiDZ1d {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f3f4f7;
}
.cid-td6zBiDZ1d .mbr-section-subtitle {
  color: #000000;
  text-align: left;
  margin: auto;
}
.cid-td6zBiDZ1d .mbr-section-title {
  text-align: left;
  color: #0a6cff;
  padding-bottom: 24px;
  margin: auto;
}
.cid-td6zBiDZ1d .row {
  align-items: center;
  height: 100%;
}
.cid-td6zBiDZ1d .wrapper {
  margin: auto;
}
.cid-td5pbdHZ0X {
  padding-top: 0px;
  padding-bottom: 90px;
  background: #f3f4f7;
}
.cid-td5pbdHZ0X .plan-body .btn-bgr {
  z-index: 0;
}
.cid-td5pbdHZ0X .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-td5pbdHZ0X .list-group-item {
  padding: .75rem 0rem;
}
.cid-td5pbdHZ0X .plan-subtitle {
  color: #cccccc;
}
.cid-td5pbdHZ0X .mbr-text {
  margin: 10px 0 0 0;
  color: #cccccc;
}
.cid-td5pbdHZ0X .nav-tabs {
  border: none !important;
}
.cid-td5pbdHZ0X .nav-tabs .btn {
  background: transparent !important;
  position: relative;
}
.cid-td5pbdHZ0X .nav-tabs .btn:not(:focus):not(:hover):not(.active) {
  color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.cid-td5pbdHZ0X .nav-tabs .btn.active,
.cid-td5pbdHZ0X .nav-tabs .btn:hover {
  background: #e43f3f !important;
  color: #ffffff !important;
  border-color: #e43f3f !important;
}
.cid-td5pbdHZ0X .nav-tabs .btn.active:after {
  animation: none;
}
.cid-td5pbdHZ0X .nav-tabs .btn:after {
  content: '';
  border: 0px solid;
  border-color: inherit;
  border-radius: inherit;
  transition: border-radius 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.cid-td5pbdHZ0X .nav-tabs .btn:hover:after {
  border-width: 1px;
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-td5pbdHZ0X .price-term .term {
  display: inline-block;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-td5pbdHZ0X .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
  border-radius: 30px;
}
.cid-td5pbdHZ0X .plan .mbr-overlay {
  background: #0a6cff;
  opacity: 1;
  border-radius: 25px;
}
.cid-td5pbdHZ0X .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-td5pbdHZ0X .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-td5pbdHZ0X .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-td5pbdHZ0X .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-td5pbdHZ0X .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-td5pbdHZ0X .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-td5pbdHZ0X .plan {
    margin-bottom: 30px;
  }
}
.cid-td5pbdHZ0X .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-td5pbdHZ0X .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tfePmhglYE {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tfePmhglYE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfePmhglYE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfePmhglYE .mbr-section-title {
  color: #0a6cff;
}
.cid-tfePmhglYE .block {
  animation: pulse 3s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tfat4j61bM {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f3f4f7;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tfat4j61bM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tfat4j61bM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfat4j61bM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfat4j61bM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tfat4j61bM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tfat4j61bM .mbr-gallery-item > div:hover::before {
  opacity: 0.3 !important;
}
.cid-tfat4j61bM .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tfat4j61bM .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tfat4j61bM .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tfat4j61bM .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tfat4j61bM .mbr-gallery-filter ul {
  display: block;
}
.cid-tfat4j61bM .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tfat4j61bM .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tfat4j61bM .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tfat4j61bM .mbr-gallery-filter li.active::after,
.cid-tfat4j61bM .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tfat4j61bM .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-tfat4j61bM .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-tfat4j61bM .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tfat4j61bM .icon-focus:before {
  content: '\e95e';
}
.cid-tfat4j61bM .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tfat4j61bM .mbr-section-title {
  margin: 0;
}
.cid-tfat4j61bM .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tfat4j61bM .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tfat4j61bM .mbr-section-title,
.cid-tfat4j61bM .underline {
  text-align: center;
  color: #0a6cff;
}
.cid-td5msKXhIG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0a6cff;
  overflow: hidden;
}
.cid-td6CE9lQ9a.popup-builder {
  background-color: #ffffff;
}
.cid-td6CE9lQ9a.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-td6CE9lQ9a.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-td6CE9lQ9a .modal-content,
.cid-td6CE9lQ9a .modal-dialog {
  height: auto;
}
.cid-td6CE9lQ9a .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-td6CE9lQ9a .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-td6CE9lQ9a .form-wrapper .mbr-form .form-group,
  .cid-td6CE9lQ9a .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-td6CE9lQ9a .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-td6CE9lQ9a .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-td6CE9lQ9a .mbr-text {
  text-align: left;
}
.cid-td6CE9lQ9a .pt-0 {
  padding-top: 0 !important;
}
.cid-td6CE9lQ9a .pb-0 {
  padding-bottom: 0 !important;
}
.cid-td6CE9lQ9a .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-td6CE9lQ9a .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-td6CE9lQ9a .modal-open {
  overflow: hidden;
}
.cid-td6CE9lQ9a .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-td6CE9lQ9a .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-td6CE9lQ9a .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-td6CE9lQ9a .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-td6CE9lQ9a .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-td6CE9lQ9a .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-td6CE9lQ9a .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-td6CE9lQ9a .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-td6CE9lQ9a .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-td6CE9lQ9a .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-td6CE9lQ9a .modal-backdrop.fade {
  opacity: 0;
}
.cid-td6CE9lQ9a .modal-backdrop.show {
  opacity: .5;
}
.cid-td6CE9lQ9a .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-td6CE9lQ9a .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-td6CE9lQ9a .modal-header {
    padding: 1rem;
  }
}
.cid-td6CE9lQ9a .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-td6CE9lQ9a .modal-header .close svg {
  fill: #e43f3f;
}
.cid-td6CE9lQ9a .modal-header .close:hover {
  opacity: 1;
}
.cid-td6CE9lQ9a .modal-header .close:focus {
  outline: none;
}
.cid-td6CE9lQ9a .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0a6cff;
}
.cid-td6CE9lQ9a .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-td6CE9lQ9a .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-td6CE9lQ9a .modal-body {
    padding: 1rem;
  }
}
.cid-td6CE9lQ9a .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-td6CE9lQ9a .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-td6CE9lQ9a .modal-footer {
    padding: 1rem;
  }
}
.cid-td6CE9lQ9a .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-td6CE9lQ9a .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-td6CE9lQ9a .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-td6CE9lQ9a .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-td6CE9lQ9a .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-td6CE9lQ9a .modal-lg,
  .cid-td6CE9lQ9a .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-td6CE9lQ9a .modal-xl {
    max-width: 1140px;
  }
}
.cid-td6CE9lQ9a .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-td6CE9lQ9a .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-td6CE9lQ9a .form-group {
  margin-bottom: 1rem;
}
.cid-td6CE9lQ9a .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-td6CE9lQ9a .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-td6CE9lQ9a .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-td6CE9lQ9a .mbr-section-btn {
  margin: 0;
}
.cid-td6CE9lQ9a .mbr-section-btn .btn {
  margin: 0;
}
.cid-tfeWVs1nb1.popup-builder {
  background-color: #ffffff;
}
.cid-tfeWVs1nb1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tfeWVs1nb1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tfeWVs1nb1 .modal-content,
.cid-tfeWVs1nb1 .modal-dialog {
  height: auto;
}
.cid-tfeWVs1nb1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tfeWVs1nb1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tfeWVs1nb1 .form-wrapper .mbr-form .form-group,
  .cid-tfeWVs1nb1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tfeWVs1nb1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tfeWVs1nb1 .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-tfeWVs1nb1 .mbr-text {
  text-align: center;
}
.cid-tfeWVs1nb1 .pt-0 {
  padding-top: 0 !important;
}
.cid-tfeWVs1nb1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tfeWVs1nb1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tfeWVs1nb1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tfeWVs1nb1 .modal-open {
  overflow: hidden;
}
.cid-tfeWVs1nb1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tfeWVs1nb1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tfeWVs1nb1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tfeWVs1nb1 .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-tfeWVs1nb1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tfeWVs1nb1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tfeWVs1nb1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tfeWVs1nb1 .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-tfeWVs1nb1 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tfeWVs1nb1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tfeWVs1nb1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tfeWVs1nb1 .modal-backdrop.show {
  opacity: .5;
}
.cid-tfeWVs1nb1 .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-tfeWVs1nb1 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tfeWVs1nb1 .modal-header {
    padding: 1rem;
  }
}
.cid-tfeWVs1nb1 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tfeWVs1nb1 .modal-header .close svg {
  fill: #e43f3f;
}
.cid-tfeWVs1nb1 .modal-header .close:hover {
  opacity: 1;
}
.cid-tfeWVs1nb1 .modal-header .close:focus {
  outline: none;
}
.cid-tfeWVs1nb1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a6cff;
}
.cid-tfeWVs1nb1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tfeWVs1nb1 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tfeWVs1nb1 .modal-body {
    padding: 1rem;
  }
}
.cid-tfeWVs1nb1 .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-tfeWVs1nb1 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tfeWVs1nb1 .modal-footer {
    padding: 1rem;
  }
}
.cid-tfeWVs1nb1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tfeWVs1nb1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tfeWVs1nb1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tfeWVs1nb1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tfeWVs1nb1 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tfeWVs1nb1 .modal-lg,
  .cid-tfeWVs1nb1 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tfeWVs1nb1 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tfeWVs1nb1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tfeWVs1nb1 .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-tfeWVs1nb1 .form-group {
  margin-bottom: 1rem;
}
.cid-tfeWVs1nb1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tfeWVs1nb1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tfeWVs1nb1 .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-tfeWVs1nb1 .mbr-section-btn {
  margin: 0;
}
.cid-tfeWVs1nb1 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tda2pjbF04 .nav-item:focus,
.cid-tda2pjbF04 .nav-link:focus {
  outline: none;
}
.cid-tda2pjbF04 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tda2pjbF04 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tda2pjbF04 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tda2pjbF04 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tda2pjbF04 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tda2pjbF04 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tda2pjbF04 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tda2pjbF04 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tda2pjbF04 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tda2pjbF04 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tda2pjbF04 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tda2pjbF04 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tda2pjbF04 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tda2pjbF04 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tda2pjbF04 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tda2pjbF04 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tda2pjbF04 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tda2pjbF04 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tda2pjbF04 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tda2pjbF04 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tda2pjbF04 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tda2pjbF04 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tda2pjbF04 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tda2pjbF04 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tda2pjbF04 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tda2pjbF04 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tda2pjbF04 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tda2pjbF04 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tda2pjbF04 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tda2pjbF04 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tda2pjbF04 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tda2pjbF04 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tda2pjbF04 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tda2pjbF04 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tda2pjbF04 .dropdown-item.active,
.cid-tda2pjbF04 .dropdown-item:active {
  background-color: transparent;
}
.cid-tda2pjbF04 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tda2pjbF04 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tda2pjbF04 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tda2pjbF04 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tda2pjbF04 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tda2pjbF04 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tda2pjbF04 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tda2pjbF04 .navbar-buttons {
  text-align: center;
}
.cid-tda2pjbF04 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tda2pjbF04 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a6cff;
}
.cid-tda2pjbF04 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tda2pjbF04 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tda2pjbF04 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tda2pjbF04 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tda2pjbF04 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tda2pjbF04 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tda2pjbF04 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tda2pjbF04 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tda2pjbF04 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tda2pjbF04 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tda2pjbF04 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tda2pjbF04 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tda2pjbF04 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tda2pjbF04 .nav-link:hover,
.cid-tda2pjbF04 .dropdown-item:hover,
.cid-tda2pjbF04 .icons-menu .mbr-iconfont:hover {
  color: #0a6cff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tda2pjbF04 .navbar {
    height: 77px;
  }
  .cid-tda2pjbF04 .navbar.opened {
    height: auto;
  }
}
.cid-tda7AbBDsp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f3f4f7;
}
.cid-tda7AbBDsp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tda7AbBDsp .form-control,
.cid-tda7AbBDsp .field-input {
  padding: 0px 20px;
  min-height: auto;
  background-color: #ffffff;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.cid-tda7AbBDsp .form-control::-webkit-input-placeholder,
.cid-tda7AbBDsp .field-input::-webkit-input-placeholder,
.cid-tda7AbBDsp .form-control::-webkit-input-placeholder,
.cid-tda7AbBDsp .field-input::-webkit-input-placeholder {
  color: #606060;
}
.cid-tda7AbBDsp .form-control:-moz-placeholder,
.cid-tda7AbBDsp .field-input:-moz-placeholder,
.cid-tda7AbBDsp .form-control:-moz-placeholder,
.cid-tda7AbBDsp .field-input:-moz-placeholder {
  color: #606060;
}
.cid-tda7AbBDsp .form-control:hover,
.cid-tda7AbBDsp .field-input:hover,
.cid-tda7AbBDsp .form-control:focus,
.cid-tda7AbBDsp .field-input:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tda7AbBDsp .form-control:hover::-webkit-input-placeholder,
.cid-tda7AbBDsp .field-input:hover::-webkit-input-placeholder,
.cid-tda7AbBDsp .form-control:focus::-webkit-input-placeholder,
.cid-tda7AbBDsp .field-input:focus::-webkit-input-placeholder,
.cid-tda7AbBDsp .form-control:hover::-webkit-input-placeholder,
.cid-tda7AbBDsp .field-input:hover::-webkit-input-placeholder,
.cid-tda7AbBDsp .form-control:focus::-webkit-input-placeholder,
.cid-tda7AbBDsp .field-input:focus::-webkit-input-placeholder {
  color: #606060;
}
.cid-tda7AbBDsp .form-control:hover:-moz-placeholder,
.cid-tda7AbBDsp .field-input:hover:-moz-placeholder,
.cid-tda7AbBDsp .form-control:focus:-moz-placeholder,
.cid-tda7AbBDsp .field-input:focus:-moz-placeholder,
.cid-tda7AbBDsp .form-control:hover:-moz-placeholder,
.cid-tda7AbBDsp .field-input:hover:-moz-placeholder,
.cid-tda7AbBDsp .form-control:focus:-moz-placeholder,
.cid-tda7AbBDsp .field-input:focus:-moz-placeholder {
  color: #606060;
}
.cid-tda7AbBDsp textarea {
  padding-top: 1rem !important;
  height: 160px !important;
}
.cid-tda7AbBDsp .jq-number__spin:hover,
.cid-tda7AbBDsp .jq-number__spin:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tda7AbBDsp .jq-number__spin {
  background-color: #ffffff;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tda7AbBDsp .jq-selectbox li,
.cid-tda7AbBDsp .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tda7AbBDsp .jq-selectbox li:hover,
.cid-tda7AbBDsp .jq-selectbox li.selected {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-tda7AbBDsp .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tda7AbBDsp .jq-number__spin.minus:hover:after,
.cid-tda7AbBDsp .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tda7AbBDsp .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tda7AbBDsp .jq-number__spin.minus:after,
.cid-tda7AbBDsp .jq-number__spin.plus:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-tda7AbBDsp .wrap {
  position: relative;
}
.cid-tda7AbBDsp .mbr-form {
  z-index: 1;
}
.cid-tda7AbBDsp input::-webkit-clear-button {
  display: none;
}
.cid-tda7AbBDsp input::-webkit-inner-spin-button {
  display: none;
}
.cid-tda7AbBDsp input::-webkit-outer-spin-button {
  display: none;
}
.cid-tda7AbBDsp input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tda7AbBDsp .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #000000;
  background-color: rgba(66, 132, 223, 0.15);
  margin-bottom: 26px;
}
.cid-tda7AbBDsp .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tda7AbBDsp .mbr-section-title {
  color: #e43f3f;
  text-align: center;
}
.cid-tda7AbBDsp .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-tda7AbBDsp .mbr-section-subtitle {
  color: #0a6cff;
  font-weight: 600;
  margin-bottom: 21px;
  text-align: center;
}
.cid-tda7AbBDsp .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tda7AbBDsp .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-tda7AbBDsp .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-tda7AbBDsp .required {
  width: 100%;
  color: #808080;
}
.cid-tda7AbBDsp img {
  width: 100%;
}
.cid-tda7AbBDsp .counter {
  top: 0%;
  left: 13%;
}
.cid-tda7AbBDsp .counter .full-circle {
  background-color: #4284df;
  display: inline-block;
  border-radius: 50%;
  min-width: 100px;
  min-height: 100px;
  padding: 24px;
  text-align: center;
  white-space: nowrap;
}
.cid-tda7AbBDsp .counter .full-circle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-top: 100%;
  height: 0;
}
.cid-tda7AbBDsp .counter .full-circle .full-circle-inner {
  display: inline-block;
  vertical-align: middle;
}
.cid-tda7AbBDsp .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tda7AbBDsp img {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tda7AbBDsp .required {
    text-align: center;
  }
}
.cid-tda7AbBDsp .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-tda7AbBDsp .form-control-label,
.cid-tda7AbBDsp .form-check {
  margin-left: 20px;
}
.cid-tda7AbBDsp .badge,
.cid-tda7AbBDsp .badge_wrap {
  text-align: center;
  color: #000000;
}
.cid-tda7AbBDsp LABEL {
  text-align: left;
  color: #232323;
}
.cid-tda7AbBDsp .block {
  animation: pulse 3s infinite;
  align: center;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tda7AbBDsp .mbr-text,
.cid-tda7AbBDsp .mbr-section-btn {
  text-align: left;
}
.cid-tdsCtSwL3a {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tdsCtSwL3a .row {
  flex-direction: row-reverse;
}
.cid-tdsCtSwL3a .image-wrapper {
  padding: 0 2rem;
}
.cid-tdsCtSwL3a .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-tdsCtSwL3a .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-tdsCtSwL3a .mbr-section-title {
  color: #0a6cff;
  margin-bottom: 1.5rem;
}
.cid-tdsCtSwL3a .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 4rem;
}
.cid-tdsCtSwL3a .mbr-text {
  color: #1f1437;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-tdsCtSwL3a .text-wrapper,
  .cid-tdsCtSwL3a .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tdsCtSwL3a .text-wrapper,
  .cid-tdsCtSwL3a .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-tdsCtSwL3a .text-wrapper,
  .cid-tdsCtSwL3a .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-tdsCtSwL3a .text-wrapper,
  .cid-tdsCtSwL3a .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-tdsCtSwL3a .text-wrapper,
  .cid-tdsCtSwL3a .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tdsCtSwL3a .content {
    text-align: center;
  }
}
.cid-tdsCtSwL3a .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-tdsCtSwL3a .mbr-card-title {
    text-align: start;
  }
}
.cid-tdsCtSwL3a .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-tdsCtSwL3a .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-tdsCtSwL3a .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-tdsCtSwL3a .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-tdsCtSwL3a .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-tdsCtSwL3a .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-tdsCtSwL3a .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-tdsCtSwL3a .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-tdsCtSwL3a .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-tdsCtSwL3a .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-tdsCtSwL3a .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-tdsCtSwL3a .nutrition-wrap {
    width: 100%;
  }
}
.cid-tdsCtSwL3a .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-tdsCtSwL3a .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-tdsCtSwL3a .tile-text-wrap {
  display: flex;
}
.cid-tdsCtSwL3a svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-tdsCtSwL3a svg path {
  fill: #cd8ad1;
}
.cid-tdsCtSwL3a .numbers {
  display: flex;
  align-self: center;
}
.cid-tdsCtSwL3a .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-tdsCtSwL3a .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-tdsCtSwL3a .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-tdsCtSwL3a .mbr-tile-text {
    text-align: start;
  }
}
.cid-tdsCtSwL3a .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tdsCtSwL3a .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-tdsCtSwL3a .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-tdsCtSwL3a .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-tdsCtSwL3a .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-tdsCtSwL3a .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tdsCtSwL3a .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tdsCtSwL3a .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-tdsCtSwL3a .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tdsCtSwL3a div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-tdsCtSwL3a .mbr-section-btn {
  display: flex;
}
.cid-tdsCtSwL3a .block {
  animation: pulse 3s infinite;
  align: center;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tdgxBbmDLA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f3f4f7;
}
.cid-tdgxBbmDLA img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tdgxBbmDLA img {
    width: 100%;
  }
}
.cid-tdgxBbmDLA .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-tdgxBbmDLA .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-tdgxBbmDLA .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tdgxBbmDLA .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  content: "✓";
}
.cid-tdgxBbmDLA .mbr-text,
.cid-tdgxBbmDLA .mbr-section-btn {
  color: #232323;
}
.cid-tdgxBbmDLA .mbr-section-subtitle {
  color: #777777;
}
.cid-tdgxBbmDLA .mbr-list {
  color: #000000;
}
.cid-tdgxBbmDLA .mbr-section-title {
  color: #0a6cff;
}
.cid-tdgygBtBhB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f3f4f7;
}
.cid-tdgygBtBhB .block {
  animation: pulse 3s infinite;
  align: center;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tdgxSk618C {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tdgxSk618C h1 {
  margin-bottom: 0.2rem;
}
.cid-tdgxSk618C .container-fluid {
  padding: 0;
}
.cid-tdgxSk618C img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tdgxSk618C .mbr-figure {
  height: 100%;
}
.cid-tdgxSk618C .col-lg-6 {
  padding: 0;
}
.cid-tdgxSk618C .mbr-text {
  color: #747474;
}
.cid-tdgxSk618C hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tdgxSk618C .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tdgxSk618C .mbr-section-subtitle-1 {
  color: #000000;
}
.cid-tdgxSk618C .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tdgxSk618C .mbr-figure::after {
  content: '';
  background-color: #e43f3f;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tdgxSk618C .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tdgxSk618C .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tdgxSk618C .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tdgxSk618C .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tdgxSk618C .btn {
  color: #101010 !important;
}
.cid-tdgxSk618C .btn:hover {
  color: #ffffff !important;
}
.cid-tdgxSk618C .line-title {
  width: 40px;
  height: 2px;
  background-color: #e43f3f;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tdgxSk618C .vertical-line:before {
  content: '';
  background-color: #e43f3f;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tdgxSk618C .mbr-text,
.cid-tdgxSk618C .mbr-section-btn {
  color: #000000;
}
.cid-tdgxSk618C .media-content,
.cid-tdgxSk618C .mbr-section-title,
.cid-tdgxSk618C .line-title {
  color: #0a6cff;
}
.cid-tdgCEtoTu4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f3f4f7;
}
.cid-tdgCEtoTu4 img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tdgCEtoTu4 img {
    width: 100%;
  }
}
.cid-tdgCEtoTu4 .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-tdgCEtoTu4 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-tdgCEtoTu4 .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tdgCEtoTu4 .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  content: "✓";
}
.cid-tdgCEtoTu4 .mbr-text,
.cid-tdgCEtoTu4 .mbr-section-btn {
  color: #232323;
}
.cid-tdgCEtoTu4 .mbr-section-subtitle {
  color: #777777;
}
.cid-tdgCEtoTu4 .mbr-list {
  color: #000000;
}
.cid-tdgCEtoTu4 .mbr-section-title {
  color: #0a6cff;
}
.cid-tdgBRYLQbE {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f3f4f7;
}
.cid-tdgBRYLQbE .block {
  animation: pulse 3s infinite;
  align: center;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tfaz3NE81P {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tfaz3NE81P .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tfaz3NE81P .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfaz3NE81P .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfaz3NE81P .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tfaz3NE81P .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tfaz3NE81P .mbr-gallery-item > div:hover::before {
  opacity: 0.4 !important;
}
.cid-tfaz3NE81P .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tfaz3NE81P .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tfaz3NE81P .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tfaz3NE81P .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tfaz3NE81P .mbr-gallery-filter ul {
  display: block;
}
.cid-tfaz3NE81P .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tfaz3NE81P .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tfaz3NE81P .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tfaz3NE81P .mbr-gallery-filter li.active::after,
.cid-tfaz3NE81P .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tfaz3NE81P .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-tfaz3NE81P .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-tfaz3NE81P .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tfaz3NE81P .icon-focus:before {
  content: '\e95e';
}
.cid-tfaz3NE81P .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tfaz3NE81P .mbr-section-title {
  margin: 0;
}
.cid-tfaz3NE81P .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tfaz3NE81P .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tfaz3NE81P .mbr-section-title,
.cid-tfaz3NE81P .underline {
  text-align: center;
  color: #0a6cff;
}
.cid-tda2pGsCHb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0a6cff;
  overflow: hidden;
}
.cid-tdu0QMwMw6.popup-builder {
  background-color: #ffffff;
}
.cid-tdu0QMwMw6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tdu0QMwMw6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tdu0QMwMw6 .modal-content,
.cid-tdu0QMwMw6 .modal-dialog {
  height: auto;
}
.cid-tdu0QMwMw6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tdu0QMwMw6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tdu0QMwMw6 .form-wrapper .mbr-form .form-group,
  .cid-tdu0QMwMw6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tdu0QMwMw6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tdu0QMwMw6 .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-tdu0QMwMw6 .mbr-text {
  text-align: center;
}
.cid-tdu0QMwMw6 .pt-0 {
  padding-top: 0 !important;
}
.cid-tdu0QMwMw6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tdu0QMwMw6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tdu0QMwMw6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tdu0QMwMw6 .modal-open {
  overflow: hidden;
}
.cid-tdu0QMwMw6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tdu0QMwMw6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tdu0QMwMw6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tdu0QMwMw6 .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-tdu0QMwMw6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tdu0QMwMw6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tdu0QMwMw6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tdu0QMwMw6 .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-tdu0QMwMw6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tdu0QMwMw6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tdu0QMwMw6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tdu0QMwMw6 .modal-backdrop.show {
  opacity: .5;
}
.cid-tdu0QMwMw6 .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-tdu0QMwMw6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tdu0QMwMw6 .modal-header {
    padding: 1rem;
  }
}
.cid-tdu0QMwMw6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tdu0QMwMw6 .modal-header .close svg {
  fill: #e43f3f;
}
.cid-tdu0QMwMw6 .modal-header .close:hover {
  opacity: 1;
}
.cid-tdu0QMwMw6 .modal-header .close:focus {
  outline: none;
}
.cid-tdu0QMwMw6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tdu0QMwMw6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tdu0QMwMw6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdu0QMwMw6 .modal-body {
    padding: 1rem;
  }
}
.cid-tdu0QMwMw6 .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-tdu0QMwMw6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdu0QMwMw6 .modal-footer {
    padding: 1rem;
  }
}
.cid-tdu0QMwMw6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tdu0QMwMw6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tdu0QMwMw6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tdu0QMwMw6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tdu0QMwMw6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tdu0QMwMw6 .modal-lg,
  .cid-tdu0QMwMw6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tdu0QMwMw6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tdu0QMwMw6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tdu0QMwMw6 .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-tdu0QMwMw6 .form-group {
  margin-bottom: 1rem;
}
.cid-tdu0QMwMw6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tdu0QMwMw6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tdu0QMwMw6 .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-tdu0QMwMw6 .mbr-section-btn {
  margin: 0;
}
.cid-tdu0QMwMw6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tdDxhIk1Q9 .nav-item:focus,
.cid-tdDxhIk1Q9 .nav-link:focus {
  outline: none;
}
.cid-tdDxhIk1Q9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tdDxhIk1Q9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdDxhIk1Q9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tdDxhIk1Q9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tdDxhIk1Q9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdDxhIk1Q9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tdDxhIk1Q9 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tdDxhIk1Q9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tdDxhIk1Q9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdDxhIk1Q9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tdDxhIk1Q9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tdDxhIk1Q9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdDxhIk1Q9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdDxhIk1Q9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tdDxhIk1Q9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdDxhIk1Q9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tdDxhIk1Q9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tdDxhIk1Q9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdDxhIk1Q9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tdDxhIk1Q9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdDxhIk1Q9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdDxhIk1Q9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tdDxhIk1Q9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tdDxhIk1Q9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdDxhIk1Q9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdDxhIk1Q9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tdDxhIk1Q9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdDxhIk1Q9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tdDxhIk1Q9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tdDxhIk1Q9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tdDxhIk1Q9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tdDxhIk1Q9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdDxhIk1Q9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdDxhIk1Q9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdDxhIk1Q9 .dropdown-item.active,
.cid-tdDxhIk1Q9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tdDxhIk1Q9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdDxhIk1Q9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdDxhIk1Q9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdDxhIk1Q9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdDxhIk1Q9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdDxhIk1Q9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdDxhIk1Q9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdDxhIk1Q9 .navbar-buttons {
  text-align: center;
}
.cid-tdDxhIk1Q9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tdDxhIk1Q9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a6cff;
}
.cid-tdDxhIk1Q9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tdDxhIk1Q9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tdDxhIk1Q9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tdDxhIk1Q9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tdDxhIk1Q9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdDxhIk1Q9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tdDxhIk1Q9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tdDxhIk1Q9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdDxhIk1Q9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tdDxhIk1Q9 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tdDxhIk1Q9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tdDxhIk1Q9 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tdDxhIk1Q9 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tdDxhIk1Q9 .nav-link:hover,
.cid-tdDxhIk1Q9 .dropdown-item:hover,
.cid-tdDxhIk1Q9 .icons-menu .mbr-iconfont:hover {
  color: #0a6cff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdDxhIk1Q9 .navbar {
    height: 77px;
  }
  .cid-tdDxhIk1Q9 .navbar.opened {
    height: auto;
  }
}
.cid-tdDyh1gAOi {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tdDyh1gAOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdDyh1gAOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdDyh1gAOi .video-wrapper iframe {
  width: 100%;
}
.cid-tdDyh1gAOi .mbr-section-title,
.cid-tdDyh1gAOi .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tdDyh1gAOi .text-wrapper {
    padding: 2rem;
  }
}
.cid-tdDyh1gAOi .mbr-section-title {
  text-align: left;
  color: #0a6cff;
}
.cid-tdDyh1gAOi .mbr-section-subtitle {
  color: #0a6cff;
}
.cid-tdDxhYrfTR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f3f4f7;
}
.cid-tdDxhYrfTR img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tdDxhYrfTR img {
    width: 100%;
  }
}
.cid-tdDxhYrfTR .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-tdDxhYrfTR .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-tdDxhYrfTR .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tdDxhYrfTR .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  content: "✓";
}
.cid-tdDxhYrfTR .mbr-text,
.cid-tdDxhYrfTR .mbr-section-btn {
  color: #232323;
}
.cid-tdDxhYrfTR .mbr-section-subtitle {
  color: #777777;
}
.cid-tdDxhYrfTR .mbr-list {
  color: #000000;
}
.cid-tdDxhYrfTR .mbr-section-title {
  color: #0a6cff;
}
.cid-tdDxhU3Owj {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f3f4f7;
}
.cid-tdDxhU3Owj .block {
  animation: pulse 3s infinite;
  align: center;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tdDCohVjdp {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tdDCohVjdp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdDCohVjdp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdDCohVjdp .row {
  flex-direction: row-reverse;
}
.cid-tdDCohVjdp .video-wrapper iframe {
  width: 100%;
}
.cid-tdDCohVjdp .mbr-section-title,
.cid-tdDCohVjdp .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tdDCohVjdp .text-wrapper {
    padding: 2rem;
  }
}
.cid-tdDCohVjdp .mbr-section-subtitle {
  color: #0a6cff;
}
.cid-tdDCpwJHzD {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tdDCpwJHzD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdDCpwJHzD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdDCpwJHzD .video-wrapper iframe {
  width: 100%;
}
.cid-tdDCpwJHzD .mbr-section-title,
.cid-tdDCpwJHzD .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tdDCpwJHzD .text-wrapper {
    padding: 2rem;
  }
}
.cid-tdDCpwJHzD .mbr-section-subtitle {
  color: #0a6cff;
}
.cid-tdDDVsCdV8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f3f4f7;
}
.cid-tdDDVsCdV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tdDDVsCdV8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tdDDVsCdV8 .mbr-section-title {
  color: #e43f3f;
}
.cid-tdDxi0c9iE {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f3f4f7;
}
.cid-tdDxi0c9iE .block {
  animation: pulse 3s infinite;
  align: center;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tfeQgsxaQb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tfeQgsxaQb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tfeQgsxaQb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfeQgsxaQb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfeQgsxaQb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tfeQgsxaQb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tfeQgsxaQb .mbr-gallery-item > div:hover::before {
  opacity: 0.4 !important;
}
.cid-tfeQgsxaQb .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tfeQgsxaQb .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tfeQgsxaQb .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tfeQgsxaQb .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tfeQgsxaQb .mbr-gallery-filter ul {
  display: block;
}
.cid-tfeQgsxaQb .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tfeQgsxaQb .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tfeQgsxaQb .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tfeQgsxaQb .mbr-gallery-filter li.active::after,
.cid-tfeQgsxaQb .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tfeQgsxaQb .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-tfeQgsxaQb .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-tfeQgsxaQb .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tfeQgsxaQb .icon-focus:before {
  content: '\e95e';
}
.cid-tfeQgsxaQb .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tfeQgsxaQb .mbr-section-title {
  margin: 0;
}
.cid-tfeQgsxaQb .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tfeQgsxaQb .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tfeQgsxaQb .mbr-section-title,
.cid-tfeQgsxaQb .underline {
  text-align: center;
  color: #0a6cff;
}
.cid-tdDxi5j3ma {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0a6cff;
  overflow: hidden;
}
.cid-tdDxi79ZZ0.popup-builder {
  background-color: #ffffff;
}
.cid-tdDxi79ZZ0.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tdDxi79ZZ0.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tdDxi79ZZ0 .modal-content,
.cid-tdDxi79ZZ0 .modal-dialog {
  height: auto;
}
.cid-tdDxi79ZZ0 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tdDxi79ZZ0 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tdDxi79ZZ0 .form-wrapper .mbr-form .form-group,
  .cid-tdDxi79ZZ0 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tdDxi79ZZ0 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tdDxi79ZZ0 .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-tdDxi79ZZ0 .mbr-text {
  text-align: center;
}
.cid-tdDxi79ZZ0 .pt-0 {
  padding-top: 0 !important;
}
.cid-tdDxi79ZZ0 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tdDxi79ZZ0 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tdDxi79ZZ0 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tdDxi79ZZ0 .modal-open {
  overflow: hidden;
}
.cid-tdDxi79ZZ0 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tdDxi79ZZ0 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tdDxi79ZZ0 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tdDxi79ZZ0 .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-tdDxi79ZZ0 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tdDxi79ZZ0 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tdDxi79ZZ0 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tdDxi79ZZ0 .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-tdDxi79ZZ0 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tdDxi79ZZ0 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tdDxi79ZZ0 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tdDxi79ZZ0 .modal-backdrop.show {
  opacity: .5;
}
.cid-tdDxi79ZZ0 .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-tdDxi79ZZ0 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tdDxi79ZZ0 .modal-header {
    padding: 1rem;
  }
}
.cid-tdDxi79ZZ0 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tdDxi79ZZ0 .modal-header .close svg {
  fill: #e43f3f;
}
.cid-tdDxi79ZZ0 .modal-header .close:hover {
  opacity: 1;
}
.cid-tdDxi79ZZ0 .modal-header .close:focus {
  outline: none;
}
.cid-tdDxi79ZZ0 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tdDxi79ZZ0 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tdDxi79ZZ0 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdDxi79ZZ0 .modal-body {
    padding: 1rem;
  }
}
.cid-tdDxi79ZZ0 .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-tdDxi79ZZ0 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdDxi79ZZ0 .modal-footer {
    padding: 1rem;
  }
}
.cid-tdDxi79ZZ0 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tdDxi79ZZ0 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tdDxi79ZZ0 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tdDxi79ZZ0 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tdDxi79ZZ0 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tdDxi79ZZ0 .modal-lg,
  .cid-tdDxi79ZZ0 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tdDxi79ZZ0 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tdDxi79ZZ0 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tdDxi79ZZ0 .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-tdDxi79ZZ0 .form-group {
  margin-bottom: 1rem;
}
.cid-tdDxi79ZZ0 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tdDxi79ZZ0 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tdDxi79ZZ0 .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-tdDxi79ZZ0 .mbr-section-btn {
  margin: 0;
}
.cid-tdDxi79ZZ0 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tlxVdFZ74X .nav-item:focus,
.cid-tlxVdFZ74X .nav-link:focus {
  outline: none;
}
.cid-tlxVdFZ74X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tlxVdFZ74X .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlxVdFZ74X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tlxVdFZ74X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tlxVdFZ74X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlxVdFZ74X .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tlxVdFZ74X .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tlxVdFZ74X .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tlxVdFZ74X .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlxVdFZ74X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tlxVdFZ74X .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tlxVdFZ74X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlxVdFZ74X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlxVdFZ74X .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tlxVdFZ74X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlxVdFZ74X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tlxVdFZ74X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tlxVdFZ74X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlxVdFZ74X .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tlxVdFZ74X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlxVdFZ74X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlxVdFZ74X .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tlxVdFZ74X .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tlxVdFZ74X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlxVdFZ74X .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlxVdFZ74X .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tlxVdFZ74X .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlxVdFZ74X .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tlxVdFZ74X .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tlxVdFZ74X .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tlxVdFZ74X .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tlxVdFZ74X .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlxVdFZ74X .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlxVdFZ74X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlxVdFZ74X .dropdown-item.active,
.cid-tlxVdFZ74X .dropdown-item:active {
  background-color: transparent;
}
.cid-tlxVdFZ74X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlxVdFZ74X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlxVdFZ74X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlxVdFZ74X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tlxVdFZ74X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlxVdFZ74X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlxVdFZ74X ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlxVdFZ74X .navbar-buttons {
  text-align: center;
}
.cid-tlxVdFZ74X button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tlxVdFZ74X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a6cff;
}
.cid-tlxVdFZ74X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tlxVdFZ74X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tlxVdFZ74X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tlxVdFZ74X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tlxVdFZ74X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tlxVdFZ74X nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tlxVdFZ74X nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tlxVdFZ74X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tlxVdFZ74X .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tlxVdFZ74X a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tlxVdFZ74X .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tlxVdFZ74X .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tlxVdFZ74X .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tlxVdFZ74X .nav-link:hover,
.cid-tlxVdFZ74X .dropdown-item:hover,
.cid-tlxVdFZ74X .icons-menu .mbr-iconfont:hover {
  color: #0a6cff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tlxVdFZ74X .navbar {
    height: 77px;
  }
  .cid-tlxVdFZ74X .navbar.opened {
    height: auto;
  }
}
.cid-tlxVqqXDJn {
  background-color: #fafafa;
}
.cid-tlxVqqXDJn .mbr-text,
.cid-tlxVqqXDJn .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tlxVqqXDJn .mbr-text,
  .cid-tlxVqqXDJn .mbr-section-title {
    text-align: center;
  }
}
.cid-tlxVqqXDJn a.btn {
  height: 100%;
  margin: 0;
}
.cid-tlxVqqXDJn .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-tlxVqqXDJn .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tlxVqqXDJn .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tlxVqqXDJn .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-tlxVqqXDJn .justify-content-center {
  align-items: center;
}
.cid-tlxVdI1MTe {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tlxVdI1MTe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlxVdI1MTe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlxVdI1MTe .video-wrapper iframe {
  width: 100%;
}
.cid-tlxVdI1MTe .mbr-section-title,
.cid-tlxVdI1MTe .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tlxVdI1MTe .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlxVdI1MTe .mbr-section-title {
  text-align: left;
  color: #0a6cff;
}
.cid-tlxVdI1MTe .mbr-section-subtitle {
  color: #0a6cff;
}
.cid-tlxVdJQakV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f3f4f7;
}
.cid-tlxVdJQakV img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tlxVdJQakV img {
    width: 100%;
  }
}
.cid-tlxVdJQakV .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-tlxVdJQakV .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-tlxVdJQakV .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tlxVdJQakV .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e43f3f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  content: "✓";
}
.cid-tlxVdJQakV .mbr-text,
.cid-tlxVdJQakV .mbr-section-btn {
  color: #232323;
}
.cid-tlxVdJQakV .mbr-section-subtitle {
  color: #777777;
}
.cid-tlxVdJQakV .mbr-list {
  color: #000000;
}
.cid-tlxVdJQakV .mbr-section-title {
  color: #0a6cff;
}
.cid-tlxVdLsQct {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f3f4f7;
}
.cid-tlxVdLsQct .block {
  animation: pulse 3s infinite;
  align: center;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tlxVdMGDLP {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tlxVdMGDLP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlxVdMGDLP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlxVdMGDLP .row {
  flex-direction: row-reverse;
}
.cid-tlxVdMGDLP .video-wrapper iframe {
  width: 100%;
}
.cid-tlxVdMGDLP .mbr-section-title,
.cid-tlxVdMGDLP .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tlxVdMGDLP .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlxVdMGDLP .mbr-section-subtitle {
  color: #0a6cff;
}
.cid-tlxVdOqDqF {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tlxVdOqDqF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlxVdOqDqF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlxVdOqDqF .video-wrapper iframe {
  width: 100%;
}
.cid-tlxVdOqDqF .mbr-section-title,
.cid-tlxVdOqDqF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tlxVdOqDqF .text-wrapper {
    padding: 2rem;
  }
}
.cid-tlxVdOqDqF .mbr-section-subtitle {
  color: #0a6cff;
}
.cid-tlxVdQ9xda {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f3f4f7;
}
.cid-tlxVdQ9xda .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlxVdQ9xda .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlxVdQ9xda .mbr-section-title {
  color: #e43f3f;
}
.cid-tlxVdS93De {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f3f4f7;
}
.cid-tlxVdS93De .block {
  animation: pulse 3s infinite;
  align: center;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tlxVdTAqzd {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tlxVdTAqzd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tlxVdTAqzd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tlxVdTAqzd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tlxVdTAqzd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tlxVdTAqzd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tlxVdTAqzd .mbr-gallery-item > div:hover::before {
  opacity: 0.4 !important;
}
.cid-tlxVdTAqzd .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tlxVdTAqzd .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tlxVdTAqzd .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tlxVdTAqzd .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tlxVdTAqzd .mbr-gallery-filter ul {
  display: block;
}
.cid-tlxVdTAqzd .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tlxVdTAqzd .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tlxVdTAqzd .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tlxVdTAqzd .mbr-gallery-filter li.active::after,
.cid-tlxVdTAqzd .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tlxVdTAqzd .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-tlxVdTAqzd .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-tlxVdTAqzd .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tlxVdTAqzd .icon-focus:before {
  content: '\e95e';
}
.cid-tlxVdTAqzd .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tlxVdTAqzd .mbr-section-title {
  margin: 0;
}
.cid-tlxVdTAqzd .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tlxVdTAqzd .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tlxVdTAqzd .mbr-section-title,
.cid-tlxVdTAqzd .underline {
  text-align: center;
  color: #0a6cff;
}
.cid-tlxVdW3Xzo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0a6cff;
  overflow: hidden;
}
.cid-tlxVdXGvx8.popup-builder {
  background-color: #ffffff;
}
.cid-tlxVdXGvx8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlxVdXGvx8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlxVdXGvx8 .modal-content,
.cid-tlxVdXGvx8 .modal-dialog {
  height: auto;
}
.cid-tlxVdXGvx8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlxVdXGvx8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlxVdXGvx8 .form-wrapper .mbr-form .form-group,
  .cid-tlxVdXGvx8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlxVdXGvx8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlxVdXGvx8 .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-tlxVdXGvx8 .mbr-text {
  text-align: center;
}
.cid-tlxVdXGvx8 .pt-0 {
  padding-top: 0 !important;
}
.cid-tlxVdXGvx8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlxVdXGvx8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlxVdXGvx8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlxVdXGvx8 .modal-open {
  overflow: hidden;
}
.cid-tlxVdXGvx8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlxVdXGvx8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlxVdXGvx8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlxVdXGvx8 .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-tlxVdXGvx8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlxVdXGvx8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlxVdXGvx8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlxVdXGvx8 .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-tlxVdXGvx8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tlxVdXGvx8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlxVdXGvx8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlxVdXGvx8 .modal-backdrop.show {
  opacity: .5;
}
.cid-tlxVdXGvx8 .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-tlxVdXGvx8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tlxVdXGvx8 .modal-header {
    padding: 1rem;
  }
}
.cid-tlxVdXGvx8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlxVdXGvx8 .modal-header .close svg {
  fill: #e43f3f;
}
.cid-tlxVdXGvx8 .modal-header .close:hover {
  opacity: 1;
}
.cid-tlxVdXGvx8 .modal-header .close:focus {
  outline: none;
}
.cid-tlxVdXGvx8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlxVdXGvx8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tlxVdXGvx8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tlxVdXGvx8 .modal-body {
    padding: 1rem;
  }
}
.cid-tlxVdXGvx8 .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-tlxVdXGvx8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tlxVdXGvx8 .modal-footer {
    padding: 1rem;
  }
}
.cid-tlxVdXGvx8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlxVdXGvx8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlxVdXGvx8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlxVdXGvx8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlxVdXGvx8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tlxVdXGvx8 .modal-lg,
  .cid-tlxVdXGvx8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tlxVdXGvx8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tlxVdXGvx8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlxVdXGvx8 .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-tlxVdXGvx8 .form-group {
  margin-bottom: 1rem;
}
.cid-tlxVdXGvx8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlxVdXGvx8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlxVdXGvx8 .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-tlxVdXGvx8 .mbr-section-btn {
  margin: 0;
}
.cid-tlxVdXGvx8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tmfFvqUJXO .nav-item:focus,
.cid-tmfFvqUJXO .nav-link:focus {
  outline: none;
}
.cid-tmfFvqUJXO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tmfFvqUJXO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmfFvqUJXO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tmfFvqUJXO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tmfFvqUJXO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmfFvqUJXO .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tmfFvqUJXO .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tmfFvqUJXO .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tmfFvqUJXO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmfFvqUJXO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmfFvqUJXO .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tmfFvqUJXO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmfFvqUJXO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmfFvqUJXO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tmfFvqUJXO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmfFvqUJXO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tmfFvqUJXO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tmfFvqUJXO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmfFvqUJXO .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tmfFvqUJXO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmfFvqUJXO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmfFvqUJXO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tmfFvqUJXO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tmfFvqUJXO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmfFvqUJXO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmfFvqUJXO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tmfFvqUJXO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmfFvqUJXO .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tmfFvqUJXO .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tmfFvqUJXO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tmfFvqUJXO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tmfFvqUJXO .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmfFvqUJXO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmfFvqUJXO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmfFvqUJXO .dropdown-item.active,
.cid-tmfFvqUJXO .dropdown-item:active {
  background-color: transparent;
}
.cid-tmfFvqUJXO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmfFvqUJXO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmfFvqUJXO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmfFvqUJXO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tmfFvqUJXO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmfFvqUJXO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmfFvqUJXO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmfFvqUJXO .navbar-buttons {
  text-align: center;
}
.cid-tmfFvqUJXO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tmfFvqUJXO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a6cff;
}
.cid-tmfFvqUJXO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tmfFvqUJXO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tmfFvqUJXO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tmfFvqUJXO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tmfFvqUJXO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tmfFvqUJXO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tmfFvqUJXO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tmfFvqUJXO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tmfFvqUJXO .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tmfFvqUJXO a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tmfFvqUJXO .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tmfFvqUJXO .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tmfFvqUJXO .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tmfFvqUJXO .nav-link:hover,
.cid-tmfFvqUJXO .dropdown-item:hover,
.cid-tmfFvqUJXO .icons-menu .mbr-iconfont:hover {
  color: #0a6cff !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmfFvqUJXO .navbar {
    height: 77px;
  }
  .cid-tmfFvqUJXO .navbar.opened {
    height: auto;
  }
}
.cid-tmfFvtF3VA {
  background-color: #ffffff;
}
.cid-tmfFvtF3VA .mbr-section-title {
  color: #0a6cff;
}
.cid-tmfFvtF3VA .mbr-text,
.cid-tmfFvtF3VA .mbr-section-btn {
  color: #000000;
}
.cid-tmfFvtF3VA .mbr-section-text {
  color: #0a6cff;
}
.cid-tmfFvtF3VA img {
  border-radius: 2rem;
}
.cid-tmfFvtF3VA .mbr-section-subtitle {
  color: #000000;
}
.cid-tmfFvtF3VA .number {
  color: #000000;
}
.cid-tmfFvtF3VA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmfFvtF3VA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmfFvtF3VA .block {
  animation: pulse 3s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tmfFvAgwXW {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f4f7;
}
.cid-tmfFvAgwXW .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tmfFvAgwXW .mbr-section-title {
  text-align: left;
  color: #0a6cff;
  margin: auto;
}
.cid-tmfFvAgwXW .row {
  align-items: center;
  height: 100%;
}
.cid-tmfFvAgwXW .wrapper {
  margin: auto;
}
.cid-tmfFvCx628 {
  padding-top: 45px;
  padding-bottom: 150px;
  background-color: #f3f4f7;
}
.cid-tmfFvCx628 li {
  list-style: none;
}
.cid-tmfFvCx628 .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px;
}
.cid-tmfFvCx628 .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-tmfFvCx628 h4 {
  margin: 0;
}
.cid-tmfFvCx628 .item {
  color: #57468b;
}
.cid-tmfFvCx628 ul {
  padding: 0;
  margin: 0;
}
.cid-tmfFvCx628 .col-title {
  color: #57468b;
}
.cid-tmfFvCx628 .col-title1 {
  color: #bfceff;
}
.cid-tmfFvCx628 .col-title2 {
  color: #5580ff;
}
.cid-tmfFvCx628 .col-title3 {
  color: #ff8a73;
}
.cid-tmfFvCx628 .col-title4 {
  color: #57468b;
}
.cid-tmfFvCx628 .item1 {
  color: #e43f3f;
  text-transform: uppercase;
}
.cid-tmfFvCx628 .item2 {
  color: #e43f3f;
  text-transform: uppercase;
}
.cid-tmfFvCx628 .item3 {
  color: #e43f3f;
  text-transform: uppercase;
}
.cid-tmfFvCx628 .item4 {
  color: #e43f3f;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tmfFvCx628 .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-tmfFvCx628 .ulcard {
  background: white;
  border-radius: 10px;
  padding: 10px;
}
.cid-tmfFvHLLLg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tmfFvHLLLg .row {
  flex-direction: row-reverse;
}
.cid-tmfFvHLLLg .row {
  align-items: center;
}
.cid-tmfFvHLLLg .image-wrapper {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tmfFvHLLLg .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-tmfFvHLLLg .text-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 30px 0 0;
}
@media (min-width: 992px) {
  .cid-tmfFvHLLLg .text-wrapper {
    padding: 0 0 0 60px;
    padding: 0 60px 0 0 ;
  }
}
.cid-tmfFvHLLLg .text-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-tmfFvHLLLg .text-container {
    width: 550px;
    flex-shrink: 1;
  }
}
.cid-tmfFvHLLLg .label-text {
  width: 100%;
  color: #000000;
}
.cid-tmfFvHLLLg .mbr-section-title {
  margin-bottom: 12px;
  color: #0a6cff;
}
.cid-tmfFvHLLLg .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tmfFvHLLLg .item {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  flex-wrap: wrap;
}
.cid-tmfFvHLLLg .mbr-section-subtitle {
  margin: 0;
  width: 100%;
  color: #0a6cff;
}
.cid-tmfFvHLLLg .numbers-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tmfFvHLLLg .number-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tmfFvHLLLg .color-text {
  color: #0a6cff;
}
.cid-tmfFvHLLLg .text-box {
  width: 100%;
}
.cid-tmfFvHLLLg .icon-text {
  width: 100%;
}
.cid-tmfFvHLLLg .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-tmfFvHLLLg .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tmfFvHLLLg .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tmfFvHLLLg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmfFvHLLLg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmfFvHLLLg .block {
  animation: pulse 3s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tmfFvL1HmH {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f3f4f7;
}
.cid-tmfFvL1HmH .mbr-section-subtitle {
  color: #000000;
  text-align: left;
  margin: auto;
}
.cid-tmfFvL1HmH .mbr-section-title {
  text-align: left;
  color: #0a6cff;
  padding-bottom: 24px;
  margin: auto;
}
.cid-tmfFvL1HmH .row {
  align-items: center;
  height: 100%;
}
.cid-tmfFvL1HmH .wrapper {
  margin: auto;
}
.cid-tmfLYrfGUA {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #f2f3f7;
}
.cid-tmfLYrfGUA .mbr-section-title {
  color: #0a6cff;
}
.cid-tmfLYrfGUA .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tmfLYrfGUA .align-left {
    text-align: center;
  }
}
.cid-tmfLYrfGUA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmfLYrfGUA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmfFvU4Mxf {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tmfFvU4Mxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmfFvU4Mxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmfFvU4Mxf .mbr-section-title {
  color: #0a6cff;
}
.cid-tmfFvU4Mxf .block {
  animation: pulse 3s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
}
.cid-tmfFvWzoru {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f3f4f7;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tmfFvWzoru .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmfFvWzoru .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmfFvWzoru .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmfFvWzoru .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmfFvWzoru .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tmfFvWzoru .mbr-gallery-item > div:hover::before {
  opacity: 0.3 !important;
}
.cid-tmfFvWzoru .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tmfFvWzoru .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tmfFvWzoru .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tmfFvWzoru .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tmfFvWzoru .mbr-gallery-filter ul {
  display: block;
}
.cid-tmfFvWzoru .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tmfFvWzoru .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tmfFvWzoru .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tmfFvWzoru .mbr-gallery-filter li.active::after,
.cid-tmfFvWzoru .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tmfFvWzoru .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-tmfFvWzoru .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-tmfFvWzoru .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tmfFvWzoru .icon-focus:before {
  content: '\e95e';
}
.cid-tmfFvWzoru .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tmfFvWzoru .mbr-section-title {
  margin: 0;
}
.cid-tmfFvWzoru .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tmfFvWzoru .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tmfFvWzoru .mbr-section-title,
.cid-tmfFvWzoru .underline {
  text-align: center;
  color: #0a6cff;
}
.cid-tmfFw0kFW0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0a6cff;
  overflow: hidden;
}
.cid-tmfFw3dpdG.popup-builder {
  background-color: #ffffff;
}
.cid-tmfFw3dpdG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tmfFw3dpdG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tmfFw3dpdG .modal-content,
.cid-tmfFw3dpdG .modal-dialog {
  height: auto;
}
.cid-tmfFw3dpdG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tmfFw3dpdG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tmfFw3dpdG .form-wrapper .mbr-form .form-group,
  .cid-tmfFw3dpdG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tmfFw3dpdG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tmfFw3dpdG .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-tmfFw3dpdG .mbr-text {
  text-align: left;
}
.cid-tmfFw3dpdG .pt-0 {
  padding-top: 0 !important;
}
.cid-tmfFw3dpdG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tmfFw3dpdG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tmfFw3dpdG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tmfFw3dpdG .modal-open {
  overflow: hidden;
}
.cid-tmfFw3dpdG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tmfFw3dpdG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tmfFw3dpdG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tmfFw3dpdG .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-tmfFw3dpdG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tmfFw3dpdG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tmfFw3dpdG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tmfFw3dpdG .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-tmfFw3dpdG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tmfFw3dpdG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tmfFw3dpdG .modal-backdrop.fade {
  opacity: 0;
}
.cid-tmfFw3dpdG .modal-backdrop.show {
  opacity: .5;
}
.cid-tmfFw3dpdG .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-tmfFw3dpdG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tmfFw3dpdG .modal-header {
    padding: 1rem;
  }
}
.cid-tmfFw3dpdG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tmfFw3dpdG .modal-header .close svg {
  fill: #e43f3f;
}
.cid-tmfFw3dpdG .modal-header .close:hover {
  opacity: 1;
}
.cid-tmfFw3dpdG .modal-header .close:focus {
  outline: none;
}
.cid-tmfFw3dpdG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #0a6cff;
}
.cid-tmfFw3dpdG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tmfFw3dpdG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmfFw3dpdG .modal-body {
    padding: 1rem;
  }
}
.cid-tmfFw3dpdG .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-tmfFw3dpdG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmfFw3dpdG .modal-footer {
    padding: 1rem;
  }
}
.cid-tmfFw3dpdG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tmfFw3dpdG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tmfFw3dpdG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tmfFw3dpdG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tmfFw3dpdG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tmfFw3dpdG .modal-lg,
  .cid-tmfFw3dpdG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tmfFw3dpdG .modal-xl {
    max-width: 1140px;
  }
}
.cid-tmfFw3dpdG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tmfFw3dpdG .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-tmfFw3dpdG .form-group {
  margin-bottom: 1rem;
}
.cid-tmfFw3dpdG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tmfFw3dpdG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tmfFw3dpdG .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-tmfFw3dpdG .mbr-section-btn {
  margin: 0;
}
.cid-tmfFw3dpdG .mbr-section-btn .btn {
  margin: 0;
}
.cid-tmfFw6nZ05.popup-builder {
  background-color: #ffffff;
}
.cid-tmfFw6nZ05.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tmfFw6nZ05.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tmfFw6nZ05 .modal-content,
.cid-tmfFw6nZ05 .modal-dialog {
  height: auto;
}
.cid-tmfFw6nZ05 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tmfFw6nZ05 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tmfFw6nZ05 .form-wrapper .mbr-form .form-group,
  .cid-tmfFw6nZ05 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tmfFw6nZ05 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tmfFw6nZ05 .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-tmfFw6nZ05 .mbr-text {
  text-align: center;
}
.cid-tmfFw6nZ05 .pt-0 {
  padding-top: 0 !important;
}
.cid-tmfFw6nZ05 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tmfFw6nZ05 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tmfFw6nZ05 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tmfFw6nZ05 .modal-open {
  overflow: hidden;
}
.cid-tmfFw6nZ05 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tmfFw6nZ05 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tmfFw6nZ05 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tmfFw6nZ05 .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-tmfFw6nZ05 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tmfFw6nZ05 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tmfFw6nZ05 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tmfFw6nZ05 .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-tmfFw6nZ05 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tmfFw6nZ05 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tmfFw6nZ05 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tmfFw6nZ05 .modal-backdrop.show {
  opacity: .5;
}
.cid-tmfFw6nZ05 .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-tmfFw6nZ05 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tmfFw6nZ05 .modal-header {
    padding: 1rem;
  }
}
.cid-tmfFw6nZ05 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tmfFw6nZ05 .modal-header .close svg {
  fill: #e43f3f;
}
.cid-tmfFw6nZ05 .modal-header .close:hover {
  opacity: 1;
}
.cid-tmfFw6nZ05 .modal-header .close:focus {
  outline: none;
}
.cid-tmfFw6nZ05 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #0a6cff;
}
.cid-tmfFw6nZ05 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tmfFw6nZ05 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmfFw6nZ05 .modal-body {
    padding: 1rem;
  }
}
.cid-tmfFw6nZ05 .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-tmfFw6nZ05 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmfFw6nZ05 .modal-footer {
    padding: 1rem;
  }
}
.cid-tmfFw6nZ05 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tmfFw6nZ05 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tmfFw6nZ05 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tmfFw6nZ05 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tmfFw6nZ05 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tmfFw6nZ05 .modal-lg,
  .cid-tmfFw6nZ05 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tmfFw6nZ05 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tmfFw6nZ05 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tmfFw6nZ05 .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-tmfFw6nZ05 .form-group {
  margin-bottom: 1rem;
}
.cid-tmfFw6nZ05 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tmfFw6nZ05 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tmfFw6nZ05 .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-tmfFw6nZ05 .mbr-section-btn {
  margin: 0;
}
.cid-tmfFw6nZ05 .mbr-section-btn .btn {
  margin: 0;
}
