body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6.72rem;
}
.display-2 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
}
.display-4 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.08rem;
}
.display-7 {
  font-family: 'Bitter', serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 2.2rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #255085 !important;
}
.bg-success {
  background-color: #f1894c !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #36404c !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #255085 !important;
  border-color: #255085 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #255085 !important;
  background-color: transparent !important;
  border-color: #255085 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #142c49 !important;
  border-color: #142c49 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #061e3b !important;
  border-color: #061e3b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #061e3b !important;
  background-color: transparent !important;
  border-color: #061e3b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #82786e !important;
  background-color: transparent !important;
  border-color: #82786e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f1894c !important;
  border-color: #f1894c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #f1894c !important;
  background-color: transparent !important;
  border-color: #f1894c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #df5d11 !important;
  border-color: #df5d11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #36404c !important;
  border-color: #36404c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #36404c !important;
  background-color: transparent !important;
  border-color: #36404c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #161a1f !important;
  border-color: #161a1f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #b1a374 !important;
  background-color: transparent !important;
  border-color: #b1a374 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #333333 !important;
  background-color: transparent !important;
  border-color: #333333 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0f2035;
  color: #0f2035;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #255085;
  border-color: #255085;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #255085 !important;
  border-color: #255085 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #061e3b;
  border-color: #061e3b;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #061e3b !important;
  border-color: #061e3b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #c75410;
  color: #c75410;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #f1894c;
  border-color: #f1894c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f1894c !important;
  border-color: #f1894c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #0c0e10;
  color: #0c0e10;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #36404c;
  border-color: #36404c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #36404c !important;
  border-color: #36404c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #255085 !important;
}
.text-secondary {
  color: #061e3b !important;
}
.text-success {
  color: #f1894c !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #36404c !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #061e3b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #061e3b !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #061e3b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #061e3b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #061e3b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #061e3b !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #061e3b !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #36404c;
}
.alert-danger {
  background-color: #b1a374;
}
.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: #255085;
  border-color: #255085;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #255085;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #598ed1;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a7b3c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
  -webkit-transform: rotate(45deg);
}
.form-control {
  background-color: #ffffff;
  box-shadow: none;
  color: #767676;
  border: 3px solid #ebeced;
  font-family: 'Bitter', serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 46px;
  padding: 0.5rem 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
.form-control:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
blockquote {
  border-color: #255085;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #255085;
  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-number__spin {
  background-color: #ffffff;
  border: 3px solid #ebeced;
}
.jq-number__spin:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #255085;
  border-bottom-color: #255085;
}
.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: #255085 !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: #061e3b !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='%23255085' %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-tuJdt1eLy4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .dropdown-menu {
  padding: 0;
}
.cid-tuJdt1eLy4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuJdt1eLy4 .dropdown-item:hover,
.cid-tuJdt1eLy4 .dropdown-item:focus {
  background: #255085 !important;
  color: white!important;
}
.cid-tuJdt1eLy4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuJdt1eLy4 .nav-link {
  position: relative;
}
.cid-tuJdt1eLy4 .container {
  display: flex;
  margin: auto;
}
.cid-tuJdt1eLy4 .mbr-iconfont {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tuJdt1eLy4 .navbar-caption {
  padding-right: 4rem;
}
.cid-tuJdt1eLy4 .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-tuJdt1eLy4 .dropdown-menu,
.cid-tuJdt1eLy4 .navbar.opened {
  background: #ffffff !important;
}
.cid-tuJdt1eLy4 .nav-item:focus,
.cid-tuJdt1eLy4 .nav-link:focus {
  outline: none;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuJdt1eLy4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuJdt1eLy4 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #0e1b35;
}
.cid-tuJdt1eLy4 .navbar.opened {
  transition: all .3s;
}
.cid-tuJdt1eLy4 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tuJdt1eLy4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tuJdt1eLy4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuJdt1eLy4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuJdt1eLy4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tuJdt1eLy4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tuJdt1eLy4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tuJdt1eLy4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuJdt1eLy4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tuJdt1eLy4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tuJdt1eLy4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tuJdt1eLy4 .navbar.navbar-short {
  background: #0e1b35 !important;
  min-height: 60px;
}
.cid-tuJdt1eLy4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tuJdt1eLy4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tuJdt1eLy4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tuJdt1eLy4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuJdt1eLy4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuJdt1eLy4 .dropdown-item.active,
.cid-tuJdt1eLy4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tuJdt1eLy4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuJdt1eLy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e1b35;
}
.cid-tuJdt1eLy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuJdt1eLy4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuJdt1eLy4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tuJdt1eLy4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuJdt1eLy4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tuJdt1eLy4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tuJdt1eLy4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tuJdt1eLy4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tuJdt1eLy4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tuJdt1eLy4 .navbar {
    height: 77px;
  }
  .cid-tuJdt1eLy4 .navbar.opened {
    height: auto;
  }
  .cid-tuJdt1eLy4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuIV4YlUPU {
  background-image: url("../../../assets/images/pexels-tayyab-khan-2912996-2000x1333.jpg");
}
.cid-tuIV4YlUPU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuIV4YlUPU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuYuMXbXQR {
  padding-top: 195px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuYuMXbXQR h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-tuYuMXbXQR h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tuYuMXbXQR .signature {
  filter: invert(0.8);
  display: inline-block;
  width: auto;
}
.cid-tuYwrF2IJV {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tuYwrF2IJV H1 {
  color: #000000;
}
.cid-tuYwrF2IJV .mbr-text,
.cid-tuYwrF2IJV .mbr-section-btn {
  color: #000000;
}
.cid-tuYwrF2IJV .mbr-subtitle {
  color: #000000;
}
.cid-tuYwrF2IJV .mbr-text {
  margin-top: 1.5rem;
}
.cid-tuYwrF2IJV .mbr-section-btn {
  margin-top: 2rem;
}
.cid-tuYxih4PM3 {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuYxih4PM3 h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-tuYxih4PM3 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tuYxih4PM3 .signature {
  filter: invert(0.8);
  display: inline-block;
  width: auto;
}
.cid-ro4H3uukei {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-ro4H3uukei .card-icon {
  font-size: 56px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-ro4H3uukei .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-ro4H3uukei .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-ro4H3uukei .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #55b4d4;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-ro4H3uukei .card {
  padding: 0!important;
}
.cid-ro4H3uukei .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-ro4H3uukei .card-wrapper:hover {
  background: #ffffff;
}
.cid-ro4H3uukei .card-wrapper:hover .card-icon {
  color: #09142b;
}
.cid-ro4H3uukei .card-wrapper:hover .line {
  background: #09142b;
}
.cid-ro4H3uukei .card1 {
  background: #09142b;
}
.cid-ro4H3uukei .card2 {
  background: #0b1833;
}
.cid-ro4H3uukei .card3 {
  background: #0d1c3c;
}
.cid-ro4H3uukei .card4 {
  background: #0e2044;
}
.cid-ro4H3uukei .card5 {
  background: #10244d;
}
.cid-ro4H3uukei .card6 {
  background: #122855;
}
.cid-ro4H3uukei .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767px) {
  .cid-ro4H3uukei .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-ro4H3uukei .card-title,
.cid-ro4H3uukei .card-ico,
.cid-ro4H3uukei .line-wrap {
  color: #c1c1c1;
}
.cid-tuYt7YEHay {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tuYt7YEHay .card-icon {
  font-size: 56px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-tuYt7YEHay .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-tuYt7YEHay .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-tuYt7YEHay .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #55b4d4;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-tuYt7YEHay .card {
  padding: 0!important;
}
.cid-tuYt7YEHay .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-tuYt7YEHay .card-wrapper:hover {
  background: #ffffff;
}
.cid-tuYt7YEHay .card-wrapper:hover .card-icon {
  color: #09142b;
}
.cid-tuYt7YEHay .card-wrapper:hover .line {
  background: #09142b;
}
.cid-tuYt7YEHay .card1 {
  background: #09142b;
}
.cid-tuYt7YEHay .card2 {
  background: #0b1833;
}
.cid-tuYt7YEHay .card3 {
  background: #0d1c3c;
}
.cid-tuYt7YEHay .card4 {
  background: #0e2044;
}
.cid-tuYt7YEHay .card5 {
  background: #10244d;
}
.cid-tuYt7YEHay .card6 {
  background: #122855;
}
.cid-tuYt7YEHay .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767px) {
  .cid-tuYt7YEHay .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-tuYt7YEHay .card-title,
.cid-tuYt7YEHay .card-ico,
.cid-tuYt7YEHay .line-wrap {
  color: #c1c1c1;
}
.cid-tuYt7YEHay .mbr-text,
.cid-tuYt7YEHay .card-link {
  color: #c1c1c1;
}
.cid-tuYxF7Bz1c {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tuYxF7Bz1c H1 {
  color: #000000;
}
.cid-tuYxF7Bz1c .mbr-text,
.cid-tuYxF7Bz1c .mbr-section-btn {
  color: #000000;
}
.cid-tuYxF7Bz1c .mbr-subtitle {
  color: #000000;
}
.cid-tuYxF7Bz1c .mbr-text {
  margin-top: 1.5rem;
}
.cid-tuYxF7Bz1c .mbr-section-btn {
  margin-top: 2rem;
}
.cid-tuZ3RtPiZF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tuZ3RtPiZF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tuZ3RtPiZF .row {
  flex-direction: row-reverse;
}
.cid-tuZ3RtPiZF img {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-tuZ3RtPiZF .top {
    padding-top: 20px;
  }
}
.cid-tvfPB0oCa4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvfPB0oCa4 h3 {
  position: relative;
}
.cid-tvfPB0oCa4 h3:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -130px;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tvfPB0oCa4 .mbr-iconfont {
  margin-top: 160px;
  display: block;
  font-size: 3rem;
  color: #000000;
}
.cid-tvfP4lZt02 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tvfP4lZt02 .container-fluid {
  padding: 0rem;
}
.cid-tvfP4lZt02 .image-block {
  margin: auto;
}
.cid-tvfP4lZt02 .image-block img {
  width: 100%;
  filter: grayscale(1);
}
@media (max-width: 767px) {
  .cid-tvfP4lZt02 .image-block {
    width: 100% !important;
  }
}
@media (min-width: 767px) {
  .cid-tvfP4lZt02 .row {
    margin: 0rem;
  }
}
.cid-tuYQfVdXSj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tuYQfVdXSj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tuYQfVdXSj .mbr-section-head {
  margin-bottom: 60px;
}
.cid-tuYQfVdXSj .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tuYQfVdXSj .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-tuYQfVdXSj .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tuYQfVdXSj form {
  width: 100%;
}
.cid-tuYQfVdXSj form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tuYQfVdXSj form p {
  color: #747474;
}
.cid-tuYQfVdXSj form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tuYQfVdXSj form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-tuYQfVdXSj form .form-group {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}
.cid-tuYQfVdXSj form .form-control {
  height: 48px;
  border: 1px solid #e1e1e1 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 3px !important;
  margin-bottom: 0;
  padding: 8px 12px;
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  transition: .3s;
}
.cid-tuYQfVdXSj form .form-control::-webkit-input-placeholder {
  color: #747474;
}
.cid-tuYQfVdXSj form .form-control::-moz-placeholder {
  color: #747474;
}
.cid-tuYQfVdXSj form .form-control:-moz-placeholder {
  color: #747474;
}
.cid-tuYQfVdXSj form .form-control:-ms-input-placeholder {
  color: #747474;
}
.cid-tuYQfVdXSj form select {
  color: #747474 !important;
}
.cid-tuYQfVdXSj form textarea {
  height: 135px !important;
  min-height: 135px !important;
  padding: 12px;
  resize: none;
}
.cid-tuYQfVdXSj form textarea::-webkit-input-placeholder {
  color: #747474 !important;
}
.cid-tuYQfVdXSj form textarea::-moz-placeholder {
  color: #747474 !important;
}
.cid-tuYQfVdXSj form textarea:-moz-placeholder {
  color: #747474 !important;
}
.cid-tuYQfVdXSj form textarea:-ms-input-placeholder {
  color: #747474 !important;
}
.cid-tuYQfVdXSj form input,
.cid-tuYQfVdXSj form textarea {
  transition: .4s all;
}
.cid-tuYQfVdXSj form input:active,
.cid-tuYQfVdXSj form textarea:active,
.cid-tuYQfVdXSj form input:focus,
.cid-tuYQfVdXSj form textarea:focus {
  background-color: transparent !important;
  border-color: #a1c4e4 !important;
  outline: none !important;
}
.cid-tuYQfVdXSj form input:active::-webkit-input-placeholder,
.cid-tuYQfVdXSj form textarea:active::-webkit-input-placeholder,
.cid-tuYQfVdXSj form input:focus::-webkit-input-placeholder,
.cid-tuYQfVdXSj form textarea:focus::-webkit-input-placeholder {
  color: #747474 !important;
}
.cid-tuYQfVdXSj form input:active::-moz-placeholder,
.cid-tuYQfVdXSj form textarea:active::-moz-placeholder,
.cid-tuYQfVdXSj form input:focus::-moz-placeholder,
.cid-tuYQfVdXSj form textarea:focus::-moz-placeholder {
  color: #747474 !important;
}
.cid-tuYQfVdXSj form input:active:-moz-placeholder,
.cid-tuYQfVdXSj form textarea:active:-moz-placeholder,
.cid-tuYQfVdXSj form input:focus:-moz-placeholder,
.cid-tuYQfVdXSj form textarea:focus:-moz-placeholder {
  color: #747474 !important;
}
.cid-tuYQfVdXSj form input:active:-ms-input-placeholder,
.cid-tuYQfVdXSj form textarea:active:-ms-input-placeholder,
.cid-tuYQfVdXSj form input:focus:-ms-input-placeholder,
.cid-tuYQfVdXSj form textarea:focus:-ms-input-placeholder {
  color: #747474 !important;
}
.cid-tuYQfVdXSj form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tuYQfVdXSj form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tuYQfVdXSj form label {
  width: 100%;
  color: #000000;
  margin-bottom: 5px;
}
.cid-tuYQfVdXSj form .form-check label {
  color: #000000;
}
.cid-tuYQfVdXSj form .form-check-input {
  border-color: #e1e1e1 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tuYQfVdXSj form .form-check-input:focus,
.cid-tuYQfVdXSj form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #a1c4e4 !important;
}
.cid-tuYQfVdXSj form .form-check-input:checked {
  border-color: #000000 !important;
  background-color: #000000 !important;
}
.cid-tuYwc4l4VH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tuYwc4l4VH h3 {
  position: relative;
}
.cid-tuYwc4l4VH h3:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -130px;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tuYwc4l4VH .mbr-iconfont {
  margin-top: 160px;
  display: block;
  font-size: 3rem;
  color: #000000;
}
.cid-tvbmglAqxF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #181817;
}
.cid-tvbmglAqxF .mbr-text {
  color: #f6f6ef;
}
.cid-tuYTfJwlZS {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pexels-alex-azabache-4007310-2000x3000.jpg");
}
.cid-tuYTfJwlZS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuYTfJwlZS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuYT91mdKM {
  padding-top: 195px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tuYT91mdKM h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-tuYT91mdKM h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tuYT91mdKM .signature {
  filter: invert(0.8);
  display: inline-block;
  width: auto;
}
.cid-tuYT91mdKM .mbr-text,
.cid-tuYT91mdKM .img-align {
  text-align: center;
}
.cid-tuYT91mdKM H2 {
  text-align: center;
}
.cid-tuYV6zsDyh {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuYV6zsDyh h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-tuYV6zsDyh h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tuYV6zsDyh .signature {
  filter: invert(0.8);
  display: inline-block;
  width: auto;
}
.cid-tuYV6zsDyh .mbr-text,
.cid-tuYV6zsDyh .img-align {
  text-align: center;
}
.cid-tuYVmWkC2K {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tuYVmWkC2K h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-tuYVmWkC2K h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-tuYVmWkC2K .signature {
  filter: invert(0.8);
  display: inline-block;
  width: auto;
}
.cid-tuYVmWkC2K .mbr-text,
.cid-tuYVmWkC2K .img-align {
  text-align: center;
}
.cid-tuYUho9Cwt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-tuYUho9Cwt .card-icon {
  font-size: 56px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-tuYUho9Cwt .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-tuYUho9Cwt .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-tuYUho9Cwt .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #55b4d4;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-tuYUho9Cwt .card {
  padding: 0!important;
}
.cid-tuYUho9Cwt .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-tuYUho9Cwt .card-wrapper:hover {
  background: #ffffff;
}
.cid-tuYUho9Cwt .card-wrapper:hover .card-icon {
  color: #09142b;
}
.cid-tuYUho9Cwt .card-wrapper:hover .line {
  background: #09142b;
}
.cid-tuYUho9Cwt .card1 {
  background: #09142b;
}
.cid-tuYUho9Cwt .card2 {
  background: #0b1833;
}
.cid-tuYUho9Cwt .card3 {
  background: #0d1c3c;
}
.cid-tuYUho9Cwt .card4 {
  background: #0e2044;
}
.cid-tuYUho9Cwt .card5 {
  background: #10244d;
}
.cid-tuYUho9Cwt .card6 {
  background: #122855;
}
.cid-tuYUho9Cwt .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767px) {
  .cid-tuYUho9Cwt .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-tuYUho9Cwt .card-title,
.cid-tuYUho9Cwt .card-ico,
.cid-tuYUho9Cwt .line-wrap {
  color: #c1c1c1;
}
.cid-tuYUho9Cwt .mbr-text,
.cid-tuYUho9Cwt .card-link {
  color: #c1c1c1;
}
.cid-tuJdt1eLy4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .dropdown-menu {
  padding: 0;
}
.cid-tuJdt1eLy4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuJdt1eLy4 .dropdown-item:hover,
.cid-tuJdt1eLy4 .dropdown-item:focus {
  background: #255085 !important;
  color: white!important;
}
.cid-tuJdt1eLy4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuJdt1eLy4 .nav-link {
  position: relative;
}
.cid-tuJdt1eLy4 .container {
  display: flex;
  margin: auto;
}
.cid-tuJdt1eLy4 .mbr-iconfont {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tuJdt1eLy4 .navbar-caption {
  padding-right: 4rem;
}
.cid-tuJdt1eLy4 .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-tuJdt1eLy4 .dropdown-menu,
.cid-tuJdt1eLy4 .navbar.opened {
  background: #ffffff !important;
}
.cid-tuJdt1eLy4 .nav-item:focus,
.cid-tuJdt1eLy4 .nav-link:focus {
  outline: none;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuJdt1eLy4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuJdt1eLy4 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #0e1b35;
}
.cid-tuJdt1eLy4 .navbar.opened {
  transition: all .3s;
}
.cid-tuJdt1eLy4 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tuJdt1eLy4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tuJdt1eLy4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuJdt1eLy4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuJdt1eLy4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tuJdt1eLy4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tuJdt1eLy4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tuJdt1eLy4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuJdt1eLy4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tuJdt1eLy4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tuJdt1eLy4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tuJdt1eLy4 .navbar.navbar-short {
  background: #0e1b35 !important;
  min-height: 60px;
}
.cid-tuJdt1eLy4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tuJdt1eLy4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tuJdt1eLy4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tuJdt1eLy4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuJdt1eLy4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuJdt1eLy4 .dropdown-item.active,
.cid-tuJdt1eLy4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tuJdt1eLy4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuJdt1eLy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e1b35;
}
.cid-tuJdt1eLy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuJdt1eLy4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuJdt1eLy4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tuJdt1eLy4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuJdt1eLy4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tuJdt1eLy4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tuJdt1eLy4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tuJdt1eLy4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tuJdt1eLy4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tuJdt1eLy4 .navbar {
    height: 77px;
  }
  .cid-tuJdt1eLy4 .navbar.opened {
    height: auto;
  }
  .cid-tuJdt1eLy4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvbmglAqxF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #181817;
}
.cid-tvbmglAqxF .mbr-text {
  color: #f6f6ef;
}
.cid-tuJdt1eLy4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .dropdown-menu {
  padding: 0;
}
.cid-tuJdt1eLy4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuJdt1eLy4 .dropdown-item:hover,
.cid-tuJdt1eLy4 .dropdown-item:focus {
  background: #255085 !important;
  color: white!important;
}
.cid-tuJdt1eLy4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuJdt1eLy4 .nav-link {
  position: relative;
}
.cid-tuJdt1eLy4 .container {
  display: flex;
  margin: auto;
}
.cid-tuJdt1eLy4 .mbr-iconfont {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tuJdt1eLy4 .navbar-caption {
  padding-right: 4rem;
}
.cid-tuJdt1eLy4 .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-tuJdt1eLy4 .dropdown-menu,
.cid-tuJdt1eLy4 .navbar.opened {
  background: #ffffff !important;
}
.cid-tuJdt1eLy4 .nav-item:focus,
.cid-tuJdt1eLy4 .nav-link:focus {
  outline: none;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuJdt1eLy4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuJdt1eLy4 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #0e1b35;
}
.cid-tuJdt1eLy4 .navbar.opened {
  transition: all .3s;
}
.cid-tuJdt1eLy4 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tuJdt1eLy4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tuJdt1eLy4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuJdt1eLy4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuJdt1eLy4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tuJdt1eLy4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tuJdt1eLy4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tuJdt1eLy4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuJdt1eLy4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tuJdt1eLy4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tuJdt1eLy4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tuJdt1eLy4 .navbar.navbar-short {
  background: #0e1b35 !important;
  min-height: 60px;
}
.cid-tuJdt1eLy4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tuJdt1eLy4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tuJdt1eLy4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tuJdt1eLy4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuJdt1eLy4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuJdt1eLy4 .dropdown-item.active,
.cid-tuJdt1eLy4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tuJdt1eLy4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuJdt1eLy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e1b35;
}
.cid-tuJdt1eLy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuJdt1eLy4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuJdt1eLy4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tuJdt1eLy4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuJdt1eLy4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tuJdt1eLy4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tuJdt1eLy4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tuJdt1eLy4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tuJdt1eLy4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tuJdt1eLy4 .navbar {
    height: 77px;
  }
  .cid-tuJdt1eLy4 .navbar.opened {
    height: auto;
  }
  .cid-tuJdt1eLy4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuYYn10Vaj {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pexels-damon-hall-1647177-2000x1333.jpg");
}
.cid-tuYYn10Vaj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuYYn10Vaj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuZ1smfr4i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tuZ1smfr4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuZ1smfr4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuZ1smfr4i .mbr-section-title,
.cid-tuZ1smfr4i .mbr-section-subtitle {
  text-align: center;
}
.cid-tuZ1smfr4i .cost {
  word-break: normal;
}
.cid-tuZ1smfr4i .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #f1f1f5;
}
.cid-tuZ1smfr4i .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tuZ1smfr4i .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuZ1smfr4i .card-wrapper {
    padding: 1rem;
  }
}
.cid-tvbmglAqxF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #181817;
}
.cid-tvbmglAqxF .mbr-text {
  color: #f6f6ef;
}
.cid-tuJdt1eLy4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .dropdown-menu {
  padding: 0;
}
.cid-tuJdt1eLy4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuJdt1eLy4 .dropdown-item:hover,
.cid-tuJdt1eLy4 .dropdown-item:focus {
  background: #255085 !important;
  color: white!important;
}
.cid-tuJdt1eLy4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuJdt1eLy4 .nav-link {
  position: relative;
}
.cid-tuJdt1eLy4 .container {
  display: flex;
  margin: auto;
}
.cid-tuJdt1eLy4 .mbr-iconfont {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tuJdt1eLy4 .navbar-caption {
  padding-right: 4rem;
}
.cid-tuJdt1eLy4 .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-tuJdt1eLy4 .dropdown-menu,
.cid-tuJdt1eLy4 .navbar.opened {
  background: #ffffff !important;
}
.cid-tuJdt1eLy4 .nav-item:focus,
.cid-tuJdt1eLy4 .nav-link:focus {
  outline: none;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tuJdt1eLy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tuJdt1eLy4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuJdt1eLy4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuJdt1eLy4 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #0e1b35;
}
.cid-tuJdt1eLy4 .navbar.opened {
  transition: all .3s;
}
.cid-tuJdt1eLy4 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tuJdt1eLy4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tuJdt1eLy4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuJdt1eLy4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuJdt1eLy4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tuJdt1eLy4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuJdt1eLy4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tuJdt1eLy4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tuJdt1eLy4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuJdt1eLy4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tuJdt1eLy4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuJdt1eLy4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuJdt1eLy4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tuJdt1eLy4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tuJdt1eLy4 .navbar.navbar-short {
  background: #0e1b35 !important;
  min-height: 60px;
}
.cid-tuJdt1eLy4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tuJdt1eLy4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tuJdt1eLy4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tuJdt1eLy4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuJdt1eLy4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuJdt1eLy4 .dropdown-item.active,
.cid-tuJdt1eLy4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tuJdt1eLy4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuJdt1eLy4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuJdt1eLy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e1b35;
}
.cid-tuJdt1eLy4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuJdt1eLy4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuJdt1eLy4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tuJdt1eLy4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuJdt1eLy4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tuJdt1eLy4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tuJdt1eLy4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tuJdt1eLy4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tuJdt1eLy4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tuJdt1eLy4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tuJdt1eLy4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tuJdt1eLy4 .navbar {
    height: 77px;
  }
  .cid-tuJdt1eLy4 .navbar.opened {
    height: auto;
  }
  .cid-tuJdt1eLy4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tuYYZ7IXL2 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pexels-stijn-dijkstra-2674062-2-2000x3000.jpg");
}
.cid-tuYYZ7IXL2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuYYZ7IXL2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuZDsz283y {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tuZDsz283y img {
  width: 110px;
  margin: auto;
}
.cid-tuZDsz283y .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 0.5rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tuZDsz283y .card {
    max-width: 16.6%;
  }
}
.cid-tuZDsz283y .mbr-section-title {
  color: #2b1c50;
}
.cid-tvbmglAqxF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #181817;
}
.cid-tvbmglAqxF .mbr-text {
  color: #f6f6ef;
}
