body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.6rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #4284df !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #df1212 !important;
}
.bg-warning {
  background-color: #01c21c !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #4284df !important;
  border-color: #4284df !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-primary:before {
  background-color: #1f5eb6 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1f5eb6 !important;
  border-color: #1f5eb6 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #df1212 !important;
  border-color: #df1212 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1212 !important;
  border-color: #df1212 !important;
}
.btn-info:before {
  background-color: #980c0c !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #980c0c !important;
  border-color: #980c0c !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #01c21c !important;
  border-color: #01c21c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #01c21c !important;
  border-color: #01c21c !important;
}
.btn-warning:before {
  background-color: #017611 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #017611 !important;
  border-color: #017611 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #1b53a0;
  color: #1b53a0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #4284df;
}
.btn-primary-outline:before {
  background-color: #4284df;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #810a0a;
  color: #810a0a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #df1212;
}
.btn-info-outline:before {
  background-color: #df1212;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #df1212 !important;
  border-color: #df1212 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #005d0d;
  color: #005d0d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #01c21c;
}
.btn-warning-outline:before {
  background-color: #01c21c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #01c21c !important;
  border-color: #01c21c !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4284df;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #4284df !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #df1212 !important;
}
.text-warning {
  color: #01c21c !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1b53a0 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #810a0a !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #005d0d !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #df1212;
}
.alert-warning {
  background-color: #01c21c;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4284df;
  border-color: #4284df;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4284df;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f0f6fd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fac3c3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #44fe5e;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
blockquote {
  border-color: #4284df;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #4284df;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #4284df;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 5.76rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4284df;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4284df;
  border-bottom-color: #4284df;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4284df !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f27d7a !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%234284df' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-ut3XrckZqp {
  background-image: url("../../../assets/images/ausweis-scannen-1004x665.png");
}
.cid-ut3XrckZqp .media-content .btn-bgr {
  z-index: 0;
}
.cid-ut3XrckZqp .mbr-overlay {
  background: linear-gradient(90deg, #0c57bf, #0c57bf);
}
@media (min-width: 992px) {
  .cid-ut3XrckZqp .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-ut3XrckZqp {
    text-align: center !important;
  }
  .cid-ut3XrckZqp .mbr-text {
    text-align: center;
  }
}
.cid-ut3XrckZqp .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ut3XrckZqp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut3XrckZqp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut3XrckZqp H1 {
  color: #efefef;
}
.cid-qKcYCRGxc9 .navbar {
  padding: .5rem 0;
  background: #021f47;
  transition: none;
  min-height: 70px;
}
.cid-qKcYCRGxc9 .menu-logo {
  display: flex;
  position: relative;
  align-items: center;
  margin-right: auto;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.5rem;
  align-items: center;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qKcYCRGxc9 .navbar-dropdown.bg-color.transparent.opened {
  background: #021f47;
}
.cid-qKcYCRGxc9 a {
  font-style: normal;
}
.cid-qKcYCRGxc9 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qKcYCRGxc9 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-qKcYCRGxc9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-qKcYCRGxc9 .dropdown-item:hover:before {
  transform: scale(1, 1);
  width: 16px;
}
.cid-qKcYCRGxc9 .content-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-qKcYCRGxc9 .navbar-nav {
  position: relative;
  min-height: 50px;
  margin: 0!important;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qKcYCRGxc9 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qKcYCRGxc9 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-qKcYCRGxc9 .navbar-nav .nav-item a {
    margin: 0!important;
  }
}
.cid-qKcYCRGxc9 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qKcYCRGxc9 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKcYCRGxc9 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKcYCRGxc9 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qKcYCRGxc9 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKcYCRGxc9 .nav-dropdown .link {
  font-weight: 400;
}
.cid-qKcYCRGxc9 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qKcYCRGxc9 .menu-content-top .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKcYCRGxc9 .menu-content-top .row p {
  padding: 0.5rem 0;
}
.cid-qKcYCRGxc9 .menu-content-top .row a {
  padding: 0.5rem 0;
}
.cid-qKcYCRGxc9 .content-right-side {
  text-align: center;
}
.cid-qKcYCRGxc9 .menu-content-top {
  display: none;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.cid-qKcYCRGxc9 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qKcYCRGxc9 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .cid-qKcYCRGxc9 .navbar .menu-content-top {
    display: block;
  }
  .cid-qKcYCRGxc9 .menu-content-top .row {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-qKcYCRGxc9 .content-right-side {
    align-items: center;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    text-align: right;
    flex-wrap: wrap;
    display: flex;
  }
  .cid-qKcYCRGxc9 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qKcYCRGxc9 .menu-bottom {
    display: flex;
  }
  .cid-qKcYCRGxc9 .navbar {
    display: block;
    padding: 0;
  }
  .cid-qKcYCRGxc9 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qKcYCRGxc9 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-qKcYCRGxc9 .navbar-toggler {
    display: none;
  }
}
.cid-qKcYCRGxc9 .navbar-short .menu-content-top {
  height: 0;
  border: none;
}
.cid-qKcYCRGxc9 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qKcYCRGxc9 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu {
  background: #021f47;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qKcYCRGxc9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qKcYCRGxc9 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qKcYCRGxc9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-qKcYCRGxc9 button.navbar-toggler:focus {
  outline: none;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKcYCRGxc9 .collapsed.navbar {
  flex-direction: column;
}
.cid-qKcYCRGxc9 .collapsed .menu-bottom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-qKcYCRGxc9 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-qKcYCRGxc9 .collapsed .btn {
  display: flex;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qKcYCRGxc9 .collapsed button.navbar-toggler {
  display: block;
  align-self: center;
}
.cid-qKcYCRGxc9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qKcYCRGxc9 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qKcYCRGxc9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity,padding,height;
}
.cid-qKcYCRGxc9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qKcYCRGxc9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qKcYCRGxc9 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qKcYCRGxc9 .collapsed .dropdown-item:before {
  display: none;
}
@media (max-width: 991px) {
  .cid-qKcYCRGxc9 .dropdown-item {
    padding: 0.235em 0!important;
    margin: 0!important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-qKcYCRGxc9 .dropdown-item:before {
    display: none;
  }
  .cid-qKcYCRGxc9 .menu-logo {
    margin-right: 0;
  }
  .cid-qKcYCRGxc9 img {
    height: 3.8rem !important;
  }
  .cid-qKcYCRGxc9 .btn {
    display: flex;
  }
  .cid-qKcYCRGxc9 button.navbar-toggler {
    display: block;
  }
  .cid-qKcYCRGxc9 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qKcYCRGxc9 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qKcYCRGxc9 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing,
  .cid-qKcYCRGxc9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-nav,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qKcYCRGxc9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qKcYCRGxc9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qKcYCRGxc9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qKcYCRGxc9 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
.cid-qKcYCRGxc9 .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qKcYCRGxc9 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qKcYCRGxc9 .nav-link:focus {
  outline: none;
}
.cid-qKcYCRGxc9 .navbar-toggler {
  position: relative;
}
.cid-qKcYCRGxc9 .dropdown-item.active,
.cid-qKcYCRGxc9 .dropdown-item:active {
  background-color: #021f47;
  color: auto;
}
.cid-qKcYCRGxc9 .nav-link:hover,
.cid-qKcYCRGxc9 .dropdown-item:hover {
  color: #4284df;
}
.cid-u3YtYKIUu9 {
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-u3YtYKIUu9 .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #0c57bf;
  width: 100%;
  float: right;
  position: relative;
}
.cid-u3YtYKIUu9 .text-content .btn-bgr {
  z-index: 0;
}
.cid-u3YtYKIUu9 .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-u3YtYKIUu9 .container-full-width {
  position: relative;
}
.cid-u3YtYKIUu9 .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-u3YtYKIUu9 .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-u3YtYKIUu9 .layer path {
  fill: #0c57bf;
}
@media (min-width: 576px) {
  .cid-u3YtYKIUu9 .text-content {
    width: 540px;
  }
  .cid-u3YtYKIUu9 .column-content {
    width: 100%;
  }
  .cid-u3YtYKIUu9 .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-u3YtYKIUu9 .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-u3YtYKIUu9 .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-u3YtYKIUu9 .column-content {
    width: 50%;
  }
  .cid-u3YtYKIUu9 .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-u3YtYKIUu9 .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3YtYKIUu9 .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-u3YtYKIUu9 .column-content {
    height: 33rem;
  }
}
.cid-u3YtYKIUu9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3YtYKIUu9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3YtYKIUu9 H1 {
  color: #ffffff;
}
.cid-u3YtYKIUu9 .mbr-text,
.cid-u3YtYKIUu9 .mbr-section-btn {
  color: #ffffff;
}
.cid-u3YBIDtiWO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #0c57bf;
  position: relative;
}
.cid-u3YBIDtiWO .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-u3YBIDtiWO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3YBIDtiWO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u3YBIDtiWO .col-text {
    order: 2;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-u3YBIDtiWO .col-text {
    margin-top: 32px;
  }
}
@media (max-width: 991px) {
  .cid-u3YBIDtiWO .col-img {
    order: 1;
  }
}
.cid-u3YBIDtiWO .text-wrapper {
  width: 100%;
}
.cid-u3YBIDtiWO .mbr-section-title {
  color: #fafafa;
}
.cid-u3YBIDtiWO .mbr-text {
  color: #000000;
  width: 56%;
  margin-right: auto;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .cid-u3YBIDtiWO .mbr-text {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-u3YBIDtiWO .mbr-text {
    margin-top: 1.5rem;
  }
}
.cid-u3YBIDtiWO .mbr-section-btn {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3YBIDtiWO .mbr-section-btn {
    margin-top: 1.5rem;
  }
}
.cid-u3YBIDtiWO .image-wrapper {
  border-radius: 32px;
  overflow: hidden;
}
.cid-u3YBIDtiWO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u3YBIDtiWO .mbr-text,
.cid-u3YBIDtiWO .mbr-section-btn {
  color: #fafafa;
}
.cid-qKcYH9dnxt {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #0c57bf;
}
.cid-qKcYH9dnxt .media-content .btn-bgr {
  z-index: 0;
}
.cid-qKcYH9dnxt .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-qKcYH9dnxt .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-qKcYH9dnxt {
    text-align: center !important;
  }
  .cid-qKcYH9dnxt .mbr-text {
    text-align: center;
  }
}
.cid-qKcYH9dnxt .media-container-row {
  justify-content: flex-start;
  justify-content: flex-end;
}
.cid-qQMZgss7az {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #0c57bf;
}
.cid-qQMZgss7az .media-content .btn-bgr {
  z-index: 0;
}
.cid-qQMZgss7az .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-qQMZgss7az h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qQMZgss7az p {
  color: #464646;
}
.cid-qQMZgss7az h2 {
  color: #000000;
}
.cid-qQMZgss7az .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-qQMZgss7az .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-qQMZgss7az .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-qQMZgss7az .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-qQMZgss7az .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-qQMZgss7az .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-qQMZgss7az .mbr-text {
    text-align: center;
  }
}
.cid-qQMZgss7az .mbr-section-title,
.cid-qQMZgss7az .mbr-section-btn {
  color: #ffffff;
}
.cid-qQMZgss7az .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qKy2iDJj2x {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #0c57bf;
}
.cid-qKy2iDJj2x .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-qKy2iDJj2x .media-row {
  display: flex;
  justify-content: center;
}
.cid-qKy2iDJj2x .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-qKy2iDJj2x .team-item .item-image img {
  width: 100%;
}
.cid-qKy2iDJj2x .team-item .item-name p {
  margin-bottom: 0;
}
.cid-qKy2iDJj2x .team-item .item-role p {
  margin-bottom: 0;
}
.cid-qKy2iDJj2x .team-item .item-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-qKy2iDJj2x .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-qKy2iDJj2x .item-role P {
  text-align: left;
  color: #ffffff;
}
.cid-qKy2iDJj2x .item-name {
  text-align: left;
  color: #ffffff;
}
.cid-qKy2iDJj2x H2 {
  color: #ffffff;
}
.cid-u3NhDkwn2A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0c57bf;
}
.cid-u3NhDkwn2A .media-content .btn-bgr {
  z-index: 0;
}
.cid-u3NhDkwn2A .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-u3NhDkwn2A .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-u3NhDkwn2A {
    text-align: center !important;
  }
  .cid-u3NhDkwn2A .mbr-text {
    text-align: center;
  }
}
.cid-u3NhDkwn2A .media-container-row {
  justify-content: flex-start;
  justify-content: flex-end;
}
.cid-qKcZ8a8rv2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #0c57bf;
}
.cid-qKcZ8a8rv2 .card-item {
  display: flex;
  justify-content: space-between;
}
.cid-qKcZ8a8rv2 .card-item .card-icon {
  margin-right: 1rem;
}
.cid-qKcZ8a8rv2 .card-item .card-icon span {
  font-size: 3rem;
  padding: 0.5rem;
  color: #021f47;
  -webkit-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  -moz-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
}
.cid-qKcZ8a8rv2 .card-item:hover .card-icon span {
  -webkit-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}
@media (min-width: 576px) {
  .cid-qKcZ8a8rv2 .card-item .card-box {
    margin-left: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-qKcZ8a8rv2 .card-item {
    padding: 0 0 1rem!important;
  }
  .cid-qKcZ8a8rv2 .card-item .card-icon span {
    font-size: 3rem;
  }
}
.cid-qKcZ8a8rv2 .card-days {
  background-color: #021f47;
  border-radius: 5px;
}
.cid-qKcZ8a8rv2 .card-days .schedule {
  display: block;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}
.cid-qKcZ8a8rv2 .card-days .schedule li {
  border-top: 1px solid;
  padding-top: 10px;
}
.cid-qKcZ8a8rv2 .card-days .schedule li:first-child {
  border-top: none;
}
.cid-qKcZ8a8rv2 .card-days .schedule li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qKcZ8a8rv2 .card-days .schedule li:after {
  display: block;
  content: '';
  clear: both;
}
.cid-qKcZ8a8rv2 .media-cards {
  display: flex;
  flex-wrap: wrap;
}
.cid-qKcZ8a8rv2 .mbr-overlay {
  background: linear-gradient(90deg, #0c57bf, #21b968);
}
.cid-qKcZ8a8rv2 .media-container-row img {
  -webkit-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  -moz-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
}
.cid-qKcZ8a8rv2 .media-container-row:hover img {
  -webkit-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}
@media (min-width: 992px) {
  .cid-qKcZ8a8rv2 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qKcZ8a8rv2 .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-qKcZ8a8rv2 UL {
  text-align: left;
}
.cid-qKcZ8a8rv2 H1 {
  color: #ffffff;
}
.cid-qKcZ8a8rv2 .card-title {
  color: #ffffff;
}
.cid-qKcZ8a8rv2 .mbr-text {
  color: #ffffff;
}
.cid-qKcZ8a8rv2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sAnx14OZqQ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #0c57bf;
}
.cid-sAnx14OZqQ .mbr-text {
  color: #ffffff;
}
.cid-sAnx14OZqQ h4 {
  font-weight: 500;
}
.cid-sAnx14OZqQ h4,
.cid-sAnx14OZqQ h5 {
  text-align: center;
}
.cid-sAnx14OZqQ p {
  text-align: center;
}
.cid-sAnx14OZqQ .card-box {
  text-align: center;
}
.cid-sAnx14OZqQ .card-img {
  font-size: 3rem;
}
.cid-sAnx14OZqQ .mbr-iconfont {
  color: #4284df;
}
.cid-sAnx14OZqQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sAnx14OZqQ H2 {
  color: #ffffff;
}
.cid-sAnx14OZqQ .card-title,
.cid-sAnx14OZqQ .card-img {
  color: #ffffff;
}
.cid-qKycQaXct3 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #021f47;
}
@media (max-width: 767px) {
  .cid-qKycQaXct3 .content {
    text-align: center;
  }
  .cid-qKycQaXct3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qKycQaXct3 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qKycQaXct3 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qKycQaXct3 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qKycQaXct3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qKycQaXct3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qKycQaXct3 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qKycQaXct3 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qKycQaXct3 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qKycQaXct3 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qKycQaXct3 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qKycQaXct3 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qKycQaXct3 P {
  text-align: left;
}
.cid-qKycQaXct3 H5 {
  text-align: left;
}
.cid-qKcYCRGxc9 .navbar {
  padding: .5rem 0;
  background: #021f47;
  transition: none;
  min-height: 77px;
}
.cid-qKcYCRGxc9 .menu-logo {
  display: flex;
  position: relative;
  align-items: center;
  margin-right: auto;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qKcYCRGxc9 .navbar-dropdown.bg-color.transparent.opened {
  background: #021f47;
}
.cid-qKcYCRGxc9 a {
  font-style: normal;
}
.cid-qKcYCRGxc9 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qKcYCRGxc9 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-qKcYCRGxc9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-qKcYCRGxc9 .dropdown-item:hover:before {
  transform: scale(1, 1);
  width: 16px;
}
.cid-qKcYCRGxc9 .content-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-qKcYCRGxc9 .navbar-nav {
  position: relative;
  min-height: 50px;
  margin: 0!important;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qKcYCRGxc9 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qKcYCRGxc9 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-qKcYCRGxc9 .navbar-nav .nav-item a {
    margin: 0!important;
  }
}
.cid-qKcYCRGxc9 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qKcYCRGxc9 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKcYCRGxc9 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKcYCRGxc9 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qKcYCRGxc9 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKcYCRGxc9 .nav-dropdown .link {
  font-weight: 400;
}
.cid-qKcYCRGxc9 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qKcYCRGxc9 .menu-content-top .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKcYCRGxc9 .menu-content-top .row p {
  padding: 0.5rem 0;
}
.cid-qKcYCRGxc9 .menu-content-top .row a {
  padding: 0.5rem 0;
}
.cid-qKcYCRGxc9 .content-right-side {
  text-align: center;
}
.cid-qKcYCRGxc9 .menu-content-top {
  display: none;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.cid-qKcYCRGxc9 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qKcYCRGxc9 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .cid-qKcYCRGxc9 .navbar .menu-content-top {
    display: block;
  }
  .cid-qKcYCRGxc9 .menu-content-top .row {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-qKcYCRGxc9 .content-right-side {
    align-items: center;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    text-align: right;
    flex-wrap: wrap;
    display: flex;
  }
  .cid-qKcYCRGxc9 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qKcYCRGxc9 .menu-bottom {
    display: flex;
  }
  .cid-qKcYCRGxc9 .navbar {
    display: block;
    padding: 0;
  }
  .cid-qKcYCRGxc9 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qKcYCRGxc9 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-qKcYCRGxc9 .navbar-toggler {
    display: none;
  }
}
.cid-qKcYCRGxc9 .navbar-short .menu-content-top {
  height: 0;
  border: none;
}
.cid-qKcYCRGxc9 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qKcYCRGxc9 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu {
  background: #021f47;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qKcYCRGxc9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qKcYCRGxc9 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qKcYCRGxc9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-qKcYCRGxc9 button.navbar-toggler:focus {
  outline: none;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKcYCRGxc9 .collapsed.navbar {
  flex-direction: column;
}
.cid-qKcYCRGxc9 .collapsed .menu-bottom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-qKcYCRGxc9 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-qKcYCRGxc9 .collapsed .btn {
  display: flex;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qKcYCRGxc9 .collapsed button.navbar-toggler {
  display: block;
  align-self: center;
}
.cid-qKcYCRGxc9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qKcYCRGxc9 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qKcYCRGxc9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity,padding,height;
}
.cid-qKcYCRGxc9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qKcYCRGxc9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qKcYCRGxc9 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qKcYCRGxc9 .collapsed .dropdown-item:before {
  display: none;
}
@media (max-width: 991px) {
  .cid-qKcYCRGxc9 .dropdown-item {
    padding: 0.235em 0!important;
    margin: 0!important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-qKcYCRGxc9 .dropdown-item:before {
    display: none;
  }
  .cid-qKcYCRGxc9 .menu-logo {
    margin-right: 0;
  }
  .cid-qKcYCRGxc9 img {
    height: 3.8rem !important;
  }
  .cid-qKcYCRGxc9 .btn {
    display: flex;
  }
  .cid-qKcYCRGxc9 button.navbar-toggler {
    display: block;
  }
  .cid-qKcYCRGxc9 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qKcYCRGxc9 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qKcYCRGxc9 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing,
  .cid-qKcYCRGxc9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-nav,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qKcYCRGxc9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qKcYCRGxc9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qKcYCRGxc9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qKcYCRGxc9 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
.cid-qKcYCRGxc9 .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qKcYCRGxc9 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qKcYCRGxc9 .nav-link:focus {
  outline: none;
}
.cid-qKcYCRGxc9 .navbar-toggler {
  position: relative;
}
.cid-qKcYCRGxc9 .dropdown-item.active,
.cid-qKcYCRGxc9 .dropdown-item:active {
  background-color: #021f47;
  color: auto;
}
.cid-qKcYCRGxc9 .nav-link:hover,
.cid-qKcYCRGxc9 .dropdown-item:hover {
  color: #4284df;
}
.cid-qKhgghJo5V .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-qKhgghJo5V .mbr-text,
.cid-qKhgghJo5V .mbr-section-btn {
  color: #04367c;
}
.cid-qKhgghJo5V H1 {
  color: #2c1616;
}
.cid-qKhgq6cKzL {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6c9cdf;
}
.cid-qKhgq6cKzL .media-content .btn-bgr {
  z-index: 0;
}
.cid-qKhgq6cKzL .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-qKhgq6cKzL h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qKhgq6cKzL p {
  color: #464646;
}
.cid-qKhgq6cKzL h2 {
  color: #000000;
}
.cid-qKhgq6cKzL .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-qKhgq6cKzL .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-qKhgq6cKzL .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-qKhgq6cKzL .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-qKhgq6cKzL .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-qKhgq6cKzL .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-qKhgq6cKzL .mbr-text {
    text-align: center;
  }
}
.cid-qKAmQeX0dO {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qKAmQeX0dO .mbr-section-subtitle {
  color: #2c1616;
  text-align: left;
}
.cid-qKAmQeX0dO .media-row {
  display: flex;
  justify-content: center;
}
.cid-qKAmQeX0dO .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-qKAmQeX0dO .team-item .item-image img {
  width: 100%;
}
.cid-qKAmQeX0dO .team-item .item-name p {
  margin-bottom: 0;
}
.cid-qKAmQeX0dO .team-item .item-role p {
  margin-bottom: 0;
}
.cid-qKAmQeX0dO .team-item .item-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-qKAmQeX0dO .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-qKAmQeX0dO .item-role P {
  text-align: left;
}
.cid-qKAmQeX0dO .item-name {
  text-align: left;
}
.cid-qKAy1UylC9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qKAy1UylC9 .mbr-section-subtitle {
  color: #2c1616;
}
.cid-qKAy1UylC9 .media-row {
  display: flex;
  justify-content: center;
}
.cid-qKAy1UylC9 .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-qKAy1UylC9 .team-item .item-image img {
  width: 100%;
}
.cid-qKAy1UylC9 .team-item .item-name p {
  margin-bottom: 0;
}
.cid-qKAy1UylC9 .team-item .item-role p {
  margin-bottom: 0;
}
.cid-qKAy1UylC9 .team-item .item-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-qKAy1UylC9 .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-qKAy1UylC9 .team-item .item-caption {
  background: #efefef;
}
.cid-qKAy1UylC9 .item-role P {
  text-align: left;
}
.cid-qKAy1UylC9 .item-name {
  text-align: left;
}
.cid-qPAVmnxDHQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qPAVmnxDHQ .mbr-section-subtitle {
  color: #2c1616;
  text-align: left;
}
.cid-qPAVmnxDHQ .media-row {
  display: flex;
  justify-content: center;
}
.cid-qPAVmnxDHQ .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-qPAVmnxDHQ .team-item .item-image img {
  width: 100%;
}
.cid-qPAVmnxDHQ .team-item .item-name p {
  margin-bottom: 0;
}
.cid-qPAVmnxDHQ .team-item .item-role p {
  margin-bottom: 0;
}
.cid-qPAVmnxDHQ .team-item .item-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-qPAVmnxDHQ .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-qPAVmnxDHQ .item-role P {
  text-align: left;
}
.cid-qPAVmnxDHQ .item-name {
  text-align: left;
}
.cid-qPAYCpplVI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qPAYCpplVI .mbr-section-subtitle {
  color: #2c1616;
  text-align: left;
}
.cid-qPAYCpplVI .media-row {
  display: flex;
  justify-content: center;
}
.cid-qPAYCpplVI .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-qPAYCpplVI .team-item .item-image img {
  width: 100%;
}
.cid-qPAYCpplVI .team-item .item-name p {
  margin-bottom: 0;
}
.cid-qPAYCpplVI .team-item .item-role p {
  margin-bottom: 0;
}
.cid-qPAYCpplVI .team-item .item-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-qPAYCpplVI .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-qPAYCpplVI .item-role P {
  text-align: left;
}
.cid-qPAYCpplVI .item-name {
  text-align: left;
}
.cid-qKhgAx379O {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qKhgAx379O .media-content .btn-bgr {
  z-index: 0;
}
.cid-qKhgAx379O .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-qKhgAx379O h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qKhgAx379O p {
  color: #464646;
}
.cid-qKhgAx379O h2 {
  color: #000000;
}
.cid-qKhgAx379O .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-qKhgAx379O .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-qKhgAx379O .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-qKhgAx379O .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-qKhgAx379O .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-qKhgAx379O .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-qKhgAx379O .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-qKhgAx379O .mbr-text {
    text-align: center;
  }
}
.cid-qKhgB3sgJb {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #6c9cdf;
}
.cid-qKhgB3sgJb .media-content .btn-bgr {
  z-index: 0;
}
.cid-qKhgB3sgJb .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-qKhgB3sgJb h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qKhgB3sgJb p {
  color: #464646;
}
.cid-qKhgB3sgJb h2 {
  color: #000000;
}
.cid-qKhgB3sgJb .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-qKhgB3sgJb .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-qKhgB3sgJb .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-qKhgB3sgJb .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-qKhgB3sgJb .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-qKhgB3sgJb .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-qKhgB3sgJb .mbr-text {
    text-align: center;
  }
}
.cid-qM6fp2G1JB {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #021f47;
}
@media (max-width: 767px) {
  .cid-qM6fp2G1JB .content {
    text-align: center;
  }
  .cid-qM6fp2G1JB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qM6fp2G1JB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qM6fp2G1JB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qM6fp2G1JB .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qM6fp2G1JB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qM6fp2G1JB .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qM6fp2G1JB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qM6fp2G1JB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qM6fp2G1JB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qM6fp2G1JB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qM6fp2G1JB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qM6fp2G1JB .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qM6fp2G1JB P {
  text-align: left;
}
.cid-qM6fp2G1JB H5 {
  text-align: left;
}
.cid-qKcYCRGxc9 .navbar {
  padding: .5rem 0;
  background: #021f47;
  transition: none;
  min-height: 77px;
}
.cid-qKcYCRGxc9 .menu-logo {
  display: flex;
  position: relative;
  align-items: center;
  margin-right: auto;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qKcYCRGxc9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qKcYCRGxc9 .navbar-dropdown.bg-color.transparent.opened {
  background: #021f47;
}
.cid-qKcYCRGxc9 a {
  font-style: normal;
}
.cid-qKcYCRGxc9 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qKcYCRGxc9 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-qKcYCRGxc9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-qKcYCRGxc9 .dropdown-item:hover:before {
  transform: scale(1, 1);
  width: 16px;
}
.cid-qKcYCRGxc9 .content-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-qKcYCRGxc9 .navbar-nav {
  position: relative;
  min-height: 50px;
  margin: 0!important;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qKcYCRGxc9 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qKcYCRGxc9 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-qKcYCRGxc9 .navbar-nav .nav-item a {
    margin: 0!important;
  }
}
.cid-qKcYCRGxc9 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qKcYCRGxc9 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKcYCRGxc9 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKcYCRGxc9 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qKcYCRGxc9 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKcYCRGxc9 .nav-dropdown .link {
  font-weight: 400;
}
.cid-qKcYCRGxc9 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qKcYCRGxc9 .menu-content-top .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKcYCRGxc9 .menu-content-top .row p {
  padding: 0.5rem 0;
}
.cid-qKcYCRGxc9 .menu-content-top .row a {
  padding: 0.5rem 0;
}
.cid-qKcYCRGxc9 .content-right-side {
  text-align: center;
}
.cid-qKcYCRGxc9 .menu-content-top {
  display: none;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.cid-qKcYCRGxc9 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qKcYCRGxc9 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .cid-qKcYCRGxc9 .navbar .menu-content-top {
    display: block;
  }
  .cid-qKcYCRGxc9 .menu-content-top .row {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-qKcYCRGxc9 .content-right-side {
    align-items: center;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    text-align: right;
    flex-wrap: wrap;
    display: flex;
  }
  .cid-qKcYCRGxc9 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qKcYCRGxc9 .menu-bottom {
    display: flex;
  }
  .cid-qKcYCRGxc9 .navbar {
    display: block;
    padding: 0;
  }
  .cid-qKcYCRGxc9 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qKcYCRGxc9 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-qKcYCRGxc9 .navbar-toggler {
    display: none;
  }
}
.cid-qKcYCRGxc9 .navbar-short .menu-content-top {
  height: 0;
  border: none;
}
.cid-qKcYCRGxc9 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qKcYCRGxc9 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu {
  background: #021f47;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qKcYCRGxc9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qKcYCRGxc9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qKcYCRGxc9 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qKcYCRGxc9 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qKcYCRGxc9 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qKcYCRGxc9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-qKcYCRGxc9 button.navbar-toggler:focus {
  outline: none;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qKcYCRGxc9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qKcYCRGxc9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKcYCRGxc9 .collapsed.navbar {
  flex-direction: column;
}
.cid-qKcYCRGxc9 .collapsed .menu-bottom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-qKcYCRGxc9 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-qKcYCRGxc9 .collapsed .btn {
  display: flex;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qKcYCRGxc9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qKcYCRGxc9 .collapsed button.navbar-toggler {
  display: block;
  align-self: center;
}
.cid-qKcYCRGxc9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qKcYCRGxc9 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qKcYCRGxc9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity,padding,height;
}
.cid-qKcYCRGxc9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qKcYCRGxc9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qKcYCRGxc9 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qKcYCRGxc9 .collapsed .dropdown-item:before {
  display: none;
}
@media (max-width: 991px) {
  .cid-qKcYCRGxc9 .dropdown-item {
    padding: 0.235em 0!important;
    margin: 0!important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-qKcYCRGxc9 .dropdown-item:before {
    display: none;
  }
  .cid-qKcYCRGxc9 .menu-logo {
    margin-right: 0;
  }
  .cid-qKcYCRGxc9 img {
    height: 3.8rem !important;
  }
  .cid-qKcYCRGxc9 .btn {
    display: flex;
  }
  .cid-qKcYCRGxc9 button.navbar-toggler {
    display: block;
  }
  .cid-qKcYCRGxc9 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qKcYCRGxc9 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qKcYCRGxc9 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing,
  .cid-qKcYCRGxc9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-nav,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qKcYCRGxc9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qKcYCRGxc9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qKcYCRGxc9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qKcYCRGxc9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qKcYCRGxc9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qKcYCRGxc9 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
.cid-qKcYCRGxc9 .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qKcYCRGxc9 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qKcYCRGxc9 .nav-link:focus {
  outline: none;
}
.cid-qKcYCRGxc9 .navbar-toggler {
  position: relative;
}
.cid-qKcYCRGxc9 .dropdown-item.active,
.cid-qKcYCRGxc9 .dropdown-item:active {
  background-color: #021f47;
  color: auto;
}
.cid-qKcYCRGxc9 .nav-link:hover,
.cid-qKcYCRGxc9 .dropdown-item:hover {
  color: #4284df;
}
.cid-qLHf7YoHjj {
  padding-top: 120px;
  background-image: url("../../../assets/images/mitmachen-1920x1305.png");
}
.cid-qLHf7YoHjj .container {
  margin-bottom: 15%;
}
.cid-qLHf7YoHjj .content-container .btn-bgr {
  z-index: 0;
}
.cid-qLHf7YoHjj .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-qLHf7YoHjj .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-qLHf7YoHjj .box-item:first-child {
  background-color: #4284df;
  margin-top: -200px;
}
.cid-qLHf7YoHjj .box-item:nth-child(2) {
  background-color: #04367c;
}
.cid-qLHf7YoHjj .box-item:last-child {
  background-color: #0c57bf;
}
.cid-qLHf7YoHjj .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qLHf7YoHjj .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qLHf7YoHjj .box-list li:last-child {
  border-bottom: none;
}
.cid-qLHf7YoHjj .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qLHf7YoHjj .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-qLHf7YoHjj .media-container-row {
    justify-content: flex-start;
  }
  .cid-qLHf7YoHjj .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-qLHf7YoHjj .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-qLHf7YoHjj .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-qLHf7YoHjj .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-qMcasSWHpN {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-qMcasSWHpN .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #6441a5);
}
.cid-qMcasSWHpN h2,
.cid-qMcasSWHpN h3,
.cid-qMcasSWHpN h4,
.cid-qMcasSWHpN p {
  color: #ffffff;
}
.cid-qMcasSWHpN .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qMcasSWHpN .input {
  margin-bottom: 15px;
}
.cid-qMcasSWHpN .text-block {
  border-bottom: 1px solid #767676;
}
.cid-qMcasSWHpN .media-container-row {
  align-items: center;
}
.cid-qMcasSWHpN .mbr-text {
  color: #767676;
}
.cid-qMcasSWHpN a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qMcasSWHpN .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qMcasSWHpN .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qMcasSWHpN .block .form-control {
  padding: 1.07em 1.07em;
}
@media (max-width: 767px) {
  .cid-qMcasSWHpN h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qMcasSWHpN .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qMcasSWHpN .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-qMcasSWHpN .google-map {
    padding-bottom: 2rem;
  }
}
.cid-qKhf7qcTS4 {
  padding-top: 120px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-qKhf7qcTS4 .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #1ec5bf);
}
.cid-qKhf7qcTS4 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qKhf7qcTS4 p {
  color: #464646;
}
.cid-qKhf7qcTS4 h2 {
  color: #000000;
}
.cid-qKhf7qcTS4 .counter-container {
  color: #767676;
}
.cid-qKhf7qcTS4 .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}
.cid-qKhf7qcTS4 .media-content {
  padding-right: 1.5rem;
  padding-left: 3rem;
}
@media (max-width: 991px) {
  .cid-qKhf7qcTS4 .media-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-qKhf7qcTS4 .mbr-figure:last-of-type {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qKhf7qcTS4 .list-counter {
  float: left;
  font-size: 2rem;
  margin-right: 1rem;
}
.cid-qKhf7qcTS4 .half-list:nth-of-type(even) {
  display: inline-block;
  width: 48%;
  margin-left: 4%;
}
.cid-qKhf7qcTS4 .half-list {
  text-align: left;
  display: inline-block;
  width: 48%;
  vertical-align: top;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qKhf7qcTS4 .half-list {
    width: 100%;
    margin: 0;
  }
  .cid-qKhf7qcTS4 .half-list:nth-of-type(even) {
    width: 100%;
    margin: 0;
  }
}
.cid-qKhf7qcTS4 .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
  -ms-flex-item-align: initial;
  -ms-grid-row-align: initial;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (min-width: 992px) {
  .cid-qKhf7qcTS4 .mbr-figure {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-qKhf7qcTS4 .mbr-figure {
    padding-top: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-qKhf7qcTS4 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-qKhf7qcTS4 .mbr-text {
    text-align: center;
  }
}
.cid-qKhfkY9G9q {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #6c9cdf);
}
.cid-qKhfkY9G9q .media-content .btn-bgr {
  z-index: 0;
}
.cid-qKhfkY9G9q .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-qKhfkY9G9q h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qKhfkY9G9q p {
  color: #464646;
}
.cid-qKhfkY9G9q h2 {
  color: #000000;
}
.cid-qKhfkY9G9q .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-qKhfkY9G9q .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-qKhfkY9G9q .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-qKhfkY9G9q .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-qKhfkY9G9q .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-qKhfkY9G9q .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-qKhfkY9G9q .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-qKhfkY9G9q .mbr-text {
    text-align: center;
  }
}
.cid-qLIcMzkUQU {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qLIcMzkUQU .media-content .btn-bgr {
  z-index: 0;
}
.cid-qLIcMzkUQU .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-qLIcMzkUQU h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qLIcMzkUQU p {
  color: #464646;
}
.cid-qLIcMzkUQU h2 {
  color: #000000;
}
.cid-qLIcMzkUQU .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-qLIcMzkUQU .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-qLIcMzkUQU .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-qLIcMzkUQU .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-qLIcMzkUQU .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-qLIcMzkUQU .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-qLIcMzkUQU .mbr-text {
    text-align: center;
  }
}
.cid-qM6ft9HpRy {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #021f47;
}
@media (max-width: 767px) {
  .cid-qM6ft9HpRy .content {
    text-align: center;
  }
  .cid-qM6ft9HpRy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qM6ft9HpRy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qM6ft9HpRy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qM6ft9HpRy .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qM6ft9HpRy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qM6ft9HpRy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qM6ft9HpRy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qM6ft9HpRy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qM6ft9HpRy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qM6ft9HpRy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qM6ft9HpRy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qM6ft9HpRy .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qM6ft9HpRy P {
  text-align: left;
}
.cid-qM6ft9HpRy H5 {
  text-align: left;
}
.cid-qKhgJXrFHl .navbar {
  padding: .5rem 0;
  background: #021f47;
  transition: none;
  min-height: 77px;
}
.cid-qKhgJXrFHl .menu-logo {
  display: flex;
  position: relative;
  align-items: center;
  margin-right: auto;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qKhgJXrFHl .navbar-dropdown.bg-color.transparent.opened {
  background: #021f47;
}
.cid-qKhgJXrFHl a {
  font-style: normal;
}
.cid-qKhgJXrFHl .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qKhgJXrFHl .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-qKhgJXrFHl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-qKhgJXrFHl .dropdown-item:hover:before {
  transform: scale(1, 1);
  width: 16px;
}
.cid-qKhgJXrFHl .content-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-qKhgJXrFHl .navbar-nav {
  position: relative;
  min-height: 50px;
  margin: 0!important;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qKhgJXrFHl .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qKhgJXrFHl .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-qKhgJXrFHl .navbar-nav .nav-item a {
    margin: 0!important;
  }
}
.cid-qKhgJXrFHl .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qKhgJXrFHl .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKhgJXrFHl .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKhgJXrFHl .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qKhgJXrFHl .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKhgJXrFHl .nav-dropdown .link {
  font-weight: 400;
}
.cid-qKhgJXrFHl .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qKhgJXrFHl .menu-content-top .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKhgJXrFHl .menu-content-top .row p {
  padding: 0.5rem 0;
}
.cid-qKhgJXrFHl .menu-content-top .row a {
  padding: 0.5rem 0;
}
.cid-qKhgJXrFHl .content-right-side {
  text-align: center;
}
.cid-qKhgJXrFHl .menu-content-top {
  display: none;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.cid-qKhgJXrFHl .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qKhgJXrFHl .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .cid-qKhgJXrFHl .navbar .menu-content-top {
    display: block;
  }
  .cid-qKhgJXrFHl .menu-content-top .row {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-qKhgJXrFHl .content-right-side {
    align-items: center;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    text-align: right;
    flex-wrap: wrap;
    display: flex;
  }
  .cid-qKhgJXrFHl .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qKhgJXrFHl .menu-bottom {
    display: flex;
  }
  .cid-qKhgJXrFHl .navbar {
    display: block;
    padding: 0;
  }
  .cid-qKhgJXrFHl .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qKhgJXrFHl .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-qKhgJXrFHl .navbar-toggler {
    display: none;
  }
}
.cid-qKhgJXrFHl .navbar-short .menu-content-top {
  height: 0;
  border: none;
}
.cid-qKhgJXrFHl .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qKhgJXrFHl .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu {
  background: #021f47;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qKhgJXrFHl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qKhgJXrFHl .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qKhgJXrFHl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qKhgJXrFHl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qKhgJXrFHl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qKhgJXrFHl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qKhgJXrFHl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-qKhgJXrFHl button.navbar-toggler:focus {
  outline: none;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qKhgJXrFHl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKhgJXrFHl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qKhgJXrFHl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qKhgJXrFHl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKhgJXrFHl .collapsed.navbar {
  flex-direction: column;
}
.cid-qKhgJXrFHl .collapsed .menu-bottom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-qKhgJXrFHl .collapsed .menu-logo {
  margin-right: 0;
}
.cid-qKhgJXrFHl .collapsed .btn {
  display: flex;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qKhgJXrFHl .collapsed button.navbar-toggler {
  display: block;
  align-self: center;
}
.cid-qKhgJXrFHl .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qKhgJXrFHl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qKhgJXrFHl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity,padding,height;
}
.cid-qKhgJXrFHl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qKhgJXrFHl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qKhgJXrFHl .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qKhgJXrFHl .collapsed .dropdown-item:before {
  display: none;
}
@media (max-width: 991px) {
  .cid-qKhgJXrFHl .dropdown-item {
    padding: 0.235em 0!important;
    margin: 0!important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-qKhgJXrFHl .dropdown-item:before {
    display: none;
  }
  .cid-qKhgJXrFHl .menu-logo {
    margin-right: 0;
  }
  .cid-qKhgJXrFHl img {
    height: 3.8rem !important;
  }
  .cid-qKhgJXrFHl .btn {
    display: flex;
  }
  .cid-qKhgJXrFHl button.navbar-toggler {
    display: block;
  }
  .cid-qKhgJXrFHl .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qKhgJXrFHl .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qKhgJXrFHl .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing,
  .cid-qKhgJXrFHl .navbar-collapse.show {
    display: block !important;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing .navbar-nav,
  .cid-qKhgJXrFHl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qKhgJXrFHl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing .navbar-buttons,
  .cid-qKhgJXrFHl .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qKhgJXrFHl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qKhgJXrFHl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qKhgJXrFHl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qKhgJXrFHl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qKhgJXrFHl .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
.cid-qKhgJXrFHl .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qKhgJXrFHl .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qKhgJXrFHl .nav-link:focus {
  outline: none;
}
.cid-qKhgJXrFHl .navbar-toggler {
  position: relative;
}
.cid-qKhgJXrFHl .dropdown-item.active,
.cid-qKhgJXrFHl .dropdown-item:active {
  background-color: #021f47;
  color: auto;
}
.cid-qKhgJXrFHl .nav-link:hover,
.cid-qKhgJXrFHl .dropdown-item:hover {
  color: #4284df;
}
.cid-qKhhfNFo41 {
  background-image: url("../../../assets/images/team-spirit-2447163-1920-1920x1555.jpg");
}
.cid-qKhhfNFo41 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-qKhhfNFo41 .mbr-overlay {
  background: linear-gradient(#0c57bf -10%, #0c57bf 75%);
}
.cid-qLZuFPBog8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qLZuFPBog8 .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #1ec5bf);
}
.cid-qLZuFPBog8 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-qLZuFPBog8 p {
  color: #464646;
}
.cid-qLZuFPBog8 h2 {
  color: #000000;
}
.cid-qLZuFPBog8 .counter-container {
  color: #767676;
}
.cid-qLZuFPBog8 .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}
.cid-qLZuFPBog8 .media-content {
  padding-right: 1.5rem;
  padding-left: 3rem;
}
@media (max-width: 991px) {
  .cid-qLZuFPBog8 .media-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-qLZuFPBog8 .mbr-figure:last-of-type {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qLZuFPBog8 .list-counter {
  float: left;
  font-size: 2rem;
  margin-right: 1rem;
}
.cid-qLZuFPBog8 .half-list:nth-of-type(even) {
  display: inline-block;
  width: 48%;
  margin-left: 4%;
}
.cid-qLZuFPBog8 .half-list {
  text-align: left;
  display: inline-block;
  width: 48%;
  vertical-align: top;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qLZuFPBog8 .half-list {
    width: 100%;
    margin: 0;
  }
  .cid-qLZuFPBog8 .half-list:nth-of-type(even) {
    width: 100%;
    margin: 0;
  }
}
.cid-qLZuFPBog8 .mbr-figure {
  padding-right: 1rem;
  -ms-flex-item-align: initial;
  -ms-grid-row-align: initial;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (min-width: 992px) {
  .cid-qLZuFPBog8 .mbr-figure {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-qLZuFPBog8 .mbr-figure {
    padding-top: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-qLZuFPBog8 .mbr-text {
    text-align: center;
  }
}
.cid-qKhhojPXco {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #04367c, #4284df);
}
.cid-qKhhojPXco .plan-body .btn-bgr {
  z-index: 0;
}
.cid-qKhhojPXco .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-qKhhojPXco .price-term {
  display: block;
  line-height: 1;
  margin-top: 0.45rem;
}
.cid-qKhhojPXco .plan-title {
  background-color: #4284df;
}
.cid-qKhhojPXco .plan-header {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.cid-qKhhojPXco .plan-body {
  border-radius: 0 0 8px 8px;
}
.cid-qKhhojPXco .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-qKhhojPXco .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-qKhhojPXco .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-qKhhojPXco .plan:nth-child(3) .plan-title {
  background-color: #eb4e6f;
}
.cid-qKhhojPXco .plan-header,
.cid-qKhhojPXco .plan-body {
  background-color: #fff;
  border-bottom: solid 2px #ededed;
}
.cid-qKhhojPXco .price-figure {
  font-weight: 600;
  color: #232323;
}
.cid-qKhhojPXco .price-value {
  font-weight: 700;
  vertical-align: top;
  line-height: 1;
  margin-right: 0.25rem;
}
@media (max-width: 550px) {
  .cid-qKhhojPXco .price-figure {
    font-size: 4.25rem;
  }
}
.cid-qKymbDgI7X {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #04367c, #0c57bf);
}
.cid-qKymbDgI7X .plan-body .btn-bgr {
  z-index: 0;
}
.cid-qKymbDgI7X .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-qKymbDgI7X .price-term {
  display: block;
  line-height: 1;
  margin-top: 0.45rem;
}
.cid-qKymbDgI7X .plan-title {
  background-color: #4284df;
}
.cid-qKymbDgI7X .plan-header {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.cid-qKymbDgI7X .plan-body {
  border-radius: 0 0 8px 8px;
}
.cid-qKymbDgI7X .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-qKymbDgI7X .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-qKymbDgI7X .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-qKymbDgI7X .plan:nth-child(3) .plan-title {
  background-color: #eb4e6f;
}
.cid-qKymbDgI7X .plan-header,
.cid-qKymbDgI7X .plan-body {
  background-color: #fff;
  border-bottom: solid 2px #ededed;
}
.cid-qKymbDgI7X .price-figure {
  font-weight: 600;
  color: #232323;
}
.cid-qKymbDgI7X .price-value {
  font-weight: 700;
  vertical-align: top;
  line-height: 1;
  margin-right: 0.25rem;
}
@media (max-width: 550px) {
  .cid-qKymbDgI7X .price-figure {
    font-size: 4.25rem;
  }
}
.cid-qKhhPLN09q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-qKhhPLN09q h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qKhhPLN09q .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-qKhhPLN09q .mbr-section-subtitle {
  color: #767676;
}
.cid-qKhhPLN09q .pie_progress__number {
  text-align: center !important;
}
.cid-qKhhPLN09q .card-title {
  margin-bottom: 0;
}
.cid-qKhhPLN09q .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-qKhhPLN09q .gardient-ini {
  position: absolute;
}
.cid-qKhhPLN09q ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qKhhPLN09q .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-qM6fzTY4ci {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #021f47;
}
@media (max-width: 767px) {
  .cid-qM6fzTY4ci .content {
    text-align: center;
  }
  .cid-qM6fzTY4ci .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qM6fzTY4ci .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qM6fzTY4ci .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qM6fzTY4ci .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qM6fzTY4ci .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qM6fzTY4ci .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qM6fzTY4ci .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qM6fzTY4ci .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qM6fzTY4ci .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qM6fzTY4ci .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qM6fzTY4ci .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qM6fzTY4ci .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qM6fzTY4ci P {
  text-align: left;
}
.cid-qM6fzTY4ci H5 {
  text-align: left;
}
.cid-qKhiRQmIB2 .navbar {
  padding: .5rem 0;
  background: #021f47;
  transition: none;
  min-height: 77px;
}
.cid-qKhiRQmIB2 .menu-logo {
  display: flex;
  position: relative;
  align-items: center;
  margin-right: auto;
}
.cid-qKhiRQmIB2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qKhiRQmIB2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qKhiRQmIB2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qKhiRQmIB2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-qKhiRQmIB2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qKhiRQmIB2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qKhiRQmIB2 .navbar-dropdown.bg-color.transparent.opened {
  background: #021f47;
}
.cid-qKhiRQmIB2 a {
  font-style: normal;
}
.cid-qKhiRQmIB2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qKhiRQmIB2 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-qKhiRQmIB2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-qKhiRQmIB2 .dropdown-item:hover:before {
  transform: scale(1, 1);
  width: 16px;
}
.cid-qKhiRQmIB2 .content-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-qKhiRQmIB2 .navbar-nav {
  position: relative;
  min-height: 50px;
  margin: 0!important;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qKhiRQmIB2 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qKhiRQmIB2 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-qKhiRQmIB2 .navbar-nav .nav-item a {
    margin: 0!important;
  }
}
.cid-qKhiRQmIB2 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qKhiRQmIB2 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKhiRQmIB2 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKhiRQmIB2 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qKhiRQmIB2 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKhiRQmIB2 .nav-dropdown .link {
  font-weight: 400;
}
.cid-qKhiRQmIB2 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qKhiRQmIB2 .menu-content-top .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKhiRQmIB2 .menu-content-top .row p {
  padding: 0.5rem 0;
}
.cid-qKhiRQmIB2 .menu-content-top .row a {
  padding: 0.5rem 0;
}
.cid-qKhiRQmIB2 .content-right-side {
  text-align: center;
}
.cid-qKhiRQmIB2 .menu-content-top {
  display: none;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.cid-qKhiRQmIB2 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qKhiRQmIB2 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .cid-qKhiRQmIB2 .navbar .menu-content-top {
    display: block;
  }
  .cid-qKhiRQmIB2 .menu-content-top .row {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-qKhiRQmIB2 .content-right-side {
    align-items: center;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    text-align: right;
    flex-wrap: wrap;
    display: flex;
  }
  .cid-qKhiRQmIB2 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qKhiRQmIB2 .menu-bottom {
    display: flex;
  }
  .cid-qKhiRQmIB2 .navbar {
    display: block;
    padding: 0;
  }
  .cid-qKhiRQmIB2 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qKhiRQmIB2 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-qKhiRQmIB2 .navbar-toggler {
    display: none;
  }
}
.cid-qKhiRQmIB2 .navbar-short .menu-content-top {
  height: 0;
  border: none;
}
.cid-qKhiRQmIB2 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qKhiRQmIB2 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qKhiRQmIB2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qKhiRQmIB2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qKhiRQmIB2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qKhiRQmIB2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qKhiRQmIB2 .dropdown .dropdown-menu {
  background: #021f47;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qKhiRQmIB2 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qKhiRQmIB2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qKhiRQmIB2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qKhiRQmIB2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qKhiRQmIB2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qKhiRQmIB2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qKhiRQmIB2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qKhiRQmIB2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qKhiRQmIB2 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qKhiRQmIB2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qKhiRQmIB2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qKhiRQmIB2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qKhiRQmIB2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qKhiRQmIB2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-qKhiRQmIB2 button.navbar-toggler:focus {
  outline: none;
}
.cid-qKhiRQmIB2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qKhiRQmIB2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qKhiRQmIB2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qKhiRQmIB2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qKhiRQmIB2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qKhiRQmIB2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKhiRQmIB2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qKhiRQmIB2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qKhiRQmIB2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKhiRQmIB2 .collapsed.navbar {
  flex-direction: column;
}
.cid-qKhiRQmIB2 .collapsed .menu-bottom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-qKhiRQmIB2 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-qKhiRQmIB2 .collapsed .btn {
  display: flex;
}
.cid-qKhiRQmIB2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.collapsing,
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qKhiRQmIB2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qKhiRQmIB2 .collapsed button.navbar-toggler {
  display: block;
  align-self: center;
}
.cid-qKhiRQmIB2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qKhiRQmIB2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qKhiRQmIB2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity,padding,height;
}
.cid-qKhiRQmIB2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qKhiRQmIB2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qKhiRQmIB2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qKhiRQmIB2 .collapsed .dropdown-item:before {
  display: none;
}
@media (max-width: 991px) {
  .cid-qKhiRQmIB2 .dropdown-item {
    padding: 0.235em 0!important;
    margin: 0!important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-qKhiRQmIB2 .dropdown-item:before {
    display: none;
  }
  .cid-qKhiRQmIB2 .menu-logo {
    margin-right: 0;
  }
  .cid-qKhiRQmIB2 img {
    height: 3.8rem !important;
  }
  .cid-qKhiRQmIB2 .btn {
    display: flex;
  }
  .cid-qKhiRQmIB2 button.navbar-toggler {
    display: block;
  }
  .cid-qKhiRQmIB2 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qKhiRQmIB2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qKhiRQmIB2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qKhiRQmIB2 .navbar-collapse.collapsing,
  .cid-qKhiRQmIB2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qKhiRQmIB2 .navbar-collapse.collapsing .navbar-nav,
  .cid-qKhiRQmIB2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qKhiRQmIB2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qKhiRQmIB2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qKhiRQmIB2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qKhiRQmIB2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qKhiRQmIB2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qKhiRQmIB2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qKhiRQmIB2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qKhiRQmIB2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qKhiRQmIB2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qKhiRQmIB2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
.cid-qKhiRQmIB2 .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qKhiRQmIB2 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qKhiRQmIB2 .nav-link:focus {
  outline: none;
}
.cid-qKhiRQmIB2 .navbar-toggler {
  position: relative;
}
.cid-qKhiRQmIB2 .dropdown-item.active,
.cid-qKhiRQmIB2 .dropdown-item:active {
  background-color: #021f47;
  color: auto;
}
.cid-qKhiRQmIB2 .nav-link:hover,
.cid-qKhiRQmIB2 .dropdown-item:hover {
  color: #4284df;
}
.cid-qM4FCUZbiA {
  padding-top: 180px;
  background-image: url("../../../assets/images/twitter-292994-1920-1920x1280.jpg");
}
.cid-qM4FCUZbiA .container {
  margin-bottom: 15%;
}
.cid-qM4FCUZbiA .content-container .btn-bgr {
  z-index: 0;
}
.cid-qM4FCUZbiA .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-qM4FCUZbiA .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-qM4FCUZbiA .box-item:first-child {
  background-color: #df1212;
  margin-top: -200px;
}
.cid-qM4FCUZbiA .box-item:nth-child(2) {
  background-color: #951d19;
}
.cid-qM4FCUZbiA .box-item:last-child {
  background-color: #df1212;
}
.cid-qM4FCUZbiA .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qM4FCUZbiA .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qM4FCUZbiA .box-list li:last-child {
  border-bottom: none;
}
.cid-qM4FCUZbiA .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qM4FCUZbiA .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-qM4FCUZbiA .media-container-row {
    justify-content: flex-start;
  }
  .cid-qM4FCUZbiA .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-qM4FCUZbiA .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-qM4FCUZbiA .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-qM4FCUZbiA .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-qM4FCUZbiA B {
  color: #ffffff;
}
.cid-qM4FCUZbiA H1 {
  color: #ffffff;
}
.cid-qM4FCUZbiA .mbr-text,
.cid-qM4FCUZbiA .mbr-section-btn {
  color: #ffffff;
}
.cid-qM4Foh2dol {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qM4Foh2dol .mbr-subscribe {
  position: relative;
}
.cid-qM4Foh2dol .btn-subscribe {
  position: absolute;
  right: 0;
  top: 0;
}
.cid-qM4Foh2dol .btn-subscribe .btn {
  background: #4284df;
  border: 1px solid #e8e8e8;
}
.cid-qM4Foh2dol .mbr-section-subtitle {
  color: #767676;
}
.cid-qM4Foh2dol .formoid {
  margin: auto;
}
.cid-qM4Foh2dol .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-qM4Foh2dol a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-qM4Foh2dol .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-qM4Foh2dol .input-group-btn .btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.cid-qM4Foh2dol a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-qM4Foh2dol a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qM4Foh2dol .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-qM4Foh2dol .mbr-subscribe .input-group-btn button,
.cid-qM4Foh2dol .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-qM4Foh2dol .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qM4Foh2dol input[type="email"] {
    width: 100%;
    margin-bottom: 2px;
  }
  .cid-qM4Foh2dol .input-group-btn .btn {
    border-radius: 3px;
  }
}
.cid-qM4Foh2dol .input-subscribe {
  padding-right: 9rem;
}
.cid-qM4Foh2dol .input-group-btn .btn {
  padding-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .cid-qM4Foh2dol .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-qM4Foh2dol .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
  }
  .cid-qM4Foh2dol .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-qM4Foh2dol .input-group span {
    display: inline;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-qM4Foh2dol .input-group-btn button,
  .cid-qM4Foh2dol .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 769px) {
  .cid-qM4Foh2dol .mbr-subscribe > * {
    margin: 0 0.5rem;
  }
}
@media (max-width: 767px) {
  .cid-qM4Foh2dol .btn .mbr-iconfont {
    font-size: 1.6rem!important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qM4Foh2dol .form-control {
    font-size: 1.12rem;
  }
}
.cid-qM4Fufdtuz {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #555555, #cccccc);
}
.cid-qM4Fufdtuz a {
  text-align: center;
}
.cid-qM4Fufdtuz p {
  color: #0a0a0a;
  text-align: center;
}
.cid-qM4Fufdtuz span {
  font-size: 2rem;
}
.cid-qM4Fufdtuz .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-qM4Fufdtuz .socicon-twitter {
  color: #4da7de;
}
.cid-qM4Fufdtuz .socicon-facebook {
  color: #3e5b98;
}
.cid-qM4Fufdtuz .socicon-googleplus {
  color: #dd4b39;
}
.cid-qM4Fufdtuz .socicon-instagram {
  color: #3f729b;
}
.cid-qM4Fufdtuz .social-list a:focus {
  text-decoration: none;
}
.cid-qM4Fufdtuz .text-copyright {
  width: 100%;
}
.cid-qM4Fufdtuz .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-qM4Fufdtuz .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-qM4Fufdtuz .logo-footer {
  line-height: normal;
}
.cid-qM4Fufdtuz .copyright {
  display: flex;
  align-items: center;
}
.cid-qM4Fufdtuz .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qM4Fufdtuz .media-container-row {
  align-items: center;
}
.cid-qM4Fufdtuz .media-container-row a {
  margin: 0 1rem;
}
#custom-html-2m {
  /* Type valid CSS here */
}
#custom-html-2m .my-image {
  width: 100%;
}
.cid-qM5bhGeZPR {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #021f47;
}
@media (max-width: 767px) {
  .cid-qM5bhGeZPR .content {
    text-align: center;
  }
  .cid-qM5bhGeZPR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qM5bhGeZPR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qM5bhGeZPR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qM5bhGeZPR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qM5bhGeZPR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qM5bhGeZPR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qM5bhGeZPR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qM5bhGeZPR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qM5bhGeZPR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qM5bhGeZPR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qM5bhGeZPR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qM5bhGeZPR .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qM5bhGeZPR P {
  text-align: left;
}
.cid-qM5bhGeZPR H5 {
  text-align: left;
}
.cid-qKhgJXrFHl .navbar {
  padding: .5rem 0;
  background: #021f47;
  transition: none;
  min-height: 77px;
}
.cid-qKhgJXrFHl .menu-logo {
  display: flex;
  position: relative;
  align-items: center;
  margin-right: auto;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qKhgJXrFHl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qKhgJXrFHl .navbar-dropdown.bg-color.transparent.opened {
  background: #021f47;
}
.cid-qKhgJXrFHl a {
  font-style: normal;
}
.cid-qKhgJXrFHl .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qKhgJXrFHl .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-qKhgJXrFHl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  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-qKhgJXrFHl .dropdown-item:hover:before {
  transform: scale(1, 1);
  width: 16px;
}
.cid-qKhgJXrFHl .content-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-qKhgJXrFHl .navbar-nav {
  position: relative;
  min-height: 50px;
  margin: 0!important;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qKhgJXrFHl .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #4284df;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qKhgJXrFHl .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-qKhgJXrFHl .navbar-nav .nav-item a {
    margin: 0!important;
  }
}
.cid-qKhgJXrFHl .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qKhgJXrFHl .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKhgJXrFHl .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qKhgJXrFHl .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qKhgJXrFHl .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKhgJXrFHl .nav-dropdown .link {
  font-weight: 400;
}
.cid-qKhgJXrFHl .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qKhgJXrFHl .menu-content-top .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qKhgJXrFHl .menu-content-top .row p {
  padding: 0.5rem 0;
}
.cid-qKhgJXrFHl .menu-content-top .row a {
  padding: 0.5rem 0;
}
.cid-qKhgJXrFHl .content-right-side {
  text-align: center;
}
.cid-qKhgJXrFHl .menu-content-top {
  display: none;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.cid-qKhgJXrFHl .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qKhgJXrFHl .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .cid-qKhgJXrFHl .navbar .menu-content-top {
    display: block;
  }
  .cid-qKhgJXrFHl .menu-content-top .row {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-qKhgJXrFHl .content-right-side {
    align-items: center;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    text-align: right;
    flex-wrap: wrap;
    display: flex;
  }
  .cid-qKhgJXrFHl .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qKhgJXrFHl .menu-bottom {
    display: flex;
  }
  .cid-qKhgJXrFHl .navbar {
    display: block;
    padding: 0;
  }
  .cid-qKhgJXrFHl .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qKhgJXrFHl .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-qKhgJXrFHl .navbar-toggler {
    display: none;
  }
}
.cid-qKhgJXrFHl .navbar-short .menu-content-top {
  height: 0;
  border: none;
}
.cid-qKhgJXrFHl .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qKhgJXrFHl .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu {
  background: #021f47;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-qKhgJXrFHl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qKhgJXrFHl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qKhgJXrFHl .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qKhgJXrFHl .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qKhgJXrFHl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qKhgJXrFHl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qKhgJXrFHl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qKhgJXrFHl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qKhgJXrFHl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-qKhgJXrFHl button.navbar-toggler:focus {
  outline: none;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qKhgJXrFHl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qKhgJXrFHl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKhgJXrFHl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qKhgJXrFHl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qKhgJXrFHl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qKhgJXrFHl .collapsed.navbar {
  flex-direction: column;
}
.cid-qKhgJXrFHl .collapsed .menu-bottom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-qKhgJXrFHl .collapsed .menu-logo {
  margin-right: 0;
}
.cid-qKhgJXrFHl .collapsed .btn {
  display: flex;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qKhgJXrFHl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qKhgJXrFHl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qKhgJXrFHl .collapsed button.navbar-toggler {
  display: block;
  align-self: center;
}
.cid-qKhgJXrFHl .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qKhgJXrFHl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qKhgJXrFHl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity,padding,height;
}
.cid-qKhgJXrFHl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qKhgJXrFHl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qKhgJXrFHl .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qKhgJXrFHl .collapsed .dropdown-item:before {
  display: none;
}
@media (max-width: 991px) {
  .cid-qKhgJXrFHl .dropdown-item {
    padding: 0.235em 0!important;
    margin: 0!important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-qKhgJXrFHl .dropdown-item:before {
    display: none;
  }
  .cid-qKhgJXrFHl .menu-logo {
    margin-right: 0;
  }
  .cid-qKhgJXrFHl img {
    height: 3.8rem !important;
  }
  .cid-qKhgJXrFHl .btn {
    display: flex;
  }
  .cid-qKhgJXrFHl button.navbar-toggler {
    display: block;
  }
  .cid-qKhgJXrFHl .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qKhgJXrFHl .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qKhgJXrFHl .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing,
  .cid-qKhgJXrFHl .navbar-collapse.show {
    display: block !important;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing .navbar-nav,
  .cid-qKhgJXrFHl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qKhgJXrFHl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing .navbar-buttons,
  .cid-qKhgJXrFHl .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qKhgJXrFHl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qKhgJXrFHl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qKhgJXrFHl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qKhgJXrFHl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qKhgJXrFHl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qKhgJXrFHl .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
.cid-qKhgJXrFHl .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qKhgJXrFHl .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qKhgJXrFHl .nav-link:focus {
  outline: none;
}
.cid-qKhgJXrFHl .navbar-toggler {
  position: relative;
}
.cid-qKhgJXrFHl .dropdown-item.active,
.cid-qKhgJXrFHl .dropdown-item:active {
  background-color: #021f47;
  color: auto;
}
.cid-qKhgJXrFHl .nav-link:hover,
.cid-qKhgJXrFHl .dropdown-item:hover {
  color: #4284df;
}
.cid-qKhjbGRX9s {
  padding-top: 180px;
  background-image: url("../../../assets/images/background9.jpg");
}
.cid-qKhjbGRX9s .container {
  margin-bottom: 15%;
}
.cid-qKhjbGRX9s .content-container .btn-bgr {
  z-index: 0;
}
.cid-qKhjbGRX9s .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-qKhjbGRX9s .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-qKhjbGRX9s .box-item:first-child {
  background-color: #4284df;
  margin-top: -200px;
}
.cid-qKhjbGRX9s .box-item:nth-child(2) {
  background-color: #04367c;
}
.cid-qKhjbGRX9s .box-item:last-child {
  background-color: #0c57bf;
}
.cid-qKhjbGRX9s .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qKhjbGRX9s .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qKhjbGRX9s .box-list li:last-child {
  border-bottom: none;
}
.cid-qKhjbGRX9s .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qKhjbGRX9s .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-qKhjbGRX9s .media-container-row {
    justify-content: flex-start;
  }
  .cid-qKhjbGRX9s .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-qKhjbGRX9s .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-qKhjbGRX9s .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-qKhjbGRX9s .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-qKhjg2M7SY {
  padding-top: 120px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/background10.jpg");
}
.cid-qKhjg2M7SY .media-content .btn-bgr {
  z-index: 0;
}
.cid-qKhjg2M7SY .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-qKhjg2M7SY .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-qKhjg2M7SY {
    text-align: center !important;
  }
  .cid-qKhjg2M7SY .mbr-text {
    text-align: center;
  }
}
.cid-qKhjg2M7SY .media-container-row {
  justify-content: flex-start;
}
.cid-qM6lCpskRk {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #021f47;
}
@media (max-width: 767px) {
  .cid-qM6lCpskRk .content {
    text-align: center;
  }
  .cid-qM6lCpskRk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qM6lCpskRk .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qM6lCpskRk .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qM6lCpskRk .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qM6lCpskRk .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qM6lCpskRk .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qM6lCpskRk .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qM6lCpskRk .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qM6lCpskRk .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qM6lCpskRk .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qM6lCpskRk .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qM6lCpskRk .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qM6lCpskRk P {
  text-align: left;
}
.cid-qM6lCpskRk H5 {
  text-align: left;
}
