@import url(https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Sora:100,200,300,400,500,600,700,800&display=swap);





body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.625rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.78125rem;
}
.display-2 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-7 {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.7rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2375rem;
    font-size: calc( 2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.56rem;
    font-size: calc( 0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.72rem;
    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-7 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-sm {
  padding: 12px 31px;
  border-radius: 0;
}
.btn-md {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 40px;
  border-radius: 0;
}
.bg-primary {
  background-color: #7394ab !important;
}
.bg-success {
  background-color: #272727 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #5b5b5b !important;
}
.bg-danger {
  background-color: #1b1b1b !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #7394ab !important;
  border-color: #7394ab !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #4a718d;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  border-color: #4a718d !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4a718d !important;
  border-color: #4a718d !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #4a718d !important;
  border-color: #4a718d !important;
  color: #ffffff !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #7394ab;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  border-color: #7394ab !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #7394ab !important;
  border-color: #7394ab !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #4a718d;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  border-color: #4a718d !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #4a718d !important;
  border-color: #4a718d !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #272727 !important;
  border-color: #272727 !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #7394ab;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  border-color: #7394ab !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7394ab !important;
  border-color: #7394ab !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #5b5b5b !important;
  border-color: #5b5b5b !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #1b1b1b !important;
  border-color: #1b1b1b !important;
  color: #ffffff !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-white,
.btn-white:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cac8bc;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  border-color: #cac8bc !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #cac8bc !important;
  border-color: #cac8bc !important;
}
.btn-black,
.btn-black:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #282727 !important;
  border-color: #282727 !important;
  color: #ffffff !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn[class*="outline"] {
  border: 0;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
}
.btn[class*="outline"].btn-lg {
  padding: 0 0 5px 0;
}
.btn-primary-outline {
  border-color: #7394ab;
  color: #7394ab;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #4a718d;
  color: #4a718d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #30495b;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #4a718d !important;
  border-color: #4a718d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #d9d9d9;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #272727;
  color: #272727;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #5b5b5b;
  color: #5b5b5b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #353535;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5b5b5b !important;
  border-color: #5b5b5b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #1b1b1b;
  color: #1b1b1b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #000000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1b1b !important;
  border-color: #1b1b1b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #282727;
  color: #282727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #282727 !important;
  border-color: #282727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  background-color: transparent !important;
  color: #d4d4d4;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #7394ab !important;
}
.text-secondary {
  color: #4a718d !important;
}
.text-success {
  color: #272727 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #5b5b5b !important;
}
.text-danger {
  color: #1b1b1b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #456073 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #273b4a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #282828 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #7394ab;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #5b5b5b;
}
.alert-danger {
  background-color: #1b1b1b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #7394ab;
  border-color: #7394ab;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #7394ab;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c3d1db;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dadada;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9b9b9b;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cdcdcd;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 0.875rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 0.875rem;
}
blockquote {
  border-color: #7394ab;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #7394ab;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #7394ab;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #7394ab;
  border-bottom-color: #7394ab;
}
.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: #7394ab !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: #4a718d !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='%237394ab' %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-sjq2slLEeG .nav-item:focus,
.cid-sjq2slLEeG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sjq2slLEeG .nav-item {
    position: relative;
  }
}
.cid-sjq2slLEeG .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sjq2slLEeG .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #102331;
  background: none;
}
.cid-sjq2slLEeG .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #102331 !important;
}
.cid-sjq2slLEeG .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sjq2slLEeG .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sjq2slLEeG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sjq2slLEeG .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.show,
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjq2slLEeG .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sjq2slLEeG .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sjq2slLEeG .navbar.collapsed .right-menu,
.cid-sjq2slLEeG .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG .navbar .navbar-collapse.show,
  .cid-sjq2slLEeG .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sjq2slLEeG .navbar .navbar-collapse.show .brand-container,
  .cid-sjq2slLEeG .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sjq2slLEeG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjq2slLEeG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sjq2slLEeG .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sjq2slLEeG .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sjq2slLEeG .navbar .right-menu,
  .cid-sjq2slLEeG .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjq2slLEeG .navbar.navbar-short {
  min-height: 60px;
}
.cid-sjq2slLEeG .navbar.navbar-short .mbr-overlay {
  background: #102331 !important;
}
.cid-sjq2slLEeG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sjq2slLEeG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sjq2slLEeG .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sjq2slLEeG .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sjq2slLEeG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjq2slLEeG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjq2slLEeG .dropdown-item.active,
.cid-sjq2slLEeG .dropdown-item:active {
  background-color: transparent;
}
.cid-sjq2slLEeG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjq2slLEeG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sjq2slLEeG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #102331;
}
.cid-sjq2slLEeG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sjq2slLEeG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjq2slLEeG ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sjq2slLEeG .navbar-buttons {
  margin-left: auto;
}
.cid-sjq2slLEeG button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sjq2slLEeG button.navbar-toggler:hover {
  outline: none;
}
.cid-sjq2slLEeG button.navbar-toggler:active {
  outline: none;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sjq2slLEeG .navbar-dropdown {
  position: fixed;
}
.cid-sjq2slLEeG a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sjq2slLEeG a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sjq2slLEeG a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sjq2slLEeG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sjq2slLEeG .right-menu,
.cid-sjq2slLEeG .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sjq2slLEeG .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sjq2slLEeG .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sjq2slLEeG .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sjq2slLEeG .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sjq2slLEeG .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sjq2slLEeG .card-wrapper {
  z-index: 3;
}
.cid-sjq2slLEeG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sjq2slLEeG .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sjq2slLEeG .navbar-brand img {
  width: auto !important;
}
.cid-sjq2vEiPqs {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sjq2vEiPqs .animated-element {
  color: #80b2d6;
}
.cid-sjq2vEiPqs .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #80b2d6;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sjq2vEiPqs .typed-text {
  margin-bottom: 30px;
  color: #ffffff;
}
.cid-sjq2vEiPqs .mbr-section-text {
  margin-bottom: 1.125rem;
}
.cid-sjq2vEiPqs .mbr-section-text,
.cid-sjq2vEiPqs .mbr-section-btn {
  color: #ffffff;
}
.cid-sjq2vEiPqs .typed-text .typed-text {
  color: #ef8e81;
}
.cid-sjq2wDwlDm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #282727;
}
.cid-sjq2wDwlDm img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sjq2wDwlDm img:hover {
  transform: scale(1.1);
}
.cid-sjq2wDwlDm .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sjq2wDwlDm h2 {
  padding: 0;
  margin: 0;
}
.cid-sjq2wDwlDm .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sjq2wDwlDm .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sjq2wDwlDm .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-sjq2wDwlDm .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-sjq2wDwlDm .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-sjq2wDwlDm .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sjq2wDwlDm .mbr-iconfont {
  margin: 0!important;
}
.cid-sjq2wDwlDm .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sjq2wDwlDm .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sjq2wDwlDm .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sjq2wDwlDm .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sjq2wDwlDm .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sjq2wDwlDm H2 {
  color: #333333;
}
.cid-sjq2wDwlDm .mbr-text {
  color: #d8d8d8;
}
.cid-sjq2wDwlDm H1 {
  color: #80b2d6;
}
.cid-sjq2wDwlDm H3 {
  color: #ffffff;
}
.cid-sjq2xvxana {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-sjq2xvxana .mbr-overlay {
  background: #282727;
  opacity: 0.6;
}
.cid-sjq2xvxana .text-wrapper {
  padding: 20px;
}
.cid-sjq2xvxana .mbr-text {
  margin-bottom: 20.4px;
}
.cid-sjq2xvxana .mbr-text,
.cid-sjq2xvxana .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sjq2xvxana .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 484px;
}
.cid-sjq2xvxana .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sjq2xvxana .section-subtext {
  color: #ffffff;
}
.cid-sjq2yG1C4X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4a718d;
}
@media (max-width: 992px) {
  .cid-sjq2yG1C4X {
    background-color: #272727;
  }
  .cid-sjq2yG1C4X .accordion-content-wrapper {
    padding-top: 10px;
  }
  .cid-sjq2yG1C4X .mbr-section-subtitle {
    margin-top: 0;
    line-height: 2 !important;
  }
}
.cid-sjq2yG1C4X .mbr-overlay {
  padding: 0;
  background: #272727;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
  bottom: -5%;
}
.cid-sjq2yG1C4X .header-text {
  flex: 1 1 auto;
  letter-spacing: 1.61px;
}
.cid-sjq2yG1C4X h4 {
  letter-spacing: 3.27px !important;
  font-style: normal;
}
.cid-sjq2yG1C4X .panel-collapse {
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: left;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-sjq2yG1C4X .mbr-section-subtitle {
  font-weight: 500;
  color: #7394ab;
  margin: 30px 0;
}
.cid-sjq2yG1C4X .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sjq2yG1C4X .accordion-wrapper {
  padding: 0 25px;
}
.cid-sjq2yG1C4X .accordion-content-wrapper {
  padding: 50px 0;
  max-width: 484px;
  margin: 0 auto;
}
.cid-sjq2yG1C4X .vertical-center {
  align-items: center;
}
.cid-sjq2yG1C4X .panel-group {
  width: 100%;
}
.cid-sjq2yG1C4X .card {
  border-bottom: 1px solid #cbddea !important;
  border-radius: 0px;
}
.cid-sjq2yG1C4X .card:first-of-type {
  border-top: 1px solid #cbddea;
}
.cid-sjq2yG1C4X .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
  background-color: transparent;
  padding: 20px 0;
}
.cid-sjq2yG1C4X .card .card-header a.panel-title {
  transition: all .3s;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sjq2yG1C4X .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sjq2yG1C4X .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sjq2yG1C4X .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-sjq2yG1C4X .card h4,
.cid-sjq2yG1C4X .card h5 {
  margin-bottom: 0;
}
.cid-sjq2yG1C4X .card p {
  margin: 0;
}
.cid-sjq2yG1C4X .card .panel-body {
  background-color: transparent;
  padding: 4px 0 20px 0;
}
.cid-sjq2yG1C4X .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sjq2yG1C4X .sign {
  color: #ffffff;
}
.cid-sjq2yG1C4X .sign:before {
  content: "\e95d";
  font-weight: 700;
}
@media (max-width: 991px) {
  .cid-sjq2yG1C4X .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-sjq2yG1C4X .header-text,
.cid-sjq2yG1C4X .sign P {
  text-align: left;
}
.cid-sjq2yG1C4X .mbr-text {
  color: #ffffff;
}
.cid-sjq2yG1C4X .mbri-arrow-up {
  max-height: 7px;
  overflow: hidden;
  vertical-align: middle;
}
.cid-sjq2yG1C4X .mbri-arrow-up:before {
  content: "\e94c";
  font-weight: 700;
}
.cid-sjq2yG1C4X .text-container {
  max-width: 934px;
}
.cid-sjq2yG1C4X .text-container p {
  padding: 30px 0 20.6px 0;
}
.cid-sjq2yG1C4X .panel-title {
  background: transparent;
}
.cid-sjq2yG1C4X H4 {
  color: #ffffff;
}
.cid-sjq2yG1C4X .header-text,
.cid-sjq2yG1C4X .sign {
  color: #cbddea;
}
.cid-sjq2yG1C4X .mbr-text,
.cid-sjq2yG1C4X .mbr-section-btn {
  color: #f2f2f2;
}
.cid-sjq2yG1C4X H5 {
  color: #ebc6b8;
}
.cid-sjq2yG1C4X .panel-text {
  color: #ffffff;
}
.cid-sjq2z3XSPK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4a718d;
}
.cid-sjq2z3XSPK .mbr-overlay {
  padding: 0;
  background: #282727;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
@media (max-width: 992px) {
  .cid-sjq2z3XSPK .mbr-overlay {
    background-color: #4a718d;
  }
}
.cid-sjq2z3XSPK .mbr-text {
  color: #cbddea;
}
.cid-sjq2z3XSPK .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sjq2z3XSPK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sjq2zEo8qU {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-sjq2zEo8qU .mbr-overlay {
  background: #282727;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .cid-sjq2zEo8qU .row {
    justify-content: center;
  }
}
.cid-sjq2zEo8qU form .mbr-section-btn {
  width: 100%;
}
.cid-sjq2zEo8qU form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sjq2zEo8qU form .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sjq2zEo8qU .form-with-styler {
    padding: 30px;
  }
  .cid-sjq2zEo8qU .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-sjq2zEo8qU input::-webkit-input-placeholder,
.cid-sjq2zEo8qU textarea::-webkit-input-placeholder {
  color: #ffffff !important;
  opacity: 0.5;
}
.cid-sjq2zEo8qU input:-moz-placeholder,
.cid-sjq2zEo8qU textarea:-moz-placeholder {
  color: #ffffff !important;
  opacity: 0.5;
}
.cid-sjq2zEo8qU .form-control {
  border-color: #a5bdce !important;
  color: #cbddea !important;
}
.cid-sjq2zEo8qU input::-webkit-input-placeholder,
.cid-sjq2zEo8qU textarea::-webkit-input-placeholder {
  color: #cbddea !important;
}
.cid-sjq2zEo8qU input:-moz-placeholder,
.cid-sjq2zEo8qU textarea:-moz-placeholder {
  color: #cbddea !important;
}
.cid-sjq2zEo8qU .mbr-section-btn {
  margin-top: 10.8px;
}
.cid-sjq2zEo8qU .mbr-section-title {
  color: #80b2d6;
  text-align: left;
}
.cid-sjq2zEo8qU .mbr-section-subtitle {
  color: #cbddea;
  text-align: left;
}
.cid-sjq2zEo8qU .mbr-section-text,
.cid-sjq2zEo8qU .mbr-section-btn {
  text-align: left;
  color: #282727;
}
.cid-sjq2AwPFmZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sjq2AwPFmZ .content {
    text-align: center;
  }
  .cid-sjq2AwPFmZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sjq2AwPFmZ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sjq2AwPFmZ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sjq2AwPFmZ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sjq2AwPFmZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sjq2AwPFmZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sjq2AwPFmZ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sjq2AwPFmZ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sjq2AwPFmZ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sjq2AwPFmZ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sjq2AwPFmZ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sjq2AwPFmZ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sjq2AwPFmZ P {
  color: #d8d8d8;
  text-align: left;
}
.cid-sjq5oIOb8z.popup-builder {
  background-color: #ffffff;
}
.cid-sjq5oIOb8z.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sjq5oIOb8z.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sjq5oIOb8z .modal-content,
.cid-sjq5oIOb8z .modal-dialog {
  height: auto;
}
.cid-sjq5oIOb8z .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sjq5oIOb8z .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sjq5oIOb8z .form-wrapper .mbr-form .form-group,
  .cid-sjq5oIOb8z .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sjq5oIOb8z .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sjq5oIOb8z .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sjq5oIOb8z .mbr-text {
  text-align: center;
  color: #f2f1eb;
}
.cid-sjq5oIOb8z .pt-0 {
  padding-top: 0 !important;
}
.cid-sjq5oIOb8z .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sjq5oIOb8z .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sjq5oIOb8z .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sjq5oIOb8z .modal-open {
  overflow: hidden;
}
.cid-sjq5oIOb8z .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sjq5oIOb8z .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sjq5oIOb8z .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sjq5oIOb8z .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sjq5oIOb8z .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sjq5oIOb8z .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sjq5oIOb8z .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sjq5oIOb8z .modal-content {
  background: #2d4a60;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sjq5oIOb8z .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sjq5oIOb8z .modal-backdrop.fade {
  opacity: 0;
}
.cid-sjq5oIOb8z .modal-backdrop.show {
  opacity: .5;
}
.cid-sjq5oIOb8z .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sjq5oIOb8z .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sjq5oIOb8z .modal-header .close:hover {
  opacity: 1;
}
.cid-sjq5oIOb8z .modal-header .close:focus {
  outline: none;
}
.cid-sjq5oIOb8z .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-sjq5oIOb8z .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sjq5oIOb8z .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sjq5oIOb8z .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sjq5oIOb8z .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sjq5oIOb8z .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sjq5oIOb8z .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sjq5oIOb8z .modal-sm {
    max-width: 300px;
  }
  .cid-sjq5oIOb8z .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sjq5oIOb8z .modal-lg,
  .cid-sjq5oIOb8z .modal-xl {
    max-width: 800px;
  }
  .cid-sjq5oIOb8z .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sjq5oIOb8z .modal-xl {
    max-width: 1140px;
  }
  .cid-sjq5oIOb8z .container {
    max-width: 1140px;
  }
}
.cid-sjq5oIOb8z .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sjq5oIOb8z .container {
    max-width: 720px;
  }
}
.cid-sjq5oIOb8z .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sjq5oIOb8z .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sjq5oIOb8z .form-group {
  margin-bottom: 1rem;
}
.cid-sjq5oIOb8z .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sjq5oIOb8z .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sjq5oIOb8z .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sjpRAkSG89 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #2d4a60;
}
.cid-sjpRAkSG89 P {
  text-align: left;
  color: #cbddea;
}
.cid-sjpRAkSG89 H3 {
  color: #a5bdce;
}
.cid-sjpT3YoRVO {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #2d4a60;
}
.cid-sjpT3YoRVO P {
  text-align: left;
  color: #cbddea;
}
.cid-sjpT3YoRVO H3 {
  color: #7394ab;
}
.cid-sjq2slLEeG .nav-item:focus,
.cid-sjq2slLEeG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sjq2slLEeG .nav-item {
    position: relative;
  }
}
.cid-sjq2slLEeG .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sjq2slLEeG .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #102331;
  background: none;
}
.cid-sjq2slLEeG .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #102331 !important;
}
.cid-sjq2slLEeG .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sjq2slLEeG .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sjq2slLEeG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sjq2slLEeG .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.show,
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjq2slLEeG .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sjq2slLEeG .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sjq2slLEeG .navbar.collapsed .right-menu,
.cid-sjq2slLEeG .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG .navbar .navbar-collapse.show,
  .cid-sjq2slLEeG .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sjq2slLEeG .navbar .navbar-collapse.show .brand-container,
  .cid-sjq2slLEeG .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sjq2slLEeG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjq2slLEeG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sjq2slLEeG .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sjq2slLEeG .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sjq2slLEeG .navbar .right-menu,
  .cid-sjq2slLEeG .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjq2slLEeG .navbar.navbar-short {
  min-height: 60px;
}
.cid-sjq2slLEeG .navbar.navbar-short .mbr-overlay {
  background: #102331 !important;
}
.cid-sjq2slLEeG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sjq2slLEeG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sjq2slLEeG .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sjq2slLEeG .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sjq2slLEeG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjq2slLEeG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjq2slLEeG .dropdown-item.active,
.cid-sjq2slLEeG .dropdown-item:active {
  background-color: transparent;
}
.cid-sjq2slLEeG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjq2slLEeG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sjq2slLEeG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #102331;
}
.cid-sjq2slLEeG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sjq2slLEeG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjq2slLEeG ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sjq2slLEeG .navbar-buttons {
  margin-left: auto;
}
.cid-sjq2slLEeG button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sjq2slLEeG button.navbar-toggler:hover {
  outline: none;
}
.cid-sjq2slLEeG button.navbar-toggler:active {
  outline: none;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sjq2slLEeG .navbar-dropdown {
  position: fixed;
}
.cid-sjq2slLEeG a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sjq2slLEeG a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sjq2slLEeG a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sjq2slLEeG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sjq2slLEeG .right-menu,
.cid-sjq2slLEeG .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sjq2slLEeG .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sjq2slLEeG .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sjq2slLEeG .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sjq2slLEeG .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sjq2slLEeG .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sjq2slLEeG .card-wrapper {
  z-index: 3;
}
.cid-sjq2slLEeG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sjq2slLEeG .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sjq2slLEeG .navbar-brand img {
  width: auto !important;
}
.cid-sjpXLUTBID {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sjpXLUTBID .animated-element {
  color: #80b2d6;
}
.cid-sjpXLUTBID .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #80b2d6;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sjpXLUTBID .typed-text {
  margin-bottom: 30px;
  color: #ffffff;
}
.cid-sjpXLUTBID .mbr-section-text {
  margin-bottom: 1.125rem;
}
.cid-sjpXLUTBID .mbr-section-text,
.cid-sjpXLUTBID .mbr-section-btn {
  color: #ffffff;
}
.cid-sjpXLUTBID .typed-text .typed-text {
  color: #ef8e81;
}
.cid-sjpXLVkzZb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #282727;
}
.cid-sjpXLVkzZb img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sjpXLVkzZb img:hover {
  transform: scale(1.1);
}
.cid-sjpXLVkzZb .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sjpXLVkzZb h2 {
  padding: 0;
  margin: 0;
}
.cid-sjpXLVkzZb .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sjpXLVkzZb .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sjpXLVkzZb .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-sjpXLVkzZb .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-sjpXLVkzZb .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-sjpXLVkzZb .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sjpXLVkzZb .mbr-iconfont {
  margin: 0!important;
}
.cid-sjpXLVkzZb .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sjpXLVkzZb .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sjpXLVkzZb .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sjpXLVkzZb .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sjpXLVkzZb .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sjpXLVkzZb H2 {
  color: #333333;
}
.cid-sjpXLVkzZb .mbr-text {
  color: #d8d8d8;
}
.cid-sjpXLVkzZb H1 {
  color: #80b2d6;
}
.cid-sjpXLVkzZb H3 {
  color: #ffffff;
}
.cid-sjpXLVxXGM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-sjpXLVxXGM .mbr-overlay {
  background: #282727;
  opacity: 0.6;
}
.cid-sjpXLVxXGM .text-wrapper {
  padding: 20px;
}
.cid-sjpXLVxXGM .mbr-text {
  margin-bottom: 20.4px;
}
.cid-sjpXLVxXGM .mbr-text,
.cid-sjpXLVxXGM .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sjpXLVxXGM .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 484px;
}
.cid-sjpXLVxXGM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sjpXLVxXGM .section-subtext {
  color: #ffffff;
}
.cid-sjpXLVNPXh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4a718d;
}
@media (max-width: 992px) {
  .cid-sjpXLVNPXh {
    background-color: #272727;
  }
  .cid-sjpXLVNPXh .accordion-content-wrapper {
    padding-top: 10px;
  }
  .cid-sjpXLVNPXh .mbr-section-subtitle {
    margin-top: 0;
    line-height: 2 !important;
  }
}
.cid-sjpXLVNPXh .mbr-overlay {
  padding: 0;
  background: #272727;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
  bottom: -5%;
}
.cid-sjpXLVNPXh .header-text {
  flex: 1 1 auto;
  letter-spacing: 1.61px;
}
.cid-sjpXLVNPXh h4 {
  letter-spacing: 3.27px !important;
  font-style: normal;
}
.cid-sjpXLVNPXh .panel-collapse {
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: left;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-sjpXLVNPXh .mbr-section-subtitle {
  font-weight: 500;
  color: #7394ab;
  margin: 30px 0;
}
.cid-sjpXLVNPXh .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sjpXLVNPXh .accordion-wrapper {
  padding: 0 25px;
}
.cid-sjpXLVNPXh .accordion-content-wrapper {
  padding: 50px 0;
  max-width: 484px;
  margin: 0 auto;
}
.cid-sjpXLVNPXh .vertical-center {
  align-items: center;
}
.cid-sjpXLVNPXh .panel-group {
  width: 100%;
}
.cid-sjpXLVNPXh .card {
  border-bottom: 1px solid #cbddea !important;
  border-radius: 0px;
}
.cid-sjpXLVNPXh .card:first-of-type {
  border-top: 1px solid #cbddea;
}
.cid-sjpXLVNPXh .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
  background-color: transparent;
  padding: 20px 0;
}
.cid-sjpXLVNPXh .card .card-header a.panel-title {
  transition: all .3s;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sjpXLVNPXh .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sjpXLVNPXh .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sjpXLVNPXh .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-sjpXLVNPXh .card h4,
.cid-sjpXLVNPXh .card h5 {
  margin-bottom: 0;
}
.cid-sjpXLVNPXh .card p {
  margin: 0;
}
.cid-sjpXLVNPXh .card .panel-body {
  background-color: transparent;
  padding: 4px 0 20px 0;
}
.cid-sjpXLVNPXh .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sjpXLVNPXh .sign {
  color: #ffffff;
}
.cid-sjpXLVNPXh .sign:before {
  content: "\e95d";
  font-weight: 700;
}
@media (max-width: 991px) {
  .cid-sjpXLVNPXh .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-sjpXLVNPXh .header-text,
.cid-sjpXLVNPXh .sign P {
  text-align: left;
}
.cid-sjpXLVNPXh .mbr-text {
  color: #ffffff;
}
.cid-sjpXLVNPXh .mbri-arrow-up {
  max-height: 7px;
  overflow: hidden;
  vertical-align: middle;
}
.cid-sjpXLVNPXh .mbri-arrow-up:before {
  content: "\e94c";
  font-weight: 700;
}
.cid-sjpXLVNPXh .text-container {
  max-width: 934px;
}
.cid-sjpXLVNPXh .text-container p {
  padding: 30px 0 20.6px 0;
}
.cid-sjpXLVNPXh .panel-title {
  background: transparent;
}
.cid-sjpXLVNPXh H4 {
  color: #ffffff;
}
.cid-sjpXLVNPXh .header-text,
.cid-sjpXLVNPXh .sign {
  color: #cbddea;
}
.cid-sjpXLVNPXh .mbr-text,
.cid-sjpXLVNPXh .mbr-section-btn {
  color: #f2f2f2;
}
.cid-sjpXLVNPXh H5 {
  color: #ebc6b8;
}
.cid-sjpXLVNPXh .panel-text {
  color: #ffffff;
}
.cid-sjpXLW6rYY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4a718d;
}
.cid-sjpXLW6rYY .mbr-overlay {
  padding: 0;
  background: #282727;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
@media (max-width: 992px) {
  .cid-sjpXLW6rYY .mbr-overlay {
    background-color: #4a718d;
  }
}
.cid-sjpXLW6rYY .mbr-text {
  color: #cbddea;
}
.cid-sjpXLW6rYY .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sjpXLW6rYY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sjpXLWladv {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-sjpXLWladv .mbr-overlay {
  background: #282727;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .cid-sjpXLWladv .row {
    justify-content: center;
  }
}
.cid-sjpXLWladv form .mbr-section-btn {
  width: 100%;
}
.cid-sjpXLWladv form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sjpXLWladv form .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sjpXLWladv .form-with-styler {
    padding: 30px;
  }
  .cid-sjpXLWladv .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-sjpXLWladv input::-webkit-input-placeholder,
.cid-sjpXLWladv textarea::-webkit-input-placeholder {
  color: #ffffff !important;
  opacity: 0.5;
}
.cid-sjpXLWladv input:-moz-placeholder,
.cid-sjpXLWladv textarea:-moz-placeholder {
  color: #ffffff !important;
  opacity: 0.5;
}
.cid-sjpXLWladv .form-control {
  border-color: #a5bdce !important;
  color: #cbddea !important;
}
.cid-sjpXLWladv input::-webkit-input-placeholder,
.cid-sjpXLWladv textarea::-webkit-input-placeholder {
  color: #cbddea !important;
}
.cid-sjpXLWladv input:-moz-placeholder,
.cid-sjpXLWladv textarea:-moz-placeholder {
  color: #cbddea !important;
}
.cid-sjpXLWladv .mbr-section-btn {
  margin-top: 10.8px;
}
.cid-sjpXLWladv .mbr-section-title {
  color: #80b2d6;
  text-align: left;
}
.cid-sjpXLWladv .mbr-section-subtitle {
  color: #cbddea;
  text-align: left;
}
.cid-sjpXLWladv .mbr-section-text,
.cid-sjpXLWladv .mbr-section-btn {
  text-align: left;
  color: #282727;
}
.cid-sjpXLWTqL8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sjpXLWTqL8 .content {
    text-align: center;
  }
  .cid-sjpXLWTqL8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sjpXLWTqL8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sjpXLWTqL8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sjpXLWTqL8 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sjpXLWTqL8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sjpXLWTqL8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sjpXLWTqL8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sjpXLWTqL8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sjpXLWTqL8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sjpXLWTqL8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sjpXLWTqL8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sjpXLWTqL8 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sjpXLWTqL8 P {
  color: #d8d8d8;
  text-align: left;
}
.cid-sjq2slLEeG .nav-item:focus,
.cid-sjq2slLEeG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sjq2slLEeG .nav-item {
    position: relative;
  }
}
.cid-sjq2slLEeG .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sjq2slLEeG .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #102331;
  background: none;
}
.cid-sjq2slLEeG .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #102331 !important;
}
.cid-sjq2slLEeG .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sjq2slLEeG .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sjq2slLEeG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sjq2slLEeG .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.show,
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sjq2slLEeG .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sjq2slLEeG .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sjq2slLEeG .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sjq2slLEeG .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sjq2slLEeG .navbar.collapsed .right-menu,
.cid-sjq2slLEeG .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG .navbar .navbar-collapse.show,
  .cid-sjq2slLEeG .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sjq2slLEeG .navbar .navbar-collapse.show .brand-container,
  .cid-sjq2slLEeG .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sjq2slLEeG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sjq2slLEeG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sjq2slLEeG .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sjq2slLEeG .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sjq2slLEeG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sjq2slLEeG .navbar .right-menu,
  .cid-sjq2slLEeG .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sjq2slLEeG .navbar.navbar-short {
  min-height: 60px;
}
.cid-sjq2slLEeG .navbar.navbar-short .mbr-overlay {
  background: #102331 !important;
}
.cid-sjq2slLEeG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sjq2slLEeG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sjq2slLEeG .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sjq2slLEeG .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sjq2slLEeG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjq2slLEeG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjq2slLEeG .dropdown-item.active,
.cid-sjq2slLEeG .dropdown-item:active {
  background-color: transparent;
}
.cid-sjq2slLEeG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjq2slLEeG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sjq2slLEeG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #102331;
}
.cid-sjq2slLEeG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sjq2slLEeG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjq2slLEeG ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sjq2slLEeG .navbar-buttons {
  margin-left: auto;
}
.cid-sjq2slLEeG button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sjq2slLEeG button.navbar-toggler:hover {
  outline: none;
}
.cid-sjq2slLEeG button.navbar-toggler:active {
  outline: none;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sjq2slLEeG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sjq2slLEeG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sjq2slLEeG .navbar-dropdown {
  position: fixed;
}
.cid-sjq2slLEeG a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sjq2slLEeG a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sjq2slLEeG a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sjq2slLEeG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sjq2slLEeG .right-menu,
.cid-sjq2slLEeG .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sjq2slLEeG .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sjq2slLEeG .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sjq2slLEeG .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sjq2slLEeG .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sjq2slLEeG .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sjq2slLEeG .card-wrapper {
  z-index: 3;
}
.cid-sjq2slLEeG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sjq2slLEeG .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sjq2slLEeG .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sjq2slLEeG .navbar-brand img {
  width: auto !important;
}
