body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 2;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.81rem !important;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #ff513c !important;
}
.bg-success {
  background-color: #ff4e3c !important;
}
.bg-info {
  background-color: #61728a !important;
}
.bg-warning {
  background-color: #d52b27 !important;
}
.bg-danger {
  background-color: #1352ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ef1a00 !important;
  border-color: #ef1a00 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ef1a00 !important;
  border-color: #ef1a00 !important;
}
.btn-primary:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #282f39 !important;
  border-color: #282f39 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-info,
.btn-info:active {
  background-color: #61728a !important;
  border-color: #61728a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ef1600 !important;
  border-color: #ef1600 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ef1600 !important;
  border-color: #ef1600 !important;
}
.btn-success:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-white:hover {
  color: white!important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ff513c;
  color: #ff513c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff513c;
  border-color: #ff513c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #282f39;
  color: #282f39;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #282f39;
  border-color: #282f39;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #282f39 !important;
  border-color: #282f39 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #61728a;
  color: #61728a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #61728a;
  border-color: #61728a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #61728a !important;
  border-color: #61728a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ff4e3c;
  color: #ff4e3c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #ff4e3c;
  border-color: #ff4e3c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4e3c !important;
  border-color: #ff4e3c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #d52b27;
  color: #d52b27;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #d52b27;
  border-color: #d52b27;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #1352ff;
  color: #1352ff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #1352ff;
  border-color: #1352ff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.text-primary {
  color: #ff513c !important;
}
.text-secondary {
  color: #282f39 !important;
}
.text-success {
  color: #ff4e3c !important;
}
.text-info {
  color: #61728a !important;
}
.text-warning {
  color: #d52b27 !important;
}
.text-danger {
  color: #1352ff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ffaca2 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #526075 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffaba2 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #99a6b8 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e77e7b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #799dff !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #61728a;
}
.alert-warning {
  background-color: #d52b27;
}
.alert-danger {
  background-color: #1352ff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff513c;
  border-color: #ff513c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff513c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a8b3c2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f7d2d1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfe8ff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #ff513c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff513c;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff513c;
  border-bottom-color: #ff513c;
}
.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: #ff513c !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: #282f39 !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='%23ff513c' %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-slHIaWonQo .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slHIaWonQo .nav-item,
.cid-slHIaWonQo .nav-link,
.cid-slHIaWonQo .navbar-caption {
  font-weight: normal;
}
.cid-slHIaWonQo .nav-item:focus,
.cid-slHIaWonQo .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-slHIaWonQo .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-slHIaWonQo .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-slHIaWonQo .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-slHIaWonQo .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-slHIaWonQo .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-slHIaWonQo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-slHIaWonQo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slHIaWonQo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-slHIaWonQo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-slHIaWonQo .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-slHIaWonQo .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e2640;
}
.cid-slHIaWonQo .navbar.opened {
  transition: all 0.3s;
  background: #0e2640 !important;
}
.cid-slHIaWonQo .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-slHIaWonQo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  display: none !important;
}
.cid-slHIaWonQo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-slHIaWonQo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slHIaWonQo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-slHIaWonQo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-slHIaWonQo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slHIaWonQo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slHIaWonQo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slHIaWonQo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-slHIaWonQo .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-slHIaWonQo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-slHIaWonQo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slHIaWonQo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-slHIaWonQo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slHIaWonQo .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slHIaWonQo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slHIaWonQo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slHIaWonQo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-slHIaWonQo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slHIaWonQo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-slHIaWonQo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-slHIaWonQo .navbar.navbar-short {
  background: #0e2640 !important;
  min-height: 60px;
}
.cid-slHIaWonQo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slHIaWonQo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slHIaWonQo .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slHIaWonQo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slHIaWonQo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slHIaWonQo .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-slHIaWonQo .dropdown-item.active,
.cid-slHIaWonQo .dropdown-item:active {
  background-color: transparent;
}
.cid-slHIaWonQo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slHIaWonQo .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slHIaWonQo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e2640;
}
.cid-slHIaWonQo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-slHIaWonQo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slHIaWonQo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-slHIaWonQo .navbar-buttons {
  text-align: center;
}
.cid-slHIaWonQo .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-slHIaWonQo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-slHIaWonQo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-slHIaWonQo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-slHIaWonQo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slHIaWonQo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slHIaWonQo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-slHIaWonQo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slHIaWonQo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-slHIaWonQo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-slHIaWonQo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slHIaWonQo .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-slHIaWonQo a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-slHIaWonQo .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-slHIaWonQo .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-slHIaWonQo .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-slHIaWonQo .navbar {
    height: 77px;
  }
  .cid-slHIaWonQo .navbar.opened {
    height: auto;
  }
  .cid-slHIaWonQo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZqakGdhKi {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/960x0-960x640.webp");
}
.cid-rZqakGdhKi .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqakGdhKi .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-rZqakGdhKi .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-rZqakGdhKi .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-snpeFt4xdH {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-snpeFt4xdH .mbr-iconfont {
  font-size: 4rem;
  color: #ffffff;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-right: 1.5rem;
}
.cid-snpeFt4xdH .card-title {
  cursor: pointer;
  margin-bottom: 0;
  align-self: center;
}
.cid-snpeFt4xdH .card .card-text {
  margin-top: 0.5rem;
}
.cid-snpeFt4xdH .card .link.display-4 .mbr-iconfont {
  font-size: 0.9rem;
}
.cid-snpeFt4xdH .card .link .mbr-iconfont {
  display: inline-block;
  align-self: center;
  color: #1352ff;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .cid-snpeFt4xdH .card-text {
    text-align: left;
  }
}
.cid-snpgD1KNTO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-snpgD1KNTO .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-snpgD1KNTO .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-snpgD1KNTO .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-snpgD1KNTO .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snpgD1KNTO .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-snpgD1KNTO .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-snpgD1KNTO .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-snpgD1KNTO .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-snpgD1KNTO .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-snpgD1KNTO .card .wrapper .mbr-text,
.cid-snpgD1KNTO .mbr-section-btn {
  text-align: center;
}
.cid-snpgD1KNTO .card .wrapper .mbr-section-title,
.cid-snpgD1KNTO .mbr-section-btn {
  text-align: center;
}
.cid-snpgD1KNTO .card .wrapper .mbr-section-subtitle,
.cid-snpgD1KNTO .mbr-section-btn {
  text-align: center;
}
.cid-snq7iBkwlv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-snq7iBkwlv .mbr-section-title {
  color: #06182d;
}
.cid-snq7iBkwlv .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-snq7iBkwlv .mbr-section-subtitle {
  color: #06182d;
}
.cid-snq7iBkwlv .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-snq7iBkwlv .mbr-section-text {
  color: #999999;
}
.cid-snq7iBkwlv .nav-tabs .nav-item.open .nav-link:focus,
.cid-snq7iBkwlv .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-snq7iBkwlv .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #f4f6f9;
}
.cid-snq7iBkwlv .nav-tabs .nav-item {
  margin-right: 4px;
}
.cid-snq7iBkwlv .first {
  margin-left: -24px;
}
.cid-snq7iBkwlv .nav-tabs .nav-link {
  color: #06182d;
  font-style: normal;
  font-weight: 300;
  transition: all 0.5s;
  border: none;
  border-radius: 0 !important;
  background-color: #f4f6f9;
  padding: 1rem 2.2rem;
}
.cid-snq7iBkwlv .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ff513c;
}
.cid-snq7iBkwlv .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #ff513c;
}
.cid-snq7iBkwlv P {
  color: #879a9f;
}
@media (max-width: 768px) {
  .cid-snq7iBkwlv .first {
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .cid-snq7iBkwlv .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-snq7iBkwlv .mbr-text,
  .cid-snq7iBkwlv .nav-link {
    text-align: center;
  }
}
.cid-rZqalT6jOx {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #0e2640;
}
.cid-rZqalT6jOx .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqalT6jOx .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-slHWnV90Gd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0e2640;
}
.cid-slHWnV90Gd .wrapping {
  background-color: #0e2640;
  padding: 3rem;
  justify-content: space-between;
  align-items: center;
}
.cid-slHWnV90Gd .wrapping .mbr-section-title {
  color: #ffffff;
}
.cid-slHWnV90Gd .wrapping .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-slHWnV90Gd .wrapping .mbr-text {
  color: #a1a1a1;
  margin-bottom: 0;
}
.cid-slHWnV90Gd .wrapping .btn.btn-md {
  font-weight: 500;
  line-height: 1.5;
}
.cid-slHWnV90Gd .wrapping .text-wrap .mbr-section-title,
.cid-slHWnV90Gd .icon-wrap,
.cid-slHWnV90Gd .mbr-section-btn {
  color: #ffffff;
}
.cid-slHWnV90Gd .wrapping .text-wrap .mbr-text,
.cid-slHWnV90Gd .mbr-section-btn {
  color: #ffffff;
}
.cid-sntNgDpkVR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sntNgDpkVR .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-sntNgDpkVR img {
    width: 90%;
  }
}
.cid-sntNgDpkVR .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-sntNgDpkVR .items {
  margin-bottom: 0;
}
.cid-sntNgDpkVR .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-sntNgDpkVR .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-sntNgDpkVR .soc-item:hover span {
  color: #ff513c !important;
}
.cid-sntNgDpkVR .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sntNgDpkVR .social-list {
    justify-content: center;
  }
}
.cid-sntNgDpkVR .mbr-text,
.cid-sntNgDpkVR .mbr-section-btn {
  color: #666666;
}
.cid-slImpx5WzH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e9e9e9;
}
.cid-slImpx5WzH .mbr-text,
.cid-slImpx5WzH .ornament {
  text-align: left;
}
.cid-slMUV1GGii {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e2640;
}
.cid-slMUV1GGii .logo-footer {
  line-height: normal;
}
.cid-slMUV1GGii .logo-footer .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-slMUV1GGii .copyright {
  display: flex;
  align-items: center;
}
.cid-slMUV1GGii .copyright .mbr-list {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 0;
  align-self: center;
  flex-wrap: wrap;
}
.cid-slMUV1GGii .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-slMUV1GGii .social-btns a:focus {
  text-decoration: none;
}
.cid-slMUV1GGii .social-btns .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-slMUV1GGii .copyrightPart {
  display: flex;
}
.cid-slMUV1GGii .copyrightPart .wrap {
  justify-content: space-between;
  color: #61728a;
}
.cid-slN54r5i69 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slN54r5i69 .nav-item,
.cid-slN54r5i69 .nav-link,
.cid-slN54r5i69 .navbar-caption {
  font-weight: normal;
}
.cid-slN54r5i69 .nav-item:focus,
.cid-slN54r5i69 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-slN54r5i69 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-slN54r5i69 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-slN54r5i69 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-slN54r5i69 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-slN54r5i69 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-slN54r5i69 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-slN54r5i69 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slN54r5i69 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-slN54r5i69 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-slN54r5i69 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-slN54r5i69 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e2640;
}
.cid-slN54r5i69 .navbar.opened {
  transition: all 0.3s;
  background: #0e2640 !important;
}
.cid-slN54r5i69 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-slN54r5i69 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  display: none !important;
}
.cid-slN54r5i69 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-slN54r5i69 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slN54r5i69 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-slN54r5i69 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-slN54r5i69 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slN54r5i69 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slN54r5i69 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slN54r5i69 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-slN54r5i69 .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-slN54r5i69 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-slN54r5i69 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slN54r5i69 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-slN54r5i69 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slN54r5i69 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slN54r5i69 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slN54r5i69 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slN54r5i69 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-slN54r5i69 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slN54r5i69 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-slN54r5i69 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-slN54r5i69 .navbar.navbar-short {
  background: #0e2640 !important;
  min-height: 60px;
}
.cid-slN54r5i69 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slN54r5i69 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slN54r5i69 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slN54r5i69 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slN54r5i69 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slN54r5i69 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-slN54r5i69 .dropdown-item.active,
.cid-slN54r5i69 .dropdown-item:active {
  background-color: transparent;
}
.cid-slN54r5i69 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slN54r5i69 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slN54r5i69 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e2640;
}
.cid-slN54r5i69 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-slN54r5i69 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slN54r5i69 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-slN54r5i69 .navbar-buttons {
  text-align: center;
}
.cid-slN54r5i69 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-slN54r5i69 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-slN54r5i69 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-slN54r5i69 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-slN54r5i69 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slN54r5i69 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slN54r5i69 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-slN54r5i69 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slN54r5i69 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-slN54r5i69 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-slN54r5i69 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slN54r5i69 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-slN54r5i69 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-slN54r5i69 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-slN54r5i69 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-slN54r5i69 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-slN54r5i69 .navbar {
    height: 77px;
  }
  .cid-slN54r5i69 .navbar.opened {
    height: auto;
  }
  .cid-slN54r5i69 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-slN54rpbF2 {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-slN54rpbF2 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-slN54rpbF2 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-slN54rpbF2 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-slN54rpbF2 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-slN54rpbF2 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-slN54rpbF2 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-slN54rpbF2 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-slN54rpbF2 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-slN54rpbF2 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-slN54rUkZU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e2640;
}
.cid-slN54rUkZU .logo-footer {
  line-height: normal;
}
.cid-slN54rUkZU .logo-footer .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-slN54rUkZU .copyright {
  display: flex;
  align-items: center;
}
.cid-slN54rUkZU .copyright .mbr-list {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 0;
  align-self: center;
  flex-wrap: wrap;
}
.cid-slN54rUkZU .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-slN54rUkZU .social-btns a:focus {
  text-decoration: none;
}
.cid-slN54rUkZU .social-btns .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-slN54rUkZU .copyrightPart {
  display: flex;
}
.cid-slN54rUkZU .copyrightPart .wrap {
  justify-content: space-between;
  color: #61728a;
}
.cid-slN59wIOzJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slN59wIOzJ .nav-item,
.cid-slN59wIOzJ .nav-link,
.cid-slN59wIOzJ .navbar-caption {
  font-weight: normal;
}
.cid-slN59wIOzJ .nav-item:focus,
.cid-slN59wIOzJ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-slN59wIOzJ .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-slN59wIOzJ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-slN59wIOzJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-slN59wIOzJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-slN59wIOzJ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-slN59wIOzJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-slN59wIOzJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slN59wIOzJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-slN59wIOzJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-slN59wIOzJ .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-slN59wIOzJ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e2640;
}
.cid-slN59wIOzJ .navbar.opened {
  transition: all 0.3s;
  background: #0e2640 !important;
}
.cid-slN59wIOzJ .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-slN59wIOzJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  display: none !important;
}
.cid-slN59wIOzJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-slN59wIOzJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slN59wIOzJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-slN59wIOzJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-slN59wIOzJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slN59wIOzJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-slN59wIOzJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slN59wIOzJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-slN59wIOzJ .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-slN59wIOzJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-slN59wIOzJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slN59wIOzJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-slN59wIOzJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slN59wIOzJ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-slN59wIOzJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-slN59wIOzJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slN59wIOzJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-slN59wIOzJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-slN59wIOzJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-slN59wIOzJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-slN59wIOzJ .navbar.navbar-short {
  background: #0e2640 !important;
  min-height: 60px;
}
.cid-slN59wIOzJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-slN59wIOzJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-slN59wIOzJ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slN59wIOzJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slN59wIOzJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slN59wIOzJ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-slN59wIOzJ .dropdown-item.active,
.cid-slN59wIOzJ .dropdown-item:active {
  background-color: transparent;
}
.cid-slN59wIOzJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slN59wIOzJ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slN59wIOzJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e2640;
}
.cid-slN59wIOzJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-slN59wIOzJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slN59wIOzJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-slN59wIOzJ .navbar-buttons {
  text-align: center;
}
.cid-slN59wIOzJ .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-slN59wIOzJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-slN59wIOzJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-slN59wIOzJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-slN59wIOzJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slN59wIOzJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slN59wIOzJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-slN59wIOzJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slN59wIOzJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-slN59wIOzJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-slN59wIOzJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slN59wIOzJ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-slN59wIOzJ a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-slN59wIOzJ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-slN59wIOzJ .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-slN59wIOzJ .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-slN59wIOzJ .navbar {
    height: 77px;
  }
  .cid-slN59wIOzJ .navbar.opened {
    height: auto;
  }
  .cid-slN59wIOzJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-slN59x51t8 {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-slN59x51t8 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-slN59x51t8 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-slN59x51t8 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-slN59x51t8 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-slN59x51t8 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-slN59x51t8 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-slN59x51t8 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-slN59x51t8 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-slN59x51t8 .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-slN59xjxeV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e2640;
}
.cid-slN59xjxeV .logo-footer {
  line-height: normal;
}
.cid-slN59xjxeV .logo-footer .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-slN59xjxeV .copyright {
  display: flex;
  align-items: center;
}
.cid-slN59xjxeV .copyright .mbr-list {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 0;
  align-self: center;
  flex-wrap: wrap;
}
.cid-slN59xjxeV .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-slN59xjxeV .social-btns a:focus {
  text-decoration: none;
}
.cid-slN59xjxeV .social-btns .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-slN59xjxeV .copyrightPart {
  display: flex;
}
.cid-slN59xjxeV .copyrightPart .wrap {
  justify-content: space-between;
  color: #61728a;
}
.cid-ttQEqy6b21 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttQEqy6b21 .nav-item,
.cid-ttQEqy6b21 .nav-link,
.cid-ttQEqy6b21 .navbar-caption {
  font-weight: normal;
}
.cid-ttQEqy6b21 .nav-item:focus,
.cid-ttQEqy6b21 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ttQEqy6b21 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-ttQEqy6b21 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttQEqy6b21 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-ttQEqy6b21 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-ttQEqy6b21 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-ttQEqy6b21 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ttQEqy6b21 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttQEqy6b21 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttQEqy6b21 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttQEqy6b21 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-ttQEqy6b21 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e2640;
}
.cid-ttQEqy6b21 .navbar.opened {
  transition: all 0.3s;
  background: #0e2640 !important;
}
.cid-ttQEqy6b21 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-ttQEqy6b21 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  display: none !important;
}
.cid-ttQEqy6b21 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttQEqy6b21 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttQEqy6b21 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-ttQEqy6b21 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ttQEqy6b21 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttQEqy6b21 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-ttQEqy6b21 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttQEqy6b21 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-ttQEqy6b21 .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttQEqy6b21 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttQEqy6b21 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttQEqy6b21 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ttQEqy6b21 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttQEqy6b21 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-ttQEqy6b21 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ttQEqy6b21 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttQEqy6b21 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-ttQEqy6b21 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ttQEqy6b21 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttQEqy6b21 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ttQEqy6b21 .navbar.navbar-short {
  background: #0e2640 !important;
  min-height: 60px;
}
.cid-ttQEqy6b21 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ttQEqy6b21 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ttQEqy6b21 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttQEqy6b21 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttQEqy6b21 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttQEqy6b21 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-ttQEqy6b21 .dropdown-item.active,
.cid-ttQEqy6b21 .dropdown-item:active {
  background-color: transparent;
}
.cid-ttQEqy6b21 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttQEqy6b21 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttQEqy6b21 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e2640;
}
.cid-ttQEqy6b21 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttQEqy6b21 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttQEqy6b21 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttQEqy6b21 .navbar-buttons {
  text-align: center;
}
.cid-ttQEqy6b21 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-ttQEqy6b21 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttQEqy6b21 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ttQEqy6b21 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttQEqy6b21 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttQEqy6b21 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttQEqy6b21 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttQEqy6b21 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttQEqy6b21 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttQEqy6b21 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttQEqy6b21 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttQEqy6b21 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-ttQEqy6b21 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-ttQEqy6b21 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-ttQEqy6b21 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-ttQEqy6b21 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttQEqy6b21 .navbar {
    height: 77px;
  }
  .cid-ttQEqy6b21 .navbar.opened {
    height: auto;
  }
  .cid-ttQEqy6b21 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttQEqyPowU {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/960x0-960x640.webp");
}
.cid-ttQEqyPowU .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-ttQEqyPowU .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-ttQEqyPowU .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-ttQEqyPowU .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-ttQEqyPowU .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttQEqyPowU .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-ttQEqyPowU .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-ttQEqyPowU .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-ttQEqyPowU .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-ttQEqyPowU .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-ttQEqyPowU .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-ttQEqyPowU .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-ttQEqzuuj0 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-ttQEqzuuj0 .mbr-iconfont {
  font-size: 4rem;
  color: #ffffff;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-right: 1.5rem;
}
.cid-ttQEqzuuj0 .card-title {
  cursor: pointer;
  margin-bottom: 0;
  align-self: center;
}
.cid-ttQEqzuuj0 .card .card-text {
  margin-top: 0.5rem;
}
.cid-ttQEqzuuj0 .card .link.display-4 .mbr-iconfont {
  font-size: 0.9rem;
}
.cid-ttQEqzuuj0 .card .link .mbr-iconfont {
  display: inline-block;
  align-self: center;
  color: #1352ff;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .cid-ttQEqzuuj0 .card-text {
    text-align: left;
  }
}
.cid-ttQEqzYrXg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-ttQEqzYrXg .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-ttQEqzYrXg .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-ttQEqzYrXg .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-ttQEqzYrXg .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttQEqzYrXg .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-ttQEqzYrXg .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-ttQEqzYrXg .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-ttQEqzYrXg .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-ttQEqzYrXg .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-ttQEqzYrXg .card .wrapper .mbr-text,
.cid-ttQEqzYrXg .mbr-section-btn {
  text-align: center;
}
.cid-ttQEqzYrXg .card .wrapper .mbr-section-title,
.cid-ttQEqzYrXg .mbr-section-btn {
  text-align: center;
}
.cid-ttQEqzYrXg .card .wrapper .mbr-section-subtitle,
.cid-ttQEqzYrXg .mbr-section-btn {
  text-align: center;
}
.cid-ttQEqCKDAV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e2640;
}
.cid-ttQEqCKDAV .logo-footer {
  line-height: normal;
}
.cid-ttQEqCKDAV .logo-footer .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-ttQEqCKDAV .copyright {
  display: flex;
  align-items: center;
}
.cid-ttQEqCKDAV .copyright .mbr-list {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 0;
  align-self: center;
  flex-wrap: wrap;
}
.cid-ttQEqCKDAV .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttQEqCKDAV .social-btns a:focus {
  text-decoration: none;
}
.cid-ttQEqCKDAV .social-btns .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-ttQEqCKDAV .copyrightPart {
  display: flex;
}
.cid-ttQEqCKDAV .copyrightPart .wrap {
  justify-content: space-between;
  color: #61728a;
}
.cid-ttQF0Tq210 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttQF0Tq210 .nav-item,
.cid-ttQF0Tq210 .nav-link,
.cid-ttQF0Tq210 .navbar-caption {
  font-weight: normal;
}
.cid-ttQF0Tq210 .nav-item:focus,
.cid-ttQF0Tq210 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ttQF0Tq210 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-ttQF0Tq210 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttQF0Tq210 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-ttQF0Tq210 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-ttQF0Tq210 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-ttQF0Tq210 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ttQF0Tq210 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttQF0Tq210 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttQF0Tq210 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttQF0Tq210 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-ttQF0Tq210 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0e2640;
}
.cid-ttQF0Tq210 .navbar.opened {
  transition: all 0.3s;
  background: #0e2640 !important;
}
.cid-ttQF0Tq210 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-ttQF0Tq210 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  display: none !important;
}
.cid-ttQF0Tq210 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttQF0Tq210 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttQF0Tq210 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-ttQF0Tq210 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ttQF0Tq210 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttQF0Tq210 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-ttQF0Tq210 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttQF0Tq210 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-ttQF0Tq210 .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttQF0Tq210 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttQF0Tq210 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttQF0Tq210 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ttQF0Tq210 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttQF0Tq210 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-ttQF0Tq210 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ttQF0Tq210 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttQF0Tq210 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-ttQF0Tq210 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ttQF0Tq210 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttQF0Tq210 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ttQF0Tq210 .navbar.navbar-short {
  background: #0e2640 !important;
  min-height: 60px;
}
.cid-ttQF0Tq210 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ttQF0Tq210 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ttQF0Tq210 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttQF0Tq210 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttQF0Tq210 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttQF0Tq210 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-ttQF0Tq210 .dropdown-item.active,
.cid-ttQF0Tq210 .dropdown-item:active {
  background-color: transparent;
}
.cid-ttQF0Tq210 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttQF0Tq210 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttQF0Tq210 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e2640;
}
.cid-ttQF0Tq210 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttQF0Tq210 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttQF0Tq210 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttQF0Tq210 .navbar-buttons {
  text-align: center;
}
.cid-ttQF0Tq210 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-ttQF0Tq210 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttQF0Tq210 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ttQF0Tq210 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttQF0Tq210 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttQF0Tq210 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttQF0Tq210 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttQF0Tq210 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttQF0Tq210 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttQF0Tq210 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttQF0Tq210 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttQF0Tq210 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-ttQF0Tq210 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-ttQF0Tq210 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-ttQF0Tq210 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-ttQF0Tq210 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttQF0Tq210 .navbar {
    height: 77px;
  }
  .cid-ttQF0Tq210 .navbar.opened {
    height: auto;
  }
  .cid-ttQF0Tq210 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttQF0VzTHM {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #0e2640;
}
.cid-ttQF0VzTHM .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-ttQF0VzTHM .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-ttQF0VzTHM .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-ttQF0VzTHM .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttQF0VzTHM .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-ttQF0VzTHM .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-ttQF0VzTHM .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-ttQF0VzTHM .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-ttQF0VzTHM .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-ttQF0VzTHM .card .wrapper .mbr-text,
.cid-ttQF0VzTHM .mbr-section-btn {
  text-align: center;
}
.cid-ttQF0VzTHM .card .wrapper .mbr-section-title,
.cid-ttQF0VzTHM .mbr-section-btn {
  text-align: center;
}
.cid-ttQF0VzTHM .card .wrapper .mbr-section-subtitle,
.cid-ttQF0VzTHM .mbr-section-btn {
  text-align: center;
}
.cid-ttQF0VRGRz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ttQF0VRGRz .mbr-section-title {
  color: #06182d;
}
.cid-ttQF0VRGRz .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-ttQF0VRGRz .mbr-section-subtitle {
  color: #06182d;
}
.cid-ttQF0VRGRz .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-ttQF0VRGRz .mbr-section-text {
  color: #999999;
}
.cid-ttQF0VRGRz .nav-tabs .nav-item.open .nav-link:focus,
.cid-ttQF0VRGRz .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-ttQF0VRGRz .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #f4f6f9;
}
.cid-ttQF0VRGRz .nav-tabs .nav-item {
  margin-right: 4px;
}
.cid-ttQF0VRGRz .first {
  margin-left: -24px;
}
.cid-ttQF0VRGRz .nav-tabs .nav-link {
  color: #06182d;
  font-style: normal;
  font-weight: 300;
  transition: all 0.5s;
  border: none;
  border-radius: 0 !important;
  background-color: #f4f6f9;
  padding: 1rem 2.2rem;
}
.cid-ttQF0VRGRz .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ff513c;
}
.cid-ttQF0VRGRz .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #ff513c;
}
.cid-ttQF0VRGRz P {
  color: #879a9f;
}
@media (max-width: 768px) {
  .cid-ttQF0VRGRz .first {
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .cid-ttQF0VRGRz .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-ttQF0VRGRz .mbr-text,
  .cid-ttQF0VRGRz .nav-link {
    text-align: center;
  }
}
.cid-ttQF0WANNE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0e2640;
}
.cid-ttQF0WANNE .wrapping {
  background-color: #0e2640;
  padding: 3rem;
  justify-content: space-between;
  align-items: center;
}
.cid-ttQF0WANNE .wrapping .mbr-section-title {
  color: #ffffff;
}
.cid-ttQF0WANNE .wrapping .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-ttQF0WANNE .wrapping .mbr-text {
  color: #a1a1a1;
  margin-bottom: 0;
}
.cid-ttQF0WANNE .wrapping .btn.btn-md {
  font-weight: 500;
  line-height: 1.5;
}
.cid-ttQF0WANNE .wrapping .text-wrap .mbr-section-title,
.cid-ttQF0WANNE .icon-wrap,
.cid-ttQF0WANNE .mbr-section-btn {
  color: #ffffff;
}
.cid-ttQF0WANNE .wrapping .text-wrap .mbr-text,
.cid-ttQF0WANNE .mbr-section-btn {
  color: #ffffff;
}
.cid-ttQF0XNxtd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e2640;
}
.cid-ttQF0XNxtd .logo-footer {
  line-height: normal;
}
.cid-ttQF0XNxtd .logo-footer .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-ttQF0XNxtd .copyright {
  display: flex;
  align-items: center;
}
.cid-ttQF0XNxtd .copyright .mbr-list {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 0;
  align-self: center;
  flex-wrap: wrap;
}
.cid-ttQF0XNxtd .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttQF0XNxtd .social-btns a:focus {
  text-decoration: none;
}
.cid-ttQF0XNxtd .social-btns .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-ttQF0XNxtd .copyrightPart {
  display: flex;
}
.cid-ttQF0XNxtd .copyrightPart .wrap {
  justify-content: space-between;
  color: #61728a;
}
