@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700);





body {
  font-family: Montserrat;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-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: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  border-radius: .25rem;
  font-weight: 400;
  border-width: 2px;
  font-style: normal;
  letter-spacing: normal;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  font-weight: 400;
  letter-spacing: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  font-weight: 400;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-md:after {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: relative;
  opacity: 0;
  font-size: inherit;
  text-align: center;
  transition: all .3s;
  margin-left: -1.5rem;
  padding-left: .5rem;
}
.btn-md:hover {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.btn-md:hover:after {
  transition: all .3s;
  opacity: 1;
  margin-left: 0;
}
.btn-lg {
  font-weight: 400;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff4f7b !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.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;
}
.btn-underline {
  padding: .5rem;
  display: -webkit-inline-flex;
  display: inline-flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  transition: all .3s;
}
.btn-underline .mbr-iconfont {
  color: inherit;
  padding-right: .5rem;
}
.btn-underline:after {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: relative;
  padding-left: .3rem;
}
.btn-underline:hover {
  filter: brightness(85%);
}
.btn-underline:hover:after {
  transition: all .3s;
  padding-left: .5rem;
}
.text-primary {
  color: #ff4f7b !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8003a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: .25rem;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #ff4f7b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  opacity: 0 !important;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #1dc9cb;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #000000;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow {
  background-color: transparent;
  opacity: .7;
  transition: .3s;
  text-align: center;
  width: auto;
}
.mbr-arrow:hover {
  opacity: 1;
}
.mbr-arrow a {
  display: block;
}
.mbr-arrow a i {
  color: #1dc9cb;
  top: auto !important;
  left: auto !important;
}
@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;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.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;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #ff4f7b;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff4f7b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff4f7b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.input-wrap input {
  border-radius: 0rem;
  width: 100%;
  padding: .5rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #efefef;
}
.input-main textarea {
  background-color: #ffffff;
  padding: .5rem 1rem;
  border: 1px solid #efefef;
  border-radius: 0;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-raILkHEGHj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-raILkHEGHj .nav-item,
.cid-raILkHEGHj .nav-link,
.cid-raILkHEGHj .navbar-caption {
  font-weight: normal;
}
.cid-raILkHEGHj .nav-item:focus,
.cid-raILkHEGHj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-raILkHEGHj .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-raILkHEGHj .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-raILkHEGHj .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-raILkHEGHj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-raILkHEGHj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-raILkHEGHj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #00004a;
  background: none;
}
.cid-raILkHEGHj .navbar.opened {
  transition: all .3s;
  background: #00004a !important;
}
.cid-raILkHEGHj .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-raILkHEGHj .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-raILkHEGHj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-raILkHEGHj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-raILkHEGHj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-raILkHEGHj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-raILkHEGHj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-raILkHEGHj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-raILkHEGHj .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-raILkHEGHj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-raILkHEGHj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-raILkHEGHj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-raILkHEGHj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-raILkHEGHj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-raILkHEGHj .navbar.navbar-short {
  background: #00004a !important;
  min-height: 60px;
}
.cid-raILkHEGHj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-raILkHEGHj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-raILkHEGHj .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-raILkHEGHj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-raILkHEGHj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-raILkHEGHj .dropdown-item.active,
.cid-raILkHEGHj .dropdown-item:active {
  background-color: transparent;
}
.cid-raILkHEGHj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-raILkHEGHj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-raILkHEGHj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00004a;
}
.cid-raILkHEGHj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-raILkHEGHj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-raILkHEGHj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-raILkHEGHj .navbar-buttons {
  text-align: center;
}
.cid-raILkHEGHj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-raILkHEGHj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-raILkHEGHj a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-raILkHEGHj .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-raILkHEGHj .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-raILkHEGHj .soc-item {
  margin: .5rem .3rem;
}
.cid-raILkHEGHj .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-raILkHEGHj .navbar {
    height: 77px;
  }
  .cid-raILkHEGHj .navbar.opened {
    height: auto;
  }
  .cid-raILkHEGHj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-raILmvxH3D {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/bg-2000x1226.png");
}
.cid-raILmvxH3D .mbr-section-title,
.cid-raILmvxH3D .mbr-section-subtitle {
  color: #000000;
}
.cid-raILmvxH3D .mbr-section-text {
  color: #232323;
}
.cid-raILmvxH3D .mbr-text,
.cid-raILmvxH3D .typed-text,
.cid-raILmvxH3D .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-raILmvxH3D .btn {
  margin-left: 4px !important;
}
.cid-raILmvxH3D .animated-element {
  color: #ff695c;
}
.cid-raILmvxH3D .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff695c;
}
.cid-raILmvxH3D .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-raILmvxH3D .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-raILmvxH3D .typed-text,
  .cid-raILmvxH3D .mbr-section-subtitle,
  .cid-raILmvxH3D .mbr-section-text,
  .cid-raILmvxH3D .mbr-section-btn {
    text-align: center !important;
  }
}
@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-raILmvxH3D .mbr-section-subtitle,
.cid-raILmvxH3D .typed-text B {
  color: #ffffff;
}
.cid-raILmvxH3D .mbr-section-text,
.cid-raILmvxH3D .mbr-section-btn {
  color: #ffffff;
}
.cid-raK1bpPscz {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-raK1bpPscz .mbr-overlay {
  background: #f4f8fa;
}
.cid-raK1bpPscz .mbr-text,
.cid-raK1bpPscz mbr-section-btn DIV {
  color: #8d97ad;
}
.cid-raK1bpPscz H1 {
  color: #000000;
}
.cid-raJXlGpQ5p {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-raJXlGpQ5p .mbr-figure img {
  border-radius: .25rem;
}
.cid-raJXlGpQ5p .mbr-text {
  color: #8d97ad;
}
.cid-raJXlGpQ5p .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-raJXlGpQ5p .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-raJXlGpQ5p .btn-play {
  box-shadow: 2px 8px 20px rgba(115, 128, 157, 0.3);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #ff4f7b;
  width: 60px;
  height: 60px;
  border: 1px solid #ff4f7b;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-raJXlGpQ5p .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-raJXlGpQ5p .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-raJXlGpQ5p .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-raJXlGpQ5p .wrapper-video {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-raJXlGpQ5p .icon-description {
  margin-left: 1rem;
}
.cid-raJXlGpQ5p a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-raJXlGpQ5p a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-raJXlGpQ5p .mbr-section-title,
  .cid-raJXlGpQ5p .mbr-text {
    text-align: center;
  }
  .cid-raJXlGpQ5p .wrapper-video {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-raJXEjT5X9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-raJXEjT5X9 .main-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-raJXEjT5X9 .mbr-figure img {
  border-radius: .25rem;
}
.cid-raJXEjT5X9 .mbr-text {
  color: #8d97ad;
}
.cid-raJXEjT5X9 .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-raJXEjT5X9 .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-raJXEjT5X9 .btn-play {
  box-shadow: 2px 8px 20px rgba(115, 128, 157, 0.3);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #ff4f7b;
  width: 60px;
  height: 60px;
  border: 1px solid #ff4f7b;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-raJXEjT5X9 .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-raJXEjT5X9 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-raJXEjT5X9 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-raJXEjT5X9 .wrapper-video {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-raJXEjT5X9 .icon-description {
  margin-left: 1rem;
}
.cid-raJXEjT5X9 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-raJXEjT5X9 a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-raJXEjT5X9 .mbr-section-title,
  .cid-raJXEjT5X9 .mbr-text {
    text-align: center;
  }
  .cid-raJXEjT5X9 .wrapper-video {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-rfVxVBl78G {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rfVxVBl78G .mbr-figure img {
  border-radius: .25rem;
}
.cid-rfVxVBl78G .mbr-text {
  color: #8d97ad;
}
.cid-rfVxVBl78G .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rfVxVBl78G .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-rfVxVBl78G .btn-play {
  box-shadow: 2px 8px 20px rgba(115, 128, 157, 0.3);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #ff4f7b;
  width: 60px;
  height: 60px;
  border: 1px solid #ff4f7b;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-rfVxVBl78G .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rfVxVBl78G .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rfVxVBl78G .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rfVxVBl78G .wrapper-video {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rfVxVBl78G .icon-description {
  margin-left: 1rem;
}
.cid-rfVxVBl78G a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rfVxVBl78G a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rfVxVBl78G .mbr-section-title,
  .cid-rfVxVBl78G .mbr-text {
    text-align: center;
  }
  .cid-rfVxVBl78G .wrapper-video {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-raK4S0Gbmc {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-raK4S0Gbmc .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-raK4S0Gbmc .mbr-section-title {
  margin: 0;
}
.cid-raK4S0Gbmc .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-raK4S0Gbmc .card-img span {
  color: #1dc9cb;
}
.cid-raK4S0Gbmc .row-item {
  margin-bottom: 2rem;
}
.cid-raK4S0Gbmc .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-raK4S0Gbmc .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-raK4S0Gbmc .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-raK4S0Gbmc .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-raK4S0Gbmc .mbr-section-subtitle DIV {
  color: #8d97ad;
}
.cid-rcfNYtELyt {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rcfNYtELyt .mbr-section-title {
  margin: 0;
}
.cid-rcfNYtELyt .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-rcfNYtELyt .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-rcfNYtELyt .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-rcfNYtELyt .card1 {
  background: linear-gradient(45deg, #08579f, #1dc9cb);
}
.cid-rcfNYtELyt .card2 {
  background: linear-gradient(45deg, #08579f, #1dc9cb);
}
.cid-rcfNYtELyt .card3 {
  background: linear-gradient(45deg, #1dc9cb, #08579f);
}
.cid-rcfNYtELyt .card4 {
  background: linear-gradient(45deg, #1dc9cb, #08579f);
}
@media (max-width: 991px) {
  .cid-rcfNYtELyt .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-rcfNYtELyt .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-rcfNYtELyt .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rcfNYtELyt .card4 > .mbr-text,
.cid-rcfNYtELyt .card4 > .mbr-section-btn {
  color: #ffffff;
}
.cid-rcfNYtELyt .card3 > .mbr-text,
.cid-rcfNYtELyt .card3 > .mbr-section-btn {
  color: #ffffff;
}
.cid-rcfNYtELyt .card2 > .mbr-text,
.cid-rcfNYtELyt .card2 > .mbr-section-btn {
  color: #ffffff;
}
.cid-rcfNYtELyt .card1 > .mbr-text,
.cid-rcfNYtELyt .card1 > .mbr-section-btn {
  color: #ffffff;
}
.cid-raKbfr0z8O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-raKbfr0z8O .mbr-figure img {
  border-radius: .25rem;
}
.cid-raKbfr0z8O .mbr-text {
  color: #8d97ad;
}
.cid-raKbfr0z8O .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-raKbfr0z8O .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-raKbfr0z8O .btn-play {
  box-shadow: 2px 8px 20px rgba(115, 128, 157, 0.3);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #ff4f7b;
  width: 60px;
  height: 60px;
  border: 1px solid #ff4f7b;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-raKbfr0z8O .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-raKbfr0z8O .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-raKbfr0z8O .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-raKbfr0z8O .wrapper-video {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-raKbfr0z8O .icon-description {
  margin-left: 1rem;
}
.cid-raKbfr0z8O a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-raKbfr0z8O a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-raKbfr0z8O .mbr-section-title,
  .cid-raKbfr0z8O .mbr-text {
    text-align: center;
  }
  .cid-raKbfr0z8O .wrapper-video {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-raKyL8TneJ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rdDzsge5tg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fcfcfc;
}
.cid-rdDzsge5tg .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-rdDzsge5tg .mbr-section-title {
  margin: 0;
}
.cid-rdDzsge5tg .row-item {
  padding-bottom: 2rem;
}
.cid-rdDzsge5tg .mbr-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-rdDzsge5tg .card-img,
  .cid-rdDzsge5tg .mbr-text,
  .cid-rdDzsge5tg .mbr-card-title,
  .cid-rdDzsge5tg .mbr-section-subtitle,
  .cid-rdDzsge5tg .mbr-section-title,
  .cid-rdDzsge5tg .underline,
  .cid-rdDzsge5tg .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rdDzsge5tg .mbr-text,
.cid-rdDzsge5tg .mbr-section-btn {
  color: #232323;
}
.cid-rfVqi8L9vB {
  padding-top: 105px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background9.jpg");
}
.cid-rfVqi8L9vB .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-rfVqi8L9vB .mbr-section-title {
  margin: 0;
}
.cid-rfVqi8L9vB .row-item {
  padding-bottom: 2rem;
}
.cid-rfVqi8L9vB .mbr-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-rfVqi8L9vB .card-img,
  .cid-rfVqi8L9vB .mbr-text,
  .cid-rfVqi8L9vB .mbr-card-title,
  .cid-rfVqi8L9vB .mbr-section-subtitle,
  .cid-rfVqi8L9vB .mbr-section-title,
  .cid-rfVqi8L9vB .underline,
  .cid-rfVqi8L9vB .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rfVqi8L9vB .mbr-text,
.cid-rfVqi8L9vB .mbr-section-btn {
  color: #232323;
}
.cid-raILufyzLJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-raILufyzLJ .mbr-overlay {
  background: #efefef;
}
.cid-raILufyzLJ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-raILufyzLJ .client-name {
  color: #8d97ad;
}
.cid-raILufyzLJ .wrap-img {
  padding-bottom: 1rem;
}
.cid-raILufyzLJ .wrap-img img {
  max-width: 100%;
}
.cid-raILufyzLJ .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-raKxYpVZpq {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-2-1920x12802.jpg");
}
.cid-raKxYpVZpq .container-fluid {
  padding: 0 5rem;
}
.cid-raKxYpVZpq .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-raKxYpVZpq .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
  text-align: center;
}
.cid-raKxYpVZpq .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-raKxYpVZpq .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-raKxYpVZpq .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-raKxYpVZpq .container-fluid {
    padding: 0 1rem;
  }
  .cid-raKxYpVZpq .mbr-figure {
    margin-top: 1rem;
  }
  .cid-raKxYpVZpq .mbr-section-title {
    text-align: center !important;
  }
  .cid-raKxYpVZpq .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-raKxYpVZpq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-raKxYpVZpq .mbr-section-subtitle,
.cid-raKxYpVZpq .mbr-section-btn DIV {
  text-align: center;
  color: #8d97ad;
}
.cid-raKxYpVZpq .mbr-section-subtitle,
.cid-raKxYpVZpq .mbr-section-btn {
  text-align: left;
}
.cid-raOBWuoJ3j {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-raOBWuoJ3j .mbr-iconfont {
  color: #8d97ad;
}
.cid-raOBWuoJ3j .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-raOBWuoJ3j .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-raOBWuoJ3j .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-raOBWuoJ3j .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-raOBWuoJ3j .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-raOBWuoJ3j .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-raOBCKlvWl {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-raOBCKlvWl .mbr-iconfont {
  color: #8d97ad;
}
.cid-raOBCKlvWl .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-raOBCKlvWl .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-raOBCKlvWl .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-raOBCKlvWl .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-raOBCKlvWl .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-raOBCKlvWl .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rmPrBMGepH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-rmPrBMGepH .mbr-iconfont {
  color: #8d97ad;
}
.cid-rmPrBMGepH .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-rmPrBMGepH .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-rmPrBMGepH .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rmPrBMGepH .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rmPrBMGepH .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-rmPrBMGepH .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rmPrIpvIPs {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-rmPrIpvIPs .mbr-iconfont {
  color: #8d97ad;
}
.cid-rmPrIpvIPs .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-rmPrIpvIPs .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-rmPrIpvIPs .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rmPrIpvIPs .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rmPrIpvIPs .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-rmPrIpvIPs .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-raJ44AHMuJ {
  overflow: hidden !important;
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #1dc9cb;
}
.cid-raJ44AHMuJ .mbr-section-subtitle {
  font-weight: 400;
}
.cid-raJ44AHMuJ .mbr-section-title {
  padding-bottom: 2rem;
  text-align: left;
}
.cid-raJ44AHMuJ .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-raJ44AHMuJ .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-raJ44AHMuJ .mbr-form {
  margin-bottom: 3rem;
}
.cid-raJ44AHMuJ .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-raJ44AHMuJ a.btn {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
.cid-raJ44AHMuJ .input-group-btn {
  -webkit-align-self: center;
  align-self: center;
  z-index: 3;
}
.cid-raJ44AHMuJ .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-raJ44AHMuJ .mbr-subscribe .input-group-btn button,
.cid-raJ44AHMuJ .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-raJ44AHMuJ .mbr-subscribe {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-raJ44AHMuJ input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-raJ44AHMuJ .input-group-btn {
    width: 100%;
  }
  .cid-raJ44AHMuJ .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-raJ44AHMuJ .mbr-form {
    margin-bottom: 0;
  }
  .cid-raJ44AHMuJ .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-raJ44AHMuJ .input-group-btn a.btn {
    width: 100%;
  }
  .cid-raJ44AHMuJ .input-group-btn {
    width: calc(92%);
  }
  .cid-raJ44AHMuJ .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-raJ44AHMuJ .input-group {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-raJ44AHMuJ .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-raJ44AHMuJ .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-raJ44AHMuJ .input-group-btn button,
  .cid-raJ44AHMuJ .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-raJ44AHMuJ .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-raJ44AHMuJ .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-raJ44AHMuJ .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-raJ44AHMuJ .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-raJ44AHMuJ .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-raKxLVF86J {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .content {
    text-align: center;
  }
  .cid-raKxLVF86J .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-raKxLVF86J .logo-subtitle {
  color: #8d97ad;
}
.cid-raKxLVF86J .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-raKxLVF86J .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-raKxLVF86J .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-raKxLVF86J .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-raKxLVF86J .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-raKxLVF86J .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-raKxLVF86J .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-raKxLVF86J .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-raKxLVF86J .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-raKxLVF86J .list-item {
  display: flex;
}
.cid-raKxLVF86J .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-raKxLVF86J ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-raKxLVF86J ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-raKxLVF86J ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-raKxLVF86J .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-raKxLVF86J P {
  color: #ffffff;
}
.cid-raKxLVF86J .column-title {
  color: #ffffff;
}
.cid-rdDAqhMjtS {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rdDAqhMjtS .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rdDAqhMjtS .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rdDAqhMjtS .video-block {
    width: 100% !important;
  }
}
.cid-raILkHEGHj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-raILkHEGHj .nav-item,
.cid-raILkHEGHj .nav-link,
.cid-raILkHEGHj .navbar-caption {
  font-weight: normal;
}
.cid-raILkHEGHj .nav-item:focus,
.cid-raILkHEGHj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-raILkHEGHj .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-raILkHEGHj .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-raILkHEGHj .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-raILkHEGHj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-raILkHEGHj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-raILkHEGHj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #00004a;
  background: none;
}
.cid-raILkHEGHj .navbar.opened {
  transition: all .3s;
  background: #00004a !important;
}
.cid-raILkHEGHj .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-raILkHEGHj .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-raILkHEGHj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-raILkHEGHj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-raILkHEGHj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-raILkHEGHj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-raILkHEGHj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-raILkHEGHj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-raILkHEGHj .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-raILkHEGHj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-raILkHEGHj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-raILkHEGHj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-raILkHEGHj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-raILkHEGHj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-raILkHEGHj .navbar.navbar-short {
  background: #00004a !important;
  min-height: 60px;
}
.cid-raILkHEGHj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-raILkHEGHj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-raILkHEGHj .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-raILkHEGHj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-raILkHEGHj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-raILkHEGHj .dropdown-item.active,
.cid-raILkHEGHj .dropdown-item:active {
  background-color: transparent;
}
.cid-raILkHEGHj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-raILkHEGHj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-raILkHEGHj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00004a;
}
.cid-raILkHEGHj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-raILkHEGHj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-raILkHEGHj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-raILkHEGHj .navbar-buttons {
  text-align: center;
}
.cid-raILkHEGHj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-raILkHEGHj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-raILkHEGHj a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-raILkHEGHj .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-raILkHEGHj .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-raILkHEGHj .soc-item {
  margin: .5rem .3rem;
}
.cid-raILkHEGHj .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-raILkHEGHj .navbar {
    height: 77px;
  }
  .cid-raILkHEGHj .navbar.opened {
    height: auto;
  }
  .cid-raILkHEGHj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-raKxLVF86J {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .content {
    text-align: center;
  }
  .cid-raKxLVF86J .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-raKxLVF86J .logo-subtitle {
  color: #8d97ad;
}
.cid-raKxLVF86J .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-raKxLVF86J .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-raKxLVF86J .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-raKxLVF86J .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-raKxLVF86J .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-raKxLVF86J .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-raKxLVF86J .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-raKxLVF86J .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-raKxLVF86J .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-raKxLVF86J .list-item {
  display: flex;
}
.cid-raKxLVF86J .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-raKxLVF86J ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-raKxLVF86J ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-raKxLVF86J ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-raKxLVF86J .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-raKxLVF86J P {
  color: #ffffff;
}
.cid-raKxLVF86J .column-title {
  color: #ffffff;
}
.cid-rdDBLvOSG3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rdDBLvOSG3 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rdDBLvOSG3 .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rdDBLvOSG3 .video-block {
    width: 100% !important;
  }
}
.cid-raILkHEGHj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-raILkHEGHj .nav-item,
.cid-raILkHEGHj .nav-link,
.cid-raILkHEGHj .navbar-caption {
  font-weight: normal;
}
.cid-raILkHEGHj .nav-item:focus,
.cid-raILkHEGHj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-raILkHEGHj .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-raILkHEGHj .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-raILkHEGHj .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-raILkHEGHj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-raILkHEGHj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-raILkHEGHj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #00004a;
  background: none;
}
.cid-raILkHEGHj .navbar.opened {
  transition: all .3s;
  background: #00004a !important;
}
.cid-raILkHEGHj .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-raILkHEGHj .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-raILkHEGHj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-raILkHEGHj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-raILkHEGHj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-raILkHEGHj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-raILkHEGHj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-raILkHEGHj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-raILkHEGHj .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-raILkHEGHj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-raILkHEGHj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-raILkHEGHj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-raILkHEGHj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-raILkHEGHj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-raILkHEGHj .navbar.navbar-short {
  background: #00004a !important;
  min-height: 60px;
}
.cid-raILkHEGHj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-raILkHEGHj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-raILkHEGHj .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-raILkHEGHj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-raILkHEGHj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-raILkHEGHj .dropdown-item.active,
.cid-raILkHEGHj .dropdown-item:active {
  background-color: transparent;
}
.cid-raILkHEGHj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-raILkHEGHj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-raILkHEGHj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00004a;
}
.cid-raILkHEGHj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-raILkHEGHj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-raILkHEGHj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-raILkHEGHj .navbar-buttons {
  text-align: center;
}
.cid-raILkHEGHj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-raILkHEGHj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-raILkHEGHj a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-raILkHEGHj .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-raILkHEGHj .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-raILkHEGHj .soc-item {
  margin: .5rem .3rem;
}
.cid-raILkHEGHj .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-raILkHEGHj .navbar {
    height: 77px;
  }
  .cid-raILkHEGHj .navbar.opened {
    height: auto;
  }
  .cid-raILkHEGHj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-raKxLVF86J {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .content {
    text-align: center;
  }
  .cid-raKxLVF86J .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-raKxLVF86J .logo-subtitle {
  color: #8d97ad;
}
.cid-raKxLVF86J .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-raKxLVF86J .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-raKxLVF86J .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-raKxLVF86J .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-raKxLVF86J .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-raKxLVF86J .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-raKxLVF86J .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-raKxLVF86J .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-raKxLVF86J .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-raKxLVF86J .list-item {
  display: flex;
}
.cid-raKxLVF86J .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-raKxLVF86J ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-raKxLVF86J ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-raKxLVF86J ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-raKxLVF86J .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-raKxLVF86J P {
  color: #ffffff;
}
.cid-raKxLVF86J .column-title {
  color: #ffffff;
}
.cid-rdDBzHdYTq {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rdDBzHdYTq .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rdDBzHdYTq .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rdDBzHdYTq .video-block {
    width: 100% !important;
  }
}
.cid-raILkHEGHj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-raILkHEGHj .nav-item,
.cid-raILkHEGHj .nav-link,
.cid-raILkHEGHj .navbar-caption {
  font-weight: normal;
}
.cid-raILkHEGHj .nav-item:focus,
.cid-raILkHEGHj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-raILkHEGHj .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-raILkHEGHj .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-raILkHEGHj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-raILkHEGHj .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-raILkHEGHj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-raILkHEGHj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-raILkHEGHj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #00004a;
}
.cid-raILkHEGHj .navbar.opened {
  transition: all .3s;
  background: #00004a !important;
}
.cid-raILkHEGHj .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-raILkHEGHj .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-raILkHEGHj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-raILkHEGHj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-raILkHEGHj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-raILkHEGHj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-raILkHEGHj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-raILkHEGHj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-raILkHEGHj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-raILkHEGHj .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-raILkHEGHj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-raILkHEGHj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-raILkHEGHj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-raILkHEGHj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-raILkHEGHj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-raILkHEGHj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-raILkHEGHj .navbar.navbar-short {
  background: #00004a !important;
  min-height: 60px;
}
.cid-raILkHEGHj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-raILkHEGHj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-raILkHEGHj .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-raILkHEGHj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-raILkHEGHj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-raILkHEGHj .dropdown-item.active,
.cid-raILkHEGHj .dropdown-item:active {
  background-color: transparent;
}
.cid-raILkHEGHj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-raILkHEGHj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-raILkHEGHj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00004a;
}
.cid-raILkHEGHj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-raILkHEGHj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-raILkHEGHj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-raILkHEGHj .navbar-buttons {
  text-align: center;
}
.cid-raILkHEGHj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-raILkHEGHj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-raILkHEGHj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-raILkHEGHj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-raILkHEGHj a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-raILkHEGHj .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-raILkHEGHj .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-raILkHEGHj .soc-item {
  margin: .5rem .3rem;
}
.cid-raILkHEGHj .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-raILkHEGHj .navbar {
    height: 77px;
  }
  .cid-raILkHEGHj .navbar.opened {
    height: auto;
  }
  .cid-raILkHEGHj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-raKxLVF86J {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .content {
    text-align: center;
  }
  .cid-raKxLVF86J .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-raKxLVF86J .logo-subtitle {
  color: #8d97ad;
}
.cid-raKxLVF86J .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-raKxLVF86J .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-raKxLVF86J .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-raKxLVF86J .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-raKxLVF86J .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-raKxLVF86J .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-raKxLVF86J .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-raKxLVF86J .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-raKxLVF86J .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-raKxLVF86J .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-raKxLVF86J .list-item {
  display: flex;
}
.cid-raKxLVF86J .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-raKxLVF86J ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-raKxLVF86J ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-raKxLVF86J ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-raKxLVF86J .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-raKxLVF86J P {
  color: #ffffff;
}
.cid-raKxLVF86J .column-title {
  color: #ffffff;
}
.cid-rfVvaXcENA {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rfVvaXcENA .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rfVvaXcENA .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rfVvaXcENA .video-block {
    width: 100% !important;
  }
}
.cid-rfVvaXtip0 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rfVvaXtip0 .nav-item,
.cid-rfVvaXtip0 .nav-link,
.cid-rfVvaXtip0 .navbar-caption {
  font-weight: normal;
}
.cid-rfVvaXtip0 .nav-item:focus,
.cid-rfVvaXtip0 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rfVvaXtip0 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rfVvaXtip0 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rfVvaXtip0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rfVvaXtip0 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rfVvaXtip0 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rfVvaXtip0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rfVvaXtip0 .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-rfVvaXtip0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rfVvaXtip0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rfVvaXtip0 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #00004a;
}
.cid-rfVvaXtip0 .navbar.opened {
  transition: all .3s;
  background: #00004a !important;
}
.cid-rfVvaXtip0 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rfVvaXtip0 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rfVvaXtip0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rfVvaXtip0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rfVvaXtip0 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rfVvaXtip0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rfVvaXtip0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rfVvaXtip0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rfVvaXtip0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rfVvaXtip0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rfVvaXtip0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rfVvaXtip0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rfVvaXtip0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rfVvaXtip0 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rfVvaXtip0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rfVvaXtip0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rfVvaXtip0 .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-rfVvaXtip0 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rfVvaXtip0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rfVvaXtip0 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rfVvaXtip0 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rfVvaXtip0 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rfVvaXtip0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rfVvaXtip0 .navbar.navbar-short {
  background: #00004a !important;
  min-height: 60px;
}
.cid-rfVvaXtip0 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rfVvaXtip0 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rfVvaXtip0 .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-rfVvaXtip0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rfVvaXtip0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rfVvaXtip0 .dropdown-item.active,
.cid-rfVvaXtip0 .dropdown-item:active {
  background-color: transparent;
}
.cid-rfVvaXtip0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rfVvaXtip0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rfVvaXtip0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00004a;
}
.cid-rfVvaXtip0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rfVvaXtip0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rfVvaXtip0 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rfVvaXtip0 .navbar-buttons {
  text-align: center;
}
.cid-rfVvaXtip0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rfVvaXtip0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rfVvaXtip0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rfVvaXtip0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rfVvaXtip0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rfVvaXtip0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rfVvaXtip0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rfVvaXtip0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rfVvaXtip0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rfVvaXtip0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rfVvaXtip0 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rfVvaXtip0 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rfVvaXtip0 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rfVvaXtip0 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rfVvaXtip0 .soc-item {
  margin: .5rem .3rem;
}
.cid-rfVvaXtip0 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rfVvaXtip0 .navbar {
    height: 77px;
  }
  .cid-rfVvaXtip0 .navbar.opened {
    height: auto;
  }
  .cid-rfVvaXtip0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rfVvaXSxK7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-rfVvaXSxK7 .content {
    text-align: center;
  }
  .cid-rfVvaXSxK7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rfVvaXSxK7 .logo-subtitle {
  color: #8d97ad;
}
.cid-rfVvaXSxK7 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rfVvaXSxK7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rfVvaXSxK7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rfVvaXSxK7 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rfVvaXSxK7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rfVvaXSxK7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rfVvaXSxK7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rfVvaXSxK7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rfVvaXSxK7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rfVvaXSxK7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rfVvaXSxK7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rfVvaXSxK7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rfVvaXSxK7 .list-item {
  display: flex;
}
.cid-rfVvaXSxK7 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rfVvaXSxK7 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rfVvaXSxK7 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rfVvaXSxK7 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rfVvaXSxK7 .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-rfVvaXSxK7 P {
  color: #ffffff;
}
.cid-rfVvaXSxK7 .column-title {
  color: #ffffff;
}
.cid-rfVvQEupQQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rfVvQEupQQ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rfVvQEupQQ .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rfVvQEupQQ .video-block {
    width: 100% !important;
  }
}
.cid-rfVvQEMTTd .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rfVvQEMTTd .nav-item,
.cid-rfVvQEMTTd .nav-link,
.cid-rfVvQEMTTd .navbar-caption {
  font-weight: normal;
}
.cid-rfVvQEMTTd .nav-item:focus,
.cid-rfVvQEMTTd .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rfVvQEMTTd .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rfVvQEMTTd .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rfVvQEMTTd .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rfVvQEMTTd .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rfVvQEMTTd .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rfVvQEMTTd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rfVvQEMTTd .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-rfVvQEMTTd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rfVvQEMTTd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rfVvQEMTTd .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #00004a;
}
.cid-rfVvQEMTTd .navbar.opened {
  transition: all .3s;
  background: #00004a !important;
}
.cid-rfVvQEMTTd .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rfVvQEMTTd .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rfVvQEMTTd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rfVvQEMTTd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rfVvQEMTTd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rfVvQEMTTd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rfVvQEMTTd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rfVvQEMTTd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rfVvQEMTTd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rfVvQEMTTd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rfVvQEMTTd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rfVvQEMTTd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rfVvQEMTTd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rfVvQEMTTd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rfVvQEMTTd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rfVvQEMTTd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rfVvQEMTTd .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-rfVvQEMTTd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rfVvQEMTTd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rfVvQEMTTd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rfVvQEMTTd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rfVvQEMTTd .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rfVvQEMTTd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rfVvQEMTTd .navbar.navbar-short {
  background: #00004a !important;
  min-height: 60px;
}
.cid-rfVvQEMTTd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rfVvQEMTTd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rfVvQEMTTd .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-rfVvQEMTTd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rfVvQEMTTd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rfVvQEMTTd .dropdown-item.active,
.cid-rfVvQEMTTd .dropdown-item:active {
  background-color: transparent;
}
.cid-rfVvQEMTTd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rfVvQEMTTd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rfVvQEMTTd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00004a;
}
.cid-rfVvQEMTTd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rfVvQEMTTd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rfVvQEMTTd ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rfVvQEMTTd .navbar-buttons {
  text-align: center;
}
.cid-rfVvQEMTTd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rfVvQEMTTd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rfVvQEMTTd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rfVvQEMTTd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rfVvQEMTTd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rfVvQEMTTd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rfVvQEMTTd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rfVvQEMTTd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rfVvQEMTTd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rfVvQEMTTd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rfVvQEMTTd .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rfVvQEMTTd a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rfVvQEMTTd .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rfVvQEMTTd .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rfVvQEMTTd .soc-item {
  margin: .5rem .3rem;
}
.cid-rfVvQEMTTd .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rfVvQEMTTd .navbar {
    height: 77px;
  }
  .cid-rfVvQEMTTd .navbar.opened {
    height: auto;
  }
  .cid-rfVvQEMTTd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rfVvQF8AYS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-rfVvQF8AYS .content {
    text-align: center;
  }
  .cid-rfVvQF8AYS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rfVvQF8AYS .logo-subtitle {
  color: #8d97ad;
}
.cid-rfVvQF8AYS .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rfVvQF8AYS .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rfVvQF8AYS .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rfVvQF8AYS .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rfVvQF8AYS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rfVvQF8AYS .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rfVvQF8AYS .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rfVvQF8AYS .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rfVvQF8AYS .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rfVvQF8AYS .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rfVvQF8AYS .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rfVvQF8AYS .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rfVvQF8AYS .list-item {
  display: flex;
}
.cid-rfVvQF8AYS .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rfVvQF8AYS ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rfVvQF8AYS ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rfVvQF8AYS ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rfVvQF8AYS .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-rfVvQF8AYS P {
  color: #ffffff;
}
.cid-rfVvQF8AYS .column-title {
  color: #ffffff;
}
.cid-rfVw1IfEAQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rfVw1IfEAQ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rfVw1IfEAQ .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rfVw1IfEAQ .video-block {
    width: 100% !important;
  }
}
.cid-rfVw1IDLhG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rfVw1IDLhG .nav-item,
.cid-rfVw1IDLhG .nav-link,
.cid-rfVw1IDLhG .navbar-caption {
  font-weight: normal;
}
.cid-rfVw1IDLhG .nav-item:focus,
.cid-rfVw1IDLhG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rfVw1IDLhG .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rfVw1IDLhG .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rfVw1IDLhG .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rfVw1IDLhG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rfVw1IDLhG .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rfVw1IDLhG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rfVw1IDLhG .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-rfVw1IDLhG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rfVw1IDLhG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rfVw1IDLhG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #00004a;
}
.cid-rfVw1IDLhG .navbar.opened {
  transition: all .3s;
  background: #00004a !important;
}
.cid-rfVw1IDLhG .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rfVw1IDLhG .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rfVw1IDLhG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rfVw1IDLhG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rfVw1IDLhG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rfVw1IDLhG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rfVw1IDLhG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rfVw1IDLhG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rfVw1IDLhG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rfVw1IDLhG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rfVw1IDLhG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rfVw1IDLhG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rfVw1IDLhG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rfVw1IDLhG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rfVw1IDLhG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rfVw1IDLhG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rfVw1IDLhG .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-rfVw1IDLhG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rfVw1IDLhG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rfVw1IDLhG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rfVw1IDLhG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rfVw1IDLhG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rfVw1IDLhG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rfVw1IDLhG .navbar.navbar-short {
  background: #00004a !important;
  min-height: 60px;
}
.cid-rfVw1IDLhG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rfVw1IDLhG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rfVw1IDLhG .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-rfVw1IDLhG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rfVw1IDLhG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rfVw1IDLhG .dropdown-item.active,
.cid-rfVw1IDLhG .dropdown-item:active {
  background-color: transparent;
}
.cid-rfVw1IDLhG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rfVw1IDLhG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rfVw1IDLhG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00004a;
}
.cid-rfVw1IDLhG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rfVw1IDLhG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rfVw1IDLhG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rfVw1IDLhG .navbar-buttons {
  text-align: center;
}
.cid-rfVw1IDLhG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rfVw1IDLhG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rfVw1IDLhG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rfVw1IDLhG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rfVw1IDLhG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rfVw1IDLhG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rfVw1IDLhG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rfVw1IDLhG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rfVw1IDLhG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rfVw1IDLhG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rfVw1IDLhG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rfVw1IDLhG a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rfVw1IDLhG .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rfVw1IDLhG .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rfVw1IDLhG .soc-item {
  margin: .5rem .3rem;
}
.cid-rfVw1IDLhG .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rfVw1IDLhG .navbar {
    height: 77px;
  }
  .cid-rfVw1IDLhG .navbar.opened {
    height: auto;
  }
  .cid-rfVw1IDLhG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rfVw1J6F5Z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
@media (max-width: 767px) {
  .cid-rfVw1J6F5Z .content {
    text-align: center;
  }
  .cid-rfVw1J6F5Z .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rfVw1J6F5Z .logo-subtitle {
  color: #8d97ad;
}
.cid-rfVw1J6F5Z .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rfVw1J6F5Z .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rfVw1J6F5Z .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rfVw1J6F5Z .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rfVw1J6F5Z .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rfVw1J6F5Z .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rfVw1J6F5Z .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rfVw1J6F5Z .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rfVw1J6F5Z .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rfVw1J6F5Z .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rfVw1J6F5Z .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rfVw1J6F5Z .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rfVw1J6F5Z .list-item {
  display: flex;
}
.cid-rfVw1J6F5Z .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rfVw1J6F5Z ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rfVw1J6F5Z ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rfVw1J6F5Z ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rfVw1J6F5Z .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-rfVw1J6F5Z P {
  color: #ffffff;
}
.cid-rfVw1J6F5Z .column-title {
  color: #ffffff;
}
