@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.06rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #c4ede9 !important;
}
.bg-success {
  background-color: #a58cd2 !important;
}
.bg-info {
  background-color: #275156 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c4ede9 !important;
  border-color: #c4ede9 !important;
  color: #2a887f !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #2a887f !important;
  background-color: #c4ede9 !important;
  border-color: #c4ede9 !important;
}
.btn-primary:before {
  background-color: #89dbd3 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #2a887f !important;
  background-color: #89dbd3 !important;
  border-color: #89dbd3 !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: #275156 !important;
  border-color: #275156 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #275156 !important;
  border-color: #275156 !important;
}
.btn-info:before {
  background-color: #0f1f21 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0f1f21 !important;
  border-color: #0f1f21 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #a58cd2 !important;
  border-color: #a58cd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #a58cd2 !important;
  border-color: #a58cd2 !important;
}
.btn-success:before {
  background-color: #7a55bc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7a55bc !important;
  border-color: #7a55bc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !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: #76d5cc;
  color: #76d5cc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #2a887f;
  border-color: #c4ede9;
}
.btn-primary-outline:before {
  background-color: #c4ede9;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c4ede9 !important;
  border-color: #c4ede9 !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: #070f10;
  color: #070f10;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #275156;
}
.btn-info-outline:before {
  background-color: #275156;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #275156 !important;
  border-color: #275156 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #6d46b2;
  color: #6d46b2;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #a58cd2;
}
.btn-success-outline:before {
  background-color: #a58cd2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a58cd2 !important;
  border-color: #a58cd2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !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;
  border-radius: 100px;
}
.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: #c4ede9;
  -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: #c4ede9 !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #a58cd2 !important;
}
.text-info {
  color: #275156 !important;
}
.text-warning {
  color: #f8f9c4 !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: #76d5cc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #6d46b2 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #070f10 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !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: #275156;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c4ede9;
  border-color: #c4ede9;
  color: #309c91;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #c4ede9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4fa4ae;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #c4ede9;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@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: #c4ede9;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #c4ede9;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c4ede9;
  color: #000000;
}
.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: #c4ede9;
  border-bottom-color: #c4ede9;
}
.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: #000000 !important;
  background-color: #c4ede9 !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='%23c4ede9' %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-rChgRwVhGe .navbar {
  padding: .5rem 0;
  background: #1a032d;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-rChgRwVhGe .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rChgRwVhGe .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-rChgRwVhGe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rChgRwVhGe .navbar-dropdown.bg-color.transparent.opened {
  background: #1a032d;
}
.cid-rChgRwVhGe a {
  font-style: normal;
}
.cid-rChgRwVhGe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-rChgRwVhGe .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-rChgRwVhGe .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rChgRwVhGe .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-rChgRwVhGe .content-text {
  margin-bottom: 0;
}
.cid-rChgRwVhGe .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #c4ede9;
    -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-rChgRwVhGe .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-rChgRwVhGe .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-rChgRwVhGe .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-rChgRwVhGe .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-rChgRwVhGe .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rChgRwVhGe .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rChgRwVhGe .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rChgRwVhGe .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rChgRwVhGe .nav-dropdown .link {
  font-weight: 400;
}
.cid-rChgRwVhGe .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rChgRwVhGe .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-rChgRwVhGe .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-rChgRwVhGe .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-rChgRwVhGe .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-rChgRwVhGe .menu-content-top.show {
  display: block;
}
.cid-rChgRwVhGe .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-rChgRwVhGe .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-rChgRwVhGe .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-rChgRwVhGe .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-rChgRwVhGe .dropdown-item:before {
    display: none;
  }
  .cid-rChgRwVhGe .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-rChgRwVhGe .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-rChgRwVhGe img {
    height: 3.8rem !important;
  }
  .cid-rChgRwVhGe .btn {
    display: flex;
  }
  .cid-rChgRwVhGe button.navbar-toggler {
    display: block;
  }
  .cid-rChgRwVhGe .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rChgRwVhGe .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rChgRwVhGe .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing,
  .cid-rChgRwVhGe .navbar-collapse.show {
    display: block !important;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-nav,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-buttons,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rChgRwVhGe .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-rChgRwVhGe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rChgRwVhGe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rChgRwVhGe .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;
  }
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .navbar .menu-content-top {
    display: block;
  }
  .cid-rChgRwVhGe .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-rChgRwVhGe .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-rChgRwVhGe .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rChgRwVhGe .menu-bottom {
    display: flex;
  }
  .cid-rChgRwVhGe .navbar {
    display: block;
    padding: 0;
  }
  .cid-rChgRwVhGe .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rChgRwVhGe .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-rChgRwVhGe .navbar-toggler {
    display: none;
  }
}
.cid-rChgRwVhGe .navbar-short .menu-content-top {
  border: none;
}
.cid-rChgRwVhGe .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rChgRwVhGe .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu {
  background: #1a032d;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rChgRwVhGe .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rChgRwVhGe .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-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rChgRwVhGe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rChgRwVhGe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rChgRwVhGe .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rChgRwVhGe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-rChgRwVhGe button.navbar-toggler:focus {
  outline: none;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #377e76;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rChgRwVhGe .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rChgRwVhGe .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rChgRwVhGe .collapsed .menu-logo {
  margin-right: 0;
}
.cid-rChgRwVhGe .collapsed .btn {
  display: flex;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.8rem  - 1rem);
  }
  .cid-rChgRwVhGe .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rChgRwVhGe .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rChgRwVhGe .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rChgRwVhGe .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rChgRwVhGe .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-rChgRwVhGe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rChgRwVhGe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rChgRwVhGe .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-rChgRwVhGe .collapsed .dropdown-item:before {
  display: none;
}
.cid-rChgRwVhGe .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rChgRwVhGe .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rChgRwVhGe .nav-link:focus {
  outline: none;
}
.cid-rChgRwVhGe .navbar-toggler {
  position: relative;
}
.cid-rChgRwVhGe .dropdown-item.active,
.cid-rChgRwVhGe .dropdown-item:active {
  background-color: #1a032d;
  color: auto;
}
.cid-rChgRwVhGe .nav-link:hover,
.cid-rChgRwVhGe .dropdown-item:hover {
  color: #c4ede9;
}
.cid-rCgZdAe3uo .media-content .btn-bgr {
  z-index: 0;
}
.cid-rCgZdAe3uo .mbr-section-text {
  word-break: break-word;
}
.cid-rCgZdAe3uo .mbr-overlay {
  background: linear-gradient(90deg, #7237a2, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-rCgZdAe3uo .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rCgZdAe3uo .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rCgZdAe3uo .mbr-text {
    text-align: center;
  }
}
.cid-rCgZdAe3uo H1 {
  color: #ffffff;
}
.cid-rCgZdAe3uo .mbr-text,
.cid-rCgZdAe3uo .mbr-section-btn {
  color: #c4ede9;
}
.cid-rChqG2TZ6X {
  background-image: url("../../../assets/images/doc-retention-j-720x481.jpg");
}
.cid-rChqG2TZ6X .column-content {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #400656;
  width: 100%;
  float: right;
  position: relative;
}
.cid-rChqG2TZ6X .text-content .btn-bgr {
  z-index: 0;
}
.cid-rChqG2TZ6X .mbr-overlay {
  background: linear-gradient(#377e76 -10%, #421d53 75%);
}
.cid-rChqG2TZ6X .container-full-width {
  position: relative;
}
.cid-rChqG2TZ6X .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-rChqG2TZ6X .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-rChqG2TZ6X .layer path {
  fill: #400656;
}
@media (min-width: 576px) {
  .cid-rChqG2TZ6X .text-content {
    width: 540px;
  }
  .cid-rChqG2TZ6X .column-content {
    width: 100%;
  }
  .cid-rChqG2TZ6X .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-rChqG2TZ6X .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-rChqG2TZ6X .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-rChqG2TZ6X .column-content {
    width: 50%;
  }
  .cid-rChqG2TZ6X .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-rChqG2TZ6X .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rChqG2TZ6X .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-rChqG2TZ6X .column-content {
    height: 33rem;
  }
}
.cid-rChqG2TZ6X .mbr-text,
.cid-rChqG2TZ6X .mbr-section-btn {
  color: #c4ede9;
}
.cid-rChqG2TZ6X H1 {
  color: #ffffff;
}
.cid-t2ezW47J1Y {
  background-image: url("../../../assets/images/hospital-1200x800b-1200x800.jpg");
}
.cid-t2ezW47J1Y .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-t2ezW47J1Y .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #c4ede9;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #000000;
}
.cid-t2ezW47J1Y .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-t2ezW47J1Y .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t2ezW47J1Y .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t2ezW47J1Y .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t2ezW47J1Y a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-t2ezW47J1Y a.close:hover {
  color: #ffffff;
}
.cid-t2ezW47J1Y H1 {
  color: #ffffff;
}
.cid-t2ezW47J1Y P {
  color: #ffffff;
}
.cid-s6J4RGdbEg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/pharmaceutical-1-1500x756.jpg");
}
.cid-s6J4RGdbEg .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-s6J4RGdbEg .nav-tabs .nav-item {
  border-bottom: 1px solid #ffffff;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-s6J4RGdbEg .nav-tabs .nav-item .nav-link {
  box-sizing: border-box;
  color: #a7e7ab;
  font-style: normal;
  font-weight: 500;
  border-radius: 0;
  border: none;
  padding: 0.5rem 1rem 0.7rem;
  margin: 0 !important;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.cid-s6J4RGdbEg .nav-tabs .nav-item .nav-link:hover {
  color: #000000;
  background-color: #ffffff;
}
.cid-s6J4RGdbEg .nav-tabs .nav-item .nav-link:focus {
  color: #ffffff;
  box-shadow: none;
  background-color: transparent;
}
.cid-s6J4RGdbEg .nav-tabs .nav-item .nav-link.active {
  border-bottom: 3px solid #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 0.5rem 1rem 0.5rem;
}
.cid-s6J4RGdbEg .mbr-section-subtitle {
  color: #c4ede9;
}
.cid-s6J4RGdbEg p {
  color: #767676;
}
.cid-s6J4RGdbEg .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-s6J4RGdbEg .mbr-text {
  word-break: break-word;
}
.cid-s6J4RGdbEg .tabs-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-s6J4RGdbEg .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-s6J4RGdbEg P {
  color: #ffffff;
}
.cid-s6J4RGdbEg H2 {
  color: #ffffff;
}
.cid-rCkZ1XnY7P {
  background-image: url("../../../assets/images/criver2b-1920x1036.jpg");
}
.cid-rCkZ1XnY7P .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-rCkZ1XnY7P .mbr-overlay {
  background: #377e76;
  background: linear-gradient(#377e76 -10%, #421d53 75%);
}
.cid-rCkZ1XnY7P .mbr-section-title {
  margin: 0;
}
.cid-rCkZ1XnY7P .separator {
  background-color: #feffe3;
  color: #feffe3;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-rCkZ1XnY7P H3 {
  color: #c4ede9;
}
.cid-rCmUiqgTe8 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/gradientpng-1900x800.png");
}
.cid-rCmUiqgTe8 .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rCmUiqgTe8 .nav-tabs .nav-item {
  border-bottom: 1px solid #9ad7d0;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rCmUiqgTe8 .nav-tabs .nav-item .nav-link {
  box-sizing: border-box;
  color: #a362ef;
  font-style: normal;
  font-weight: 500;
  border-radius: 0;
  border: none;
  padding: 0.5rem 1rem 0.7rem;
  margin: 0 !important;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.cid-rCmUiqgTe8 .nav-tabs .nav-item .nav-link:hover {
  color: #000000;
  background-color: #9ad7d0;
}
.cid-rCmUiqgTe8 .nav-tabs .nav-item .nav-link:focus {
  color: #9ad7d0;
  box-shadow: none;
  background-color: transparent;
}
.cid-rCmUiqgTe8 .nav-tabs .nav-item .nav-link.active {
  border-bottom: 3px solid #9ad7d0;
  color: #9ad7d0;
  background: transparent;
  padding: 0.5rem 1rem 0.5rem;
}
.cid-rCmUiqgTe8 .mbr-section-subtitle {
  color: #9ad7d0;
}
.cid-rCmUiqgTe8 p {
  color: #767676;
}
.cid-rCmUiqgTe8 .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rCmUiqgTe8 .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
  padding-right: 0;
  padding-left: 4rem;
}
.cid-rCmUiqgTe8 .mbr-text {
  word-break: break-word;
}
.cid-rCmUiqgTe8 .tabs-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-rCmUiqgTe8 .media-container-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rCmUiqgTe8 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
    padding-bottom: 0;
    padding-top: 2rem;
  }
}
.cid-rCmUiqgTe8 H2 {
  color: #ffffff;
}
.cid-rCmUiqgTe8 P {
  color: #ffffff;
}
.cid-rCn9Rfy5uZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #1a032d;
}
@media (max-width: 767px) {
  .cid-rCn9Rfy5uZ .content {
    text-align: center;
  }
  .cid-rCn9Rfy5uZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rCn9Rfy5uZ .img-logo img {
  height: 6rem;
}
.cid-rCn9Rfy5uZ .form-control {
  margin-bottom: 1rem;
  padding: 1.07em 1.07em;
}
.cid-rCn9Rfy5uZ textarea.form-control {
  resize: none;
}
.cid-rCn9Rfy5uZ .input-group-btn {
  display: inline-block;
}
.cid-rCn9Rfy5uZ .input-group-btn .btn {
  margin: 0 !important;
  padding: .75rem 1.5625rem !important;
  text-transform: none;
}
.cid-rCn9Rfy5uZ .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rCn9Rfy5uZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rCn9Rfy5uZ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rCn9Rfy5uZ .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rCn9Rfy5uZ .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rCn9Rfy5uZ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rCn9Rfy5uZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rCn9Rfy5uZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rCn9Rfy5uZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rCn9Rfy5uZ .form-control,
.cid-rCn9Rfy5uZ .input-group-btn .btn {
  border-radius: 3px;
}
.cid-rCn9Rfy5uZ .copyright > p {
  color: #1a032d;
}
.cid-rCn9Rfy5uZ P {
  color: #c4ede9;
}
.cid-rCn9Rfy5uZ .foot-title,
.cid-rCn9Rfy5uZ .img-logo {
  color: #ffffff;
}
.cid-rChgRwVhGe .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-rChgRwVhGe .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rChgRwVhGe .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-rChgRwVhGe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rChgRwVhGe .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rChgRwVhGe a {
  font-style: normal;
}
.cid-rChgRwVhGe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-rChgRwVhGe .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-rChgRwVhGe .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rChgRwVhGe .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-rChgRwVhGe .content-text {
  margin-bottom: 0;
}
.cid-rChgRwVhGe .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #c4ede9;
    -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-rChgRwVhGe .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-rChgRwVhGe .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-rChgRwVhGe .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-rChgRwVhGe .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-rChgRwVhGe .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rChgRwVhGe .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rChgRwVhGe .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rChgRwVhGe .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rChgRwVhGe .nav-dropdown .link {
  font-weight: 400;
}
.cid-rChgRwVhGe .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rChgRwVhGe .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-rChgRwVhGe .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-rChgRwVhGe .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-rChgRwVhGe .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-rChgRwVhGe .menu-content-top.show {
  display: block;
}
.cid-rChgRwVhGe .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-rChgRwVhGe .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-rChgRwVhGe .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-rChgRwVhGe .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-rChgRwVhGe .dropdown-item:before {
    display: none;
  }
  .cid-rChgRwVhGe .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-rChgRwVhGe .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-rChgRwVhGe img {
    height: 3.8rem !important;
  }
  .cid-rChgRwVhGe .btn {
    display: flex;
  }
  .cid-rChgRwVhGe button.navbar-toggler {
    display: block;
  }
  .cid-rChgRwVhGe .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rChgRwVhGe .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rChgRwVhGe .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing,
  .cid-rChgRwVhGe .navbar-collapse.show {
    display: block !important;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-nav,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-buttons,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rChgRwVhGe .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-rChgRwVhGe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rChgRwVhGe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rChgRwVhGe .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;
  }
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .navbar .menu-content-top {
    display: block;
  }
  .cid-rChgRwVhGe .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-rChgRwVhGe .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-rChgRwVhGe .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rChgRwVhGe .menu-bottom {
    display: flex;
  }
  .cid-rChgRwVhGe .navbar {
    display: block;
    padding: 0;
  }
  .cid-rChgRwVhGe .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rChgRwVhGe .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-rChgRwVhGe .navbar-toggler {
    display: none;
  }
}
.cid-rChgRwVhGe .navbar-short .menu-content-top {
  border: none;
}
.cid-rChgRwVhGe .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rChgRwVhGe .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rChgRwVhGe .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rChgRwVhGe .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-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rChgRwVhGe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rChgRwVhGe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rChgRwVhGe .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rChgRwVhGe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-rChgRwVhGe button.navbar-toggler:focus {
  outline: none;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #377e76;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rChgRwVhGe .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rChgRwVhGe .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rChgRwVhGe .collapsed .menu-logo {
  margin-right: 0;
}
.cid-rChgRwVhGe .collapsed .btn {
  display: flex;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.8rem  - 1rem);
  }
  .cid-rChgRwVhGe .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rChgRwVhGe .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rChgRwVhGe .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rChgRwVhGe .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rChgRwVhGe .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-rChgRwVhGe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rChgRwVhGe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rChgRwVhGe .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-rChgRwVhGe .collapsed .dropdown-item:before {
  display: none;
}
.cid-rChgRwVhGe .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rChgRwVhGe .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rChgRwVhGe .nav-link:focus {
  outline: none;
}
.cid-rChgRwVhGe .navbar-toggler {
  position: relative;
}
.cid-rChgRwVhGe .dropdown-item.active,
.cid-rChgRwVhGe .dropdown-item:active {
  background-color: #000000;
  color: auto;
}
.cid-rChgRwVhGe .nav-link:hover,
.cid-rChgRwVhGe .dropdown-item:hover {
  color: #c4ede9;
}
.cid-sC6ZLKGten {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mastercard-660x407.jpg");
}
.cid-sC6ZLKGten .mbr-overlay {
  background: linear-gradient(90deg, #6441a5, #2a0845);
}
.cid-sC6ZLKGten .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-sC6ZLKGten .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-sC6ZLKGten .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sC6ZLKGten .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-sC6ZLKGten {
    text-align: center !important;
  }
}
.cid-sC6ZLKGten .mbr-text {
  color: #555555;
}
.cid-sCeqw2QoKM {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background4bcdef-1905x777.jpg");
}
.cid-sCeqw2QoKM .card-img {
  background-color: #fff;
  overflow: hidden;
}
.cid-sCeqw2QoKM .card-box {
  padding: 0rem;
  padding-top: 2rem;
}
.cid-sCeqw2QoKM h4 {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sCeqw2QoKM h3 {
  margin-bottom: 0;
  letter-spacing: 1px;
}
.cid-sCeqw2QoKM p {
  text-align: left;
}
.cid-sCeqw2QoKM img {
  transition: all 0.3s;
}
.cid-sCeqw2QoKM .mbr-text {
  color: #1c1c1c;
}
.cid-sCeqw2QoKM .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sCeqw2QoKM .card-wrapper:hover h4 {
  background-size: 100% 100%;
}
.cid-sCeqw2QoKM .card-wrapper:hover img {
  filter: blur(2px);
}
.cid-sCeqw2QoKM .card {
  margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
  .cid-sCeqw2QoKM .card-columns {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .cid-sCeqw2QoKM .card-columns {
    column-count: 1;
  }
}
@media (min-width: 1200px) {
  .cid-sCeqw2QoKM .card-columns {
    column-gap: 4rem;
  }
}
.cid-sCeqw2QoKM .card-title {
  color: #767676;
}
.cid-rChgRwVhGe .navbar {
  padding: .5rem 0;
  background: #1a032d;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-rChgRwVhGe .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rChgRwVhGe .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-rChgRwVhGe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rChgRwVhGe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rChgRwVhGe .navbar-dropdown.bg-color.transparent.opened {
  background: #1a032d;
}
.cid-rChgRwVhGe a {
  font-style: normal;
}
.cid-rChgRwVhGe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-rChgRwVhGe .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-rChgRwVhGe .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rChgRwVhGe .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-rChgRwVhGe .content-text {
  margin-bottom: 0;
}
.cid-rChgRwVhGe .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #c4ede9;
    -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-rChgRwVhGe .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-rChgRwVhGe .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-rChgRwVhGe .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-rChgRwVhGe .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-rChgRwVhGe .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rChgRwVhGe .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rChgRwVhGe .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rChgRwVhGe .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rChgRwVhGe .nav-dropdown .link {
  font-weight: 400;
}
.cid-rChgRwVhGe .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rChgRwVhGe .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-rChgRwVhGe .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-rChgRwVhGe .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-rChgRwVhGe .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-rChgRwVhGe .menu-content-top.show {
  display: block;
}
.cid-rChgRwVhGe .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-rChgRwVhGe .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-rChgRwVhGe .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-rChgRwVhGe .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-rChgRwVhGe .dropdown-item:before {
    display: none;
  }
  .cid-rChgRwVhGe .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-rChgRwVhGe .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-rChgRwVhGe img {
    height: 3.8rem !important;
  }
  .cid-rChgRwVhGe .btn {
    display: flex;
  }
  .cid-rChgRwVhGe button.navbar-toggler {
    display: block;
  }
  .cid-rChgRwVhGe .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rChgRwVhGe .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rChgRwVhGe .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing,
  .cid-rChgRwVhGe .navbar-collapse.show {
    display: block !important;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-nav,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-buttons,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rChgRwVhGe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rChgRwVhGe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rChgRwVhGe .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-rChgRwVhGe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rChgRwVhGe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rChgRwVhGe .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;
  }
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .navbar .menu-content-top {
    display: block;
  }
  .cid-rChgRwVhGe .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-rChgRwVhGe .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-rChgRwVhGe .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rChgRwVhGe .menu-bottom {
    display: flex;
  }
  .cid-rChgRwVhGe .navbar {
    display: block;
    padding: 0;
  }
  .cid-rChgRwVhGe .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rChgRwVhGe .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-rChgRwVhGe .navbar-toggler {
    display: none;
  }
}
.cid-rChgRwVhGe .navbar-short .menu-content-top {
  border: none;
}
.cid-rChgRwVhGe .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rChgRwVhGe .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rChgRwVhGe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu {
  background: #1a032d;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rChgRwVhGe .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rChgRwVhGe .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-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rChgRwVhGe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rChgRwVhGe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rChgRwVhGe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rChgRwVhGe .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rChgRwVhGe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rChgRwVhGe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-rChgRwVhGe button.navbar-toggler:focus {
  outline: none;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #377e76;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rChgRwVhGe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rChgRwVhGe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rChgRwVhGe .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rChgRwVhGe .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rChgRwVhGe .collapsed .menu-logo {
  margin-right: 0;
}
.cid-rChgRwVhGe .collapsed .btn {
  display: flex;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rChgRwVhGe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rChgRwVhGe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rChgRwVhGe .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.8rem  - 1rem);
  }
  .cid-rChgRwVhGe .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rChgRwVhGe .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rChgRwVhGe .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rChgRwVhGe .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rChgRwVhGe .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-rChgRwVhGe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rChgRwVhGe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rChgRwVhGe .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-rChgRwVhGe .collapsed .dropdown-item:before {
  display: none;
}
.cid-rChgRwVhGe .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rChgRwVhGe .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rChgRwVhGe .nav-link:focus {
  outline: none;
}
.cid-rChgRwVhGe .navbar-toggler {
  position: relative;
}
.cid-rChgRwVhGe .dropdown-item.active,
.cid-rChgRwVhGe .dropdown-item:active {
  background-color: #1a032d;
  color: auto;
}
.cid-rChgRwVhGe .nav-link:hover,
.cid-rChgRwVhGe .dropdown-item:hover {
  color: #c4ede9;
}
.cid-ucpiCdpcLO {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-ucpiCdpcLO .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ucpiCdpcLO .mbr-author-desc {
  display: block;
  color: #ffffff;
}
.cid-ucpiCdpcLO .testimonial-photo {
  display: inline-block;
  width: 150px;
  height: 150px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-ucpiCdpcLO .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-ucpiCdpcLO .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-ucpiCdpcLO .mbr-testimonial .card-footer {
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-ucpiCdpcLO .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-ucpiCdpcLO .mbr-text {
  color: #ffffff;
}
.cid-ucpiCdpcLO .mbr-author-name {
  color: #ffffff;
  text-align: center;
}
.cid-ucpoQcVTtx {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #262d2d;
  background: linear-gradient(45deg, #262d2d, #000000);
}
@media (max-width: 767px) {
  .cid-ucpoQcVTtx .mbr-text {
    text-align: center;
  }
}
.cid-ucpoQcVTtx .container-fluid {
  padding: 0;
}
.cid-ucpoQcVTtx .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-ucpoQcVTtx img {
  height: 100%;
  object-fit: cover;
}
.cid-ucpoQcVTtx .mbr-figure {
  height: 100%;
}
.cid-ucpoQcVTtx .col-lg-6 {
  padding: 0;
}
.cid-ucpoQcVTtx .row {
  margin: 0;
}
.cid-ucpoQcVTtx H1 {
  color: #ffffff;
}
.cid-ucpoQcVTtx .mbr-text,
.cid-ucpoQcVTtx .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ucpJN7NuUf {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ucpJN7NuUf h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-ucpJN7NuUf h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ucpJN7NuUf h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ucpJN7NuUf .mbr-text,
.cid-ucpJN7NuUf .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ucpJN7NuUf H1 {
  color: #ffffff;
}
.cid-ucpJN7NuUf H3 {
  color: #ffffff;
}
.cid-ucpT2n7RAx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ucpT2n7RAx h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-ucpT2n7RAx h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ucpT2n7RAx h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ucpT2n7RAx .mbr-text,
.cid-ucpT2n7RAx .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ucpT2n7RAx H1 {
  color: #ffffff;
}
.cid-ucpT2n7RAx H3 {
  color: #ffffff;
}
.cid-ucSUPFR0Fs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ucSUPFR0Fs h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-ucSUPFR0Fs h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ucSUPFR0Fs h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ucSUPFR0Fs .mbr-text,
.cid-ucSUPFR0Fs .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ucSUPFR0Fs H1 {
  color: #ffffff;
}
.cid-ucSUPFR0Fs H3 {
  color: #ffffff;
}
.cid-ucT2zaZbH8 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-ucT2zaZbH8 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ucT2zaZbH8 .mbr-author-desc {
  display: block;
  color: #ffffff;
}
.cid-ucT2zaZbH8 .testimonial-photo {
  display: inline-block;
  width: 150px;
  height: 150px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-ucT2zaZbH8 .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-ucT2zaZbH8 .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-ucT2zaZbH8 .mbr-testimonial .card-footer {
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-ucT2zaZbH8 .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-ucT2zaZbH8 .mbr-text {
  color: #ffffff;
}
.cid-ucT2zaZbH8 .mbr-author-name {
  color: #ffffff;
  text-align: center;
}
