body {
  font-family: Dosis;
}
.display-1 {
  font-family: 'Dosis', sans-serif;
  font-size: 2.6rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ea2b34 !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ea2b34 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ea2b34 !important;
  border-color: #ea2b34 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #b6121a !important;
  border-color: #b6121a !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b6121a !important;
  border-color: #b6121a !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ea2b34 !important;
  border-color: #ea2b34 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b6121a !important;
  border-color: #b6121a !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b6121a !important;
  border-color: #b6121a !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #9f1017;
  color: #9f1017 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ea2b34;
  border-color: #ea2b34;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ea2b34 !important;
  border-color: #ea2b34 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #215f88;
  color: #215f88 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #9f1017;
  color: #9f1017 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ea2b34;
  border-color: #ea2b34;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ea2b34 !important;
  border-color: #ea2b34 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1b8d56;
  color: #1b8d56 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #36d88a;
  border-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ea2b34 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ea2b34 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #9f1017 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1b8d56 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #9f1017 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ea2b34;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ea2b34;
  border-color: #ea2b34;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #ea2b34;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fce5e6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fce5e6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a {
  background: #444444;
}
#scrollToTop a i:before {
  background: #ffffff;
}
#scrollToTop a i:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.mbr-arrow {
  background-color: #444444;
  opacity: .5;
  transition: .3s;
}
.mbr-arrow a {
  color: #ffffff;
}
.mbr-arrow:hover {
  opacity: .7;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ea2b34;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ea2b34;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ea2b34;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ea2b34;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ea2b34;
  border-bottom-color: #ea2b34;
}
.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: #ea2b34 !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: #3e97d1 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ea2b34' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-r8OexNLsAg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-r8OexNLsAg .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-r8OexNLsAg .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #526379;
  color: #ffffff !important;
  background: #667c98 !important;
}
.cid-r8OexNLsAg .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-r8OexNLsAg .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-r8OexNLsAg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-r8OexNLsAg .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-r8OexNLsAg .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ea2b34;
}
.cid-r8OexNLsAg .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-r8OexNLsAg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r8OexNLsAg .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-r8OexNLsAg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r8OexNLsAg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r8OexNLsAg .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-r8OexNLsAg .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-r8OexNLsAg .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-r8OexNLsAg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r8OexNLsAg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-r8OexNLsAg .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-r8OexNLsAg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r8OexNLsAg .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-r8OexNLsAg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r8OexNLsAg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r8OexNLsAg .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-r8OexNLsAg .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-r8OexNLsAg .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-r8OexNLsAg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r8OexNLsAg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r8OexNLsAg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-r8OexNLsAg .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-r8OexNLsAg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-r8OexNLsAg .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
}
.cid-r8OexNLsAg .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-r8OexNLsAg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r8OexNLsAg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r8OexNLsAg .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-r8OexNLsAg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-r8OexNLsAg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r8OexNLsAg .dropdown-item.active,
.cid-r8OexNLsAg .dropdown-item:active {
  background-color: transparent;
}
.cid-r8OexNLsAg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r8OexNLsAg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r8OexNLsAg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r8OexNLsAg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-r8OexNLsAg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-r8OexNLsAg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r8OexNLsAg ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-r8OexNLsAg .navbar-buttons {
  text-align: center;
}
.cid-r8OexNLsAg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-r8OexNLsAg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #667c98;
}
.cid-r8OexNLsAg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r8OexNLsAg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r8OexNLsAg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r8OexNLsAg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r8OexNLsAg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8OexNLsAg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r8OexNLsAg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r8OexNLsAg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r8OexNLsAg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r8OexNLsAg a.nav-link {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-r8OexNLsAg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-r8OexNLsAg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-r8OexNLsAg .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-r8OexNLsAg .nav-link:hover,
.cid-r8OexNLsAg .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-r8Om9BnHc5 .mbr-text,
.cid-r8Om9BnHc5 .typed-text,
.cid-r8Om9BnHc5 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-r8Om9BnHc5 .btn {
  margin-left: 4px !important;
}
.cid-r8Om9BnHc5 .animated-element {
  color: #ffbc00;
}
.cid-r8Om9BnHc5 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-r8Om9BnHc5 .mbr-section-title {
  text-align: left;
}
.cid-thoBZYuiAL {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-thoBZYuiAL .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-thoBZYuiAL .video-block {
    width: 100% !important;
  }
  .cid-thoBZYuiAL .btn {
    margin: 0.5rem 0.5rem;
  }
}
.cid-thoBZYuiAL .underline {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.cid-thoBZYuiAL .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-thoBZYuiAL .row {
  margin-top: 1rem;
}
.cid-thoBZYuiAL .mbr-section-subtitle {
  margin-bottom: 1rem;
}
.cid-r8Of5mExz5 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r8Of5mExz5 .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-r8Of5mExz5 .mbr-section-title {
  margin: 0;
}
.cid-r8Of5mExz5 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-r8Of5mExz5 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-r8Of5mExz5 .card-img {
  text-align: left;
}
.cid-r8Of5mExz5 .row-item {
  padding-bottom: 2rem;
}
.cid-r8Of5mExz5 .row-item:hover .card-img .mbr-iconfont {
  color: #c1c1c1 !important;
}
@media (max-width: 767px) {
  .cid-r8Of5mExz5 .card-img,
  .cid-r8Of5mExz5 .mbr-text,
  .cid-r8Of5mExz5 .mbr-card-title,
  .cid-r8Of5mExz5 .mbr-section-subtitle,
  .cid-r8Of5mExz5 .mbr-section-title,
  .cid-r8Of5mExz5 .underline {
    text-align: center !important;
  }
}
.cid-r8OO3lGAeg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-r8OO3lGAeg .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-r8OO3lGAeg .mbr-text {
  width: 100%;
  height: auto;
}
.cid-r8OO3lGAeg .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-r8OO3lGAeg .row {
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    -webkit-flex-direction: column;
    -webkit-align-items: center;
  }
  .cid-r8OO3lGAeg .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    -webkit-flex: 0 0 100%;
  }
}
.cid-r8OX9aRvBz {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-r8OX9aRvBz .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #232323;
}
.cid-r8OX9aRvBz .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-r8OX9aRvBz .price-tage {
  background: #808080 none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-r8OX9aRvBz .pricing-footer {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-r8OX9aRvBz .price-tage > span {
  letter-spacing: 2px;
}
.cid-r8OX9aRvBz .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-r8OX9aRvBz .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em 1em;
}
.cid-r8OX9aRvBz .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-r8OX9aRvBz .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-r8OX9aRvBz .costs {
  color: #ffffff;
}
.cid-r8OX9aRvBz .costs-title {
  color: #ffffff;
}
.cid-sfna5rvOWt {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f1f1f1;
}
.cid-sfna5rvOWt .mbr-title {
  text-align: center;
}
.cid-sfna5rvOWt .mbr-text {
  text-align: center;
}
#custom-html-10 {
  /* Type valid CSS here */
}
.cid-sfnhUB6vzJ {
  padding-top: 150px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-sfnhUB6vzJ .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-sfnhUB6vzJ .mbr-text {
  width: 100%;
  height: auto;
}
.cid-sfnhUB6vzJ .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-sfnhUB6vzJ .row {
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    -webkit-flex-direction: column;
    -webkit-align-items: center;
  }
  .cid-sfnhUB6vzJ .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    -webkit-flex: 0 0 100%;
  }
}
.cid-tieYa1P6ps {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #111111;
}
.cid-tieYa1P6ps a:link {
  text-decoration: none;
}
.cid-tieYa1P6ps .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tieYa1P6ps .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-tieYa1P6ps .inner-text {
  line-height: 3em;
}
.cid-tieYa1P6ps .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-tieYa1P6ps .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tieYa1P6ps .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tieYa1P6ps .content-text,
.cid-tieYa1P6ps .inner-text {
  color: #c1c1c1;
}
.cid-tieLxTvgzB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tieLxTvgzB .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tieLxTvgzB .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #526379;
  color: #ffffff !important;
  background: #667c98 !important;
}
.cid-tieLxTvgzB .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tieLxTvgzB .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-tieLxTvgzB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-tieLxTvgzB .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-tieLxTvgzB .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ea2b34;
}
.cid-tieLxTvgzB .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-tieLxTvgzB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tieLxTvgzB .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-tieLxTvgzB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tieLxTvgzB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tieLxTvgzB .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-tieLxTvgzB .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-tieLxTvgzB .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-tieLxTvgzB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tieLxTvgzB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-tieLxTvgzB .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-tieLxTvgzB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tieLxTvgzB .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-tieLxTvgzB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tieLxTvgzB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tieLxTvgzB .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-tieLxTvgzB .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-tieLxTvgzB .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-tieLxTvgzB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tieLxTvgzB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tieLxTvgzB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-tieLxTvgzB .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-tieLxTvgzB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-tieLxTvgzB .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
}
.cid-tieLxTvgzB .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tieLxTvgzB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tieLxTvgzB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tieLxTvgzB .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-tieLxTvgzB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tieLxTvgzB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tieLxTvgzB .dropdown-item.active,
.cid-tieLxTvgzB .dropdown-item:active {
  background-color: transparent;
}
.cid-tieLxTvgzB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tieLxTvgzB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tieLxTvgzB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tieLxTvgzB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tieLxTvgzB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-tieLxTvgzB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tieLxTvgzB ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-tieLxTvgzB .navbar-buttons {
  text-align: center;
}
.cid-tieLxTvgzB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-tieLxTvgzB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #667c98;
}
.cid-tieLxTvgzB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tieLxTvgzB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tieLxTvgzB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tieLxTvgzB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tieLxTvgzB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tieLxTvgzB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tieLxTvgzB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tieLxTvgzB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tieLxTvgzB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tieLxTvgzB a.nav-link {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tieLxTvgzB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tieLxTvgzB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-tieLxTvgzB .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-tieLxTvgzB .nav-link:hover,
.cid-tieLxTvgzB .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tieMbv3rwJ {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tieMbv3rwJ .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-tieMbv3rwJ .mbr-text {
  width: 100%;
  height: auto;
  color: #111111;
}
.cid-tieMbv3rwJ .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-tieMbv3rwJ .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tieMbv3rwJ .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-tieMbv3rwJ .mbr-section-title {
  color: #111111;
}
.cid-tieLxWrBBr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #111111;
}
.cid-tieLxWrBBr a:link {
  text-decoration: none;
}
.cid-tieLxWrBBr .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tieLxWrBBr .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-tieLxWrBBr .inner-text {
  line-height: 3em;
}
.cid-tieLxWrBBr .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-tieLxWrBBr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tieLxWrBBr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tieLxWrBBr .content-text,
.cid-tieLxWrBBr .inner-text {
  color: #c1c1c1;
}
.cid-tieYEqpTDy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tieYEqpTDy .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tieYEqpTDy .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #526379;
  color: #ffffff !important;
  background: #667c98 !important;
}
.cid-tieYEqpTDy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tieYEqpTDy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-tieYEqpTDy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-tieYEqpTDy .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-tieYEqpTDy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ea2b34;
}
.cid-tieYEqpTDy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-tieYEqpTDy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tieYEqpTDy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-tieYEqpTDy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tieYEqpTDy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tieYEqpTDy .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-tieYEqpTDy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-tieYEqpTDy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-tieYEqpTDy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tieYEqpTDy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-tieYEqpTDy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-tieYEqpTDy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tieYEqpTDy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-tieYEqpTDy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tieYEqpTDy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tieYEqpTDy .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-tieYEqpTDy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-tieYEqpTDy .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-tieYEqpTDy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tieYEqpTDy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tieYEqpTDy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-tieYEqpTDy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-tieYEqpTDy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-tieYEqpTDy .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
}
.cid-tieYEqpTDy .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tieYEqpTDy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tieYEqpTDy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tieYEqpTDy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-tieYEqpTDy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tieYEqpTDy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tieYEqpTDy .dropdown-item.active,
.cid-tieYEqpTDy .dropdown-item:active {
  background-color: transparent;
}
.cid-tieYEqpTDy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tieYEqpTDy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tieYEqpTDy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tieYEqpTDy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tieYEqpTDy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-tieYEqpTDy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tieYEqpTDy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-tieYEqpTDy .navbar-buttons {
  text-align: center;
}
.cid-tieYEqpTDy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-tieYEqpTDy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #667c98;
}
.cid-tieYEqpTDy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tieYEqpTDy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tieYEqpTDy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tieYEqpTDy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tieYEqpTDy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tieYEqpTDy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tieYEqpTDy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tieYEqpTDy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tieYEqpTDy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tieYEqpTDy a.nav-link {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tieYEqpTDy .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tieYEqpTDy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-tieYEqpTDy .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-tieYEqpTDy .nav-link:hover,
.cid-tieYEqpTDy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tieYEqZeQB {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tieYEqZeQB .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-tieYEqZeQB .mbr-text {
  width: 100%;
  height: auto;
  color: #111111;
}
.cid-tieYEqZeQB .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-tieYEqZeQB .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tieYEqZeQB .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-tieYEqZeQB .mbr-section-title {
  color: #111111;
}
.cid-tieYErjsvf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #111111;
}
.cid-tieYErjsvf a:link {
  text-decoration: none;
}
.cid-tieYErjsvf .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tieYErjsvf .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-tieYErjsvf .inner-text {
  line-height: 3em;
}
.cid-tieYErjsvf .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-tieYErjsvf .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tieYErjsvf .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tieYErjsvf .content-text,
.cid-tieYErjsvf .inner-text {
  color: #c1c1c1;
}
.cid-tieYHd92J6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-tieYHd92J6 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tieYHd92J6 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #526379;
  color: #ffffff !important;
  background: #667c98 !important;
}
.cid-tieYHd92J6 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tieYHd92J6 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-tieYHd92J6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-tieYHd92J6 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-tieYHd92J6 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ea2b34;
}
.cid-tieYHd92J6 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-tieYHd92J6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tieYHd92J6 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-tieYHd92J6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tieYHd92J6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tieYHd92J6 .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-tieYHd92J6 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-tieYHd92J6 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-tieYHd92J6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tieYHd92J6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-tieYHd92J6 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-tieYHd92J6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tieYHd92J6 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-tieYHd92J6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tieYHd92J6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tieYHd92J6 .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-tieYHd92J6 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-tieYHd92J6 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-tieYHd92J6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tieYHd92J6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tieYHd92J6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-tieYHd92J6 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-tieYHd92J6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    -webkit-flex-shrink: initial;
    -webkit-flex-basis: auto;
  }
  .cid-tieYHd92J6 .navbar .navbar-toggler {
    flex-basis: auto;
    -webkit-flex-basis: auto;
  }
}
.cid-tieYHd92J6 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tieYHd92J6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tieYHd92J6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tieYHd92J6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  -webkit-flex-shrink: 0;
  -webkit-align-items: center;
}
.cid-tieYHd92J6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tieYHd92J6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tieYHd92J6 .dropdown-item.active,
.cid-tieYHd92J6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tieYHd92J6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tieYHd92J6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tieYHd92J6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tieYHd92J6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tieYHd92J6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-tieYHd92J6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tieYHd92J6 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-tieYHd92J6 .navbar-buttons {
  text-align: center;
}
.cid-tieYHd92J6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
  -webkit-align-self: center;
}
.cid-tieYHd92J6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #667c98;
}
.cid-tieYHd92J6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tieYHd92J6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tieYHd92J6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tieYHd92J6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tieYHd92J6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tieYHd92J6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tieYHd92J6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tieYHd92J6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tieYHd92J6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tieYHd92J6 a.nav-link {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tieYHd92J6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tieYHd92J6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-tieYHd92J6 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-tieYHd92J6 .nav-link:hover,
.cid-tieYHd92J6 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tieYHdIjF6 {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tieYHdIjF6 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-tieYHdIjF6 .mbr-text {
  width: 100%;
  height: auto;
  color: #111111;
}
.cid-tieYHdIjF6 .content {
  flex-basis: auto !important;
  -webkit-flex-basis: auto !important;
}
@media (max-width: 991px) {
  .cid-tieYHdIjF6 .row {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tieYHdIjF6 .content {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-tieYHdIjF6 .mbr-section-title {
  color: #111111;
}
.cid-tieYHdXEA1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #111111;
}
.cid-tieYHdXEA1 a:link {
  text-decoration: none;
}
.cid-tieYHdXEA1 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tieYHdXEA1 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-tieYHdXEA1 .inner-text {
  line-height: 3em;
}
.cid-tieYHdXEA1 .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-tieYHdXEA1 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tieYHdXEA1 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tieYHdXEA1 .content-text,
.cid-tieYHdXEA1 .inner-text {
  color: #c1c1c1;
}
