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





body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff4f7b !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4f7b !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8003a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn {
  border-radius: 100px;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn: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: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff4f7b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4f7b;
}
/* 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;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff4f7b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff4f7b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
@media (min-width: 768px) {
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4f7b;
  color: #ffffff;
}
.jq-number__spin {
  background-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: #ff4f7b;
  border-bottom-color: #ff4f7b;
}
.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: #ff4f7b !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: #2bdc9d !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='%23ff4f7b' %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-spEau1BPXi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEau1BPXi .nav-item,
.cid-spEau1BPXi .nav-link,
.cid-spEau1BPXi .navbar-caption {
  font-weight: normal;
}
.cid-spEau1BPXi .nav-item:focus,
.cid-spEau1BPXi .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEau1BPXi .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEau1BPXi .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEau1BPXi .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEau1BPXi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEau1BPXi .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEau1BPXi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEau1BPXi .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-spEau1BPXi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEau1BPXi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEau1BPXi .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEau1BPXi .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEau1BPXi .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEau1BPXi .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEau1BPXi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEau1BPXi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEau1BPXi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEau1BPXi .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEau1BPXi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEau1BPXi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEau1BPXi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEau1BPXi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEau1BPXi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEau1BPXi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEau1BPXi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEau1BPXi .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEau1BPXi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEau1BPXi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEau1BPXi .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEau1BPXi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEau1BPXi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEau1BPXi .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEau1BPXi .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEau1BPXi .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEau1BPXi .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEau1BPXi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEau1BPXi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEau1BPXi .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEau1BPXi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEau1BPXi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEau1BPXi .dropdown-item.active,
.cid-spEau1BPXi .dropdown-item:active {
  background-color: transparent;
}
.cid-spEau1BPXi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEau1BPXi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEau1BPXi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEau1BPXi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEau1BPXi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEau1BPXi ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEau1BPXi .navbar-buttons {
  text-align: center;
}
.cid-spEau1BPXi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEau1BPXi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEau1BPXi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEau1BPXi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEau1BPXi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEau1BPXi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEau1BPXi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEau1BPXi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEau1BPXi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEau1BPXi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEau1BPXi .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEau1BPXi a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEau1BPXi .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEau1BPXi .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEau1BPXi .soc-item {
  margin: .5rem .3rem;
}
.cid-spEau1BPXi .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEau1BPXi .navbar {
    height: 77px;
  }
  .cid-spEau1BPXi .navbar.opened {
    height: auto;
  }
  .cid-spEau1BPXi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spynYkdoVC {
  background-image: url("../../../assets/images/blueback2021-2000x1440.jpg");
}
.cid-spynYkdoVC .mbr-section-title,
.cid-spynYkdoVC .mbr-section-subtitle {
  color: #000000;
}
.cid-spynYkdoVC .mbr-section-text {
  color: #232323;
}
.cid-spynYkdoVC .mbr-text,
.cid-spynYkdoVC .typed-text,
.cid-spynYkdoVC .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-spynYkdoVC .btn {
  margin-left: 4px !important;
}
.cid-spynYkdoVC .animated-element {
  color: #fff835;
}
.cid-spynYkdoVC .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #fff835;
}
.cid-spynYkdoVC .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-spynYkdoVC .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spynYkdoVC .typed-text,
  .cid-spynYkdoVC .mbr-section-subtitle,
  .cid-spynYkdoVC .mbr-section-text,
  .cid-spynYkdoVC .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-spynYkdoVC .mbr-section-subtitle,
.cid-spynYkdoVC .typed-text {
  color: #ffffff;
}
.cid-spynYkdoVC .mbr-section-text,
.cid-spynYkdoVC .mbr-section-btn {
  color: #ffffff;
}
.cid-spG8WU18ZO {
  padding-top: 75px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #035096, #035096);
}
.cid-spG8WU18ZO .mbr-overlay {
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-spG8WU18ZO .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spG8WU18ZO .card-wrap {
  background-color: #035096;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spG8WU18ZO .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-spG8WU18ZO .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-spG8WU18ZO .mbr-section-subtitle,
.cid-spG8WU18ZO .mbr-section-btn {
  color: #ffffff;
}
.cid-spysP8B5xw {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-spysP8B5xw .mbr-overlay {
  background: linear-gradient(90deg, #444444, #188ef4);
}
.cid-spysP8B5xw .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spysP8B5xw .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spysP8B5xw .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spysP8B5xw .mbr-text {
  color: #8d97ad;
}
.cid-spysP8B5xw .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spysP8B5xw .counter-container {
  padding-top: 1rem;
}
.cid-spysP8B5xw .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spysP8B5xw .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spysP8B5xw .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spysP8B5xw .main-row {
    margin: 0;
  }
  .cid-spysP8B5xw .mbr-section-title,
  .cid-spysP8B5xw .mbr-text,
  .cid-spysP8B5xw .list,
  .cid-spysP8B5xw .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spysP8B5xw .text-content {
    padding: 0;
  }
}
.cid-spysP8B5xw .mbr-section-title {
  color: #ffffff;
}
.cid-spysP8B5xw .mbr-text,
.cid-spysP8B5xw .mbr-section-btn {
  color: #ffffff;
}
.cid-spysP8B5xw .list {
  color: #ffffff;
}
.cid-spyr9oGXgn {
  overflow: hidden !important;
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-spyr9oGXgn .container-fluid {
  padding: 0 5rem;
}
.cid-spyr9oGXgn .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spyr9oGXgn .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-spyr9oGXgn .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-spyr9oGXgn .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-spyr9oGXgn .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-spyr9oGXgn .container-fluid {
    padding: 0 1rem;
  }
  .cid-spyr9oGXgn .mbr-figure {
    margin-top: 1rem;
  }
  .cid-spyr9oGXgn .mbr-section-title {
    text-align: center !important;
  }
  .cid-spyr9oGXgn .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-spyr9oGXgn .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-spyx8WaF6Z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-spyx8WaF6Z .card-text,
.cid-spyx8WaF6Z .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spyx8WaF6Z .main,
.cid-spyx8WaF6Z .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-spyx8WaF6Z .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-spyx8WaF6Z .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-spyx8WaF6Z .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spyx8WaF6Z .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-spyx8WaF6Z .text-element {
  padding: 3rem 2rem;
}
.cid-spyx8WaF6Z .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-spyx8WaF6Z .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-spyx8WaF6Z .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-spyx8WaF6Z .main-reverse {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-spyx8WaF6Z .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-spyx8WaF6Z .image-element,
  .cid-spyx8WaF6Z .text-element {
    margin-bottom: 0;
  }
  .cid-spyx8WaF6Z .main:first-child {
    padding-top: 0;
  }
}
.cid-spyx8WaF6Z .card-text,
.cid-spyx8WaF6Z .mbr-section-btn {
  color: #000000;
}
.cid-spyx8WaF6Z .mbr-section-subtitle {
  color: #000000;
}
.cid-spyCmii3Mc {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-spyCmii3Mc .mbr-figure img {
  border-radius: .25rem;
}
.cid-spyCmii3Mc .mbr-text {
  color: #8d97ad;
}
.cid-spyCmii3Mc .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-spyCmii3Mc .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-spyCmii3Mc .btn-play {
  box-shadow: 2px 8px 20px rgba(115, 128, 157, 0.3);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #ff4f7b;
  width: 60px;
  height: 60px;
  border: 1px solid #ff4f7b;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-spyCmii3Mc .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-spyCmii3Mc .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-spyCmii3Mc .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-spyCmii3Mc .wrapper-video {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spyCmii3Mc .icon-description {
  margin-left: 1rem;
}
.cid-spyCmii3Mc a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-spyCmii3Mc a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spyCmii3Mc .mbr-section-title,
  .cid-spyCmii3Mc .mbr-text {
    text-align: center;
  }
  .cid-spyCmii3Mc .wrapper-video {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-spyCmii3Mc .mbr-text,
.cid-spyCmii3Mc .mbr-section-btn {
  color: #000000;
}
.cid-spyDD5Tdnk {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spyDD5Tdnk .content {
    text-align: center;
  }
  .cid-spyDD5Tdnk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spyDD5Tdnk .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spyDD5Tdnk .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spyDD5Tdnk .media-wrap img {
  height: 6rem;
}
.cid-spyDD5Tdnk .mbr-text {
  color: #8d97ad;
}
.cid-spyDD5Tdnk .p-title {
  font-size: 17px;
}
.cid-spyDD5Tdnk .p-title span {
  color: #111111;
}
.cid-spyDD5Tdnk .title-card {
  font-size: 1.3rem;
}
.cid-spyDD5Tdnk .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spyDD5Tdnk .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spyDD5Tdnk .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spyDD5Tdnk .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spyDD5Tdnk .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spyDD5Tdnk .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spyDD5Tdnk .copyright img {
  margin-right: 10px;
}
.cid-spyDD5Tdnk .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spyDD5Tdnk .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spyDD5Tdnk .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spyDD5Tdnk .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spyDD5Tdnk .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spyDD5Tdnk .copyright > p {
  text-align: center;
}
.cid-spEbeEkDDg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEbeEkDDg .nav-item,
.cid-spEbeEkDDg .nav-link,
.cid-spEbeEkDDg .navbar-caption {
  font-weight: normal;
}
.cid-spEbeEkDDg .nav-item:focus,
.cid-spEbeEkDDg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEbeEkDDg .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEbeEkDDg .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEbeEkDDg .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEbeEkDDg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEbeEkDDg .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEbeEkDDg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEbeEkDDg .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-spEbeEkDDg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEbeEkDDg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEbeEkDDg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEbeEkDDg .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEbeEkDDg .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEbeEkDDg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEbeEkDDg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEbeEkDDg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEbeEkDDg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEbeEkDDg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEbeEkDDg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEbeEkDDg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEbeEkDDg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEbeEkDDg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEbeEkDDg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEbeEkDDg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEbeEkDDg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEbeEkDDg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEbeEkDDg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEbeEkDDg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEbeEkDDg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEbeEkDDg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEbeEkDDg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEbeEkDDg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEbeEkDDg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEbeEkDDg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEbeEkDDg .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEbeEkDDg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEbeEkDDg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEbeEkDDg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEbeEkDDg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEbeEkDDg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEbeEkDDg .dropdown-item.active,
.cid-spEbeEkDDg .dropdown-item:active {
  background-color: transparent;
}
.cid-spEbeEkDDg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEbeEkDDg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEbeEkDDg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEbeEkDDg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEbeEkDDg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEbeEkDDg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEbeEkDDg .navbar-buttons {
  text-align: center;
}
.cid-spEbeEkDDg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEbeEkDDg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEbeEkDDg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEbeEkDDg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEbeEkDDg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEbeEkDDg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEbeEkDDg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEbeEkDDg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEbeEkDDg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEbeEkDDg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEbeEkDDg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEbeEkDDg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEbeEkDDg .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEbeEkDDg .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEbeEkDDg .soc-item {
  margin: .5rem .3rem;
}
.cid-spEbeEkDDg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEbeEkDDg .navbar {
    height: 77px;
  }
  .cid-spEbeEkDDg .navbar.opened {
    height: auto;
  }
  .cid-spEbeEkDDg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spzOT1OEnt {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spzOT1OEnt .mbr-text {
  color: #8d97ad;
}
.cid-spzOT1OEnt .blockquote-quote svg {
  height: 40px;
  width: 40px;
  fill: #8d97ad;
}
.cid-spzOT1OEnt .signature > span {
  color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spzOT1OEnt .blockquote-quote {
    text-align: left;
  }
  .cid-spzOT1OEnt .signature {
    text-align: left;
  }
}
.cid-spzOT1OEnt .mbr-text,
.cid-spzOT1OEnt .blockquote-quote {
  color: #000000;
}
.cid-spzMXaLbTL {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-spzMXaLbTL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-spzRrmVjPf {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spzRrmVjPf .content {
    text-align: center;
  }
  .cid-spzRrmVjPf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spzRrmVjPf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spzRrmVjPf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spzRrmVjPf .media-wrap img {
  height: 6rem;
}
.cid-spzRrmVjPf .mbr-text {
  color: #8d97ad;
}
.cid-spzRrmVjPf .p-title {
  font-size: 17px;
}
.cid-spzRrmVjPf .p-title span {
  color: #111111;
}
.cid-spzRrmVjPf .title-card {
  font-size: 1.3rem;
}
.cid-spzRrmVjPf .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spzRrmVjPf .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spzRrmVjPf .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spzRrmVjPf .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spzRrmVjPf .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spzRrmVjPf .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spzRrmVjPf .copyright img {
  margin-right: 10px;
}
.cid-spzRrmVjPf .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spzRrmVjPf .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spzRrmVjPf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spzRrmVjPf .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spzRrmVjPf .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spzRrmVjPf .copyright > p {
  text-align: center;
}
.cid-spEbaIg02X .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEbaIg02X .nav-item,
.cid-spEbaIg02X .nav-link,
.cid-spEbaIg02X .navbar-caption {
  font-weight: normal;
}
.cid-spEbaIg02X .nav-item:focus,
.cid-spEbaIg02X .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEbaIg02X .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEbaIg02X .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEbaIg02X .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEbaIg02X .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEbaIg02X .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEbaIg02X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEbaIg02X .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-spEbaIg02X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEbaIg02X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEbaIg02X .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEbaIg02X .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEbaIg02X .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEbaIg02X .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEbaIg02X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEbaIg02X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEbaIg02X .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEbaIg02X .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEbaIg02X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEbaIg02X .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEbaIg02X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEbaIg02X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEbaIg02X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEbaIg02X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEbaIg02X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEbaIg02X .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEbaIg02X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEbaIg02X .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEbaIg02X .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEbaIg02X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEbaIg02X .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEbaIg02X .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEbaIg02X .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEbaIg02X .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEbaIg02X .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEbaIg02X .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEbaIg02X .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEbaIg02X .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEbaIg02X .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEbaIg02X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEbaIg02X .dropdown-item.active,
.cid-spEbaIg02X .dropdown-item:active {
  background-color: transparent;
}
.cid-spEbaIg02X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEbaIg02X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEbaIg02X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEbaIg02X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEbaIg02X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEbaIg02X ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEbaIg02X .navbar-buttons {
  text-align: center;
}
.cid-spEbaIg02X button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEbaIg02X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEbaIg02X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEbaIg02X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEbaIg02X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEbaIg02X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEbaIg02X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEbaIg02X nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEbaIg02X nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEbaIg02X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEbaIg02X .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEbaIg02X a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEbaIg02X .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEbaIg02X .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEbaIg02X .soc-item {
  margin: .5rem .3rem;
}
.cid-spEbaIg02X .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEbaIg02X .navbar {
    height: 77px;
  }
  .cid-spEbaIg02X .navbar.opened {
    height: auto;
  }
  .cid-spEbaIg02X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spzUf2iwjB {
  overflow: hidden !important;
  background-color: #efefef;
}
.cid-spzUf2iwjB .container-fluid {
  padding: 0 5rem;
}
.cid-spzUf2iwjB .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spzUf2iwjB .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-spzUf2iwjB .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-spzUf2iwjB .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-spzUf2iwjB .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-spzUf2iwjB .container-fluid {
    padding: 0 1rem;
  }
  .cid-spzUf2iwjB .mbr-figure {
    margin-top: 1rem;
  }
  .cid-spzUf2iwjB .mbr-section-title {
    text-align: center !important;
  }
  .cid-spzUf2iwjB .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-spzUf2iwjB .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-spzVuCAM8u {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spzVuCAM8u .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spzVuCAM8u .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spzVuCAM8u .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spzVuCAM8u .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spzVuCAM8u .mbr-text {
  color: #8d97ad;
}
.cid-spzVuCAM8u .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spzVuCAM8u .counter-container {
  padding-top: 1rem;
}
.cid-spzVuCAM8u .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spzVuCAM8u .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spzVuCAM8u .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spzVuCAM8u .main-row {
    margin: 0;
  }
  .cid-spzVuCAM8u .mbr-section-title,
  .cid-spzVuCAM8u .mbr-text,
  .cid-spzVuCAM8u .list,
  .cid-spzVuCAM8u .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spzVuCAM8u .text-content {
    padding: 0;
  }
}
.cid-spzVuCAM8u .mbr-section-title {
  color: #000000;
}
.cid-spzVuCAM8u .mbr-text,
.cid-spzVuCAM8u .mbr-section-btn {
  color: #000000;
}
.cid-spzVuCAM8u .list {
  color: #000000;
}
.cid-spzXUE4SFj {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spzXUE4SFj .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spzXUE4SFj .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spzXUE4SFj .text-content {
  padding-right: 1.5rem;
}
.cid-spzXUE4SFj .mbr-text {
  color: #8d97ad;
}
.cid-spzXUE4SFj .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spzXUE4SFj .counter-container {
  padding-top: 1rem;
}
.cid-spzXUE4SFj .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spzXUE4SFj .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spzXUE4SFj .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spzXUE4SFj .main-row {
    margin: 0;
  }
  .cid-spzXUE4SFj .mbr-section-title,
  .cid-spzXUE4SFj .mbr-text,
  .cid-spzXUE4SFj .list,
  .cid-spzXUE4SFj .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spzXUE4SFj .text-content {
    padding: 0;
  }
}
.cid-spzXUE4SFj .mbr-section-title {
  color: #000000;
}
.cid-spzXUE4SFj .mbr-text,
.cid-spzXUE4SFj .mbr-section-btn {
  color: #000000;
}
.cid-spzXUE4SFj .list {
  color: #000000;
}
.cid-spzYjDXPCj {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spzYjDXPCj .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spzYjDXPCj .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spzYjDXPCj .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spzYjDXPCj .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spzYjDXPCj .mbr-text {
  color: #8d97ad;
}
.cid-spzYjDXPCj .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spzYjDXPCj .counter-container {
  padding-top: 1rem;
}
.cid-spzYjDXPCj .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spzYjDXPCj .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spzYjDXPCj .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spzYjDXPCj .main-row {
    margin: 0;
  }
  .cid-spzYjDXPCj .mbr-section-title,
  .cid-spzYjDXPCj .mbr-text,
  .cid-spzYjDXPCj .list,
  .cid-spzYjDXPCj .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spzYjDXPCj .text-content {
    padding: 0;
  }
}
.cid-spzYjDXPCj .mbr-section-title {
  color: #000000;
}
.cid-spzYjDXPCj .mbr-text,
.cid-spzYjDXPCj .mbr-section-btn {
  color: #000000;
}
.cid-spzYjDXPCj .list {
  color: #000000;
}
.cid-spzVtT83bP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spzVtT83bP .content {
    text-align: center;
  }
  .cid-spzVtT83bP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spzVtT83bP .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spzVtT83bP .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spzVtT83bP .media-wrap img {
  height: 6rem;
}
.cid-spzVtT83bP .mbr-text {
  color: #8d97ad;
}
.cid-spzVtT83bP .p-title {
  font-size: 17px;
}
.cid-spzVtT83bP .p-title span {
  color: #111111;
}
.cid-spzVtT83bP .title-card {
  font-size: 1.3rem;
}
.cid-spzVtT83bP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spzVtT83bP .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spzVtT83bP .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spzVtT83bP .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spzVtT83bP .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spzVtT83bP .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spzVtT83bP .copyright img {
  margin-right: 10px;
}
.cid-spzVtT83bP .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #c1c1c1;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spzVtT83bP .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spzVtT83bP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spzVtT83bP .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spzVtT83bP .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spzVtT83bP .copyright > p {
  text-align: center;
}
.cid-spEb6i5fXK .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEb6i5fXK .nav-item,
.cid-spEb6i5fXK .nav-link,
.cid-spEb6i5fXK .navbar-caption {
  font-weight: normal;
}
.cid-spEb6i5fXK .nav-item:focus,
.cid-spEb6i5fXK .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEb6i5fXK .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEb6i5fXK .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEb6i5fXK .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEb6i5fXK .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEb6i5fXK .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEb6i5fXK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEb6i5fXK .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-spEb6i5fXK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEb6i5fXK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEb6i5fXK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEb6i5fXK .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEb6i5fXK .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEb6i5fXK .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEb6i5fXK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEb6i5fXK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEb6i5fXK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEb6i5fXK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEb6i5fXK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEb6i5fXK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEb6i5fXK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEb6i5fXK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEb6i5fXK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEb6i5fXK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEb6i5fXK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEb6i5fXK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEb6i5fXK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEb6i5fXK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEb6i5fXK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEb6i5fXK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEb6i5fXK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEb6i5fXK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEb6i5fXK .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEb6i5fXK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEb6i5fXK .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEb6i5fXK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEb6i5fXK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEb6i5fXK .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEb6i5fXK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEb6i5fXK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEb6i5fXK .dropdown-item.active,
.cid-spEb6i5fXK .dropdown-item:active {
  background-color: transparent;
}
.cid-spEb6i5fXK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEb6i5fXK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEb6i5fXK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEb6i5fXK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEb6i5fXK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEb6i5fXK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEb6i5fXK .navbar-buttons {
  text-align: center;
}
.cid-spEb6i5fXK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEb6i5fXK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEb6i5fXK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEb6i5fXK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEb6i5fXK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEb6i5fXK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEb6i5fXK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEb6i5fXK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEb6i5fXK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEb6i5fXK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEb6i5fXK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEb6i5fXK a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEb6i5fXK .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEb6i5fXK .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEb6i5fXK .soc-item {
  margin: .5rem .3rem;
}
.cid-spEb6i5fXK .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEb6i5fXK .navbar {
    height: 77px;
  }
  .cid-spEb6i5fXK .navbar.opened {
    height: auto;
  }
  .cid-spEb6i5fXK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spzZvmyOG1 {
  overflow: hidden !important;
  background-color: #efefef;
}
.cid-spzZvmyOG1 .container-fluid {
  padding: 0 5rem;
}
.cid-spzZvmyOG1 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spzZvmyOG1 .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-spzZvmyOG1 .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-spzZvmyOG1 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-spzZvmyOG1 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-spzZvmyOG1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-spzZvmyOG1 .mbr-figure {
    margin-top: 1rem;
  }
  .cid-spzZvmyOG1 .mbr-section-title {
    text-align: center !important;
  }
  .cid-spzZvmyOG1 .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-spzZvmyOG1 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-spzZvmyOG1 .mbr-section-subtitle,
.cid-spzZvmyOG1 .mbr-section-btn {
  text-align: left;
}
.cid-spzZP7gtys {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spzZP7gtys .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spzZP7gtys .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spzZP7gtys .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spzZP7gtys .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spzZP7gtys .mbr-text {
  color: #8d97ad;
}
.cid-spzZP7gtys .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spzZP7gtys .counter-container {
  padding-top: 1rem;
}
.cid-spzZP7gtys .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spzZP7gtys .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spzZP7gtys .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spzZP7gtys .main-row {
    margin: 0;
  }
  .cid-spzZP7gtys .mbr-section-title,
  .cid-spzZP7gtys .mbr-text,
  .cid-spzZP7gtys .list,
  .cid-spzZP7gtys .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spzZP7gtys .text-content {
    padding: 0;
  }
}
.cid-spzZP7gtys .mbr-section-title {
  color: #000000;
}
.cid-spzZP7gtys .mbr-text,
.cid-spzZP7gtys .mbr-section-btn {
  color: #000000;
}
.cid-spzZP7gtys .list {
  color: #000000;
}
.cid-spA076RLGf {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA076RLGf .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA076RLGf .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA076RLGf .text-content {
  padding-right: 1.5rem;
}
.cid-spA076RLGf .mbr-text {
  color: #8d97ad;
}
.cid-spA076RLGf .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA076RLGf .counter-container {
  padding-top: 1rem;
}
.cid-spA076RLGf .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA076RLGf .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA076RLGf .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA076RLGf .main-row {
    margin: 0;
  }
  .cid-spA076RLGf .mbr-section-title,
  .cid-spA076RLGf .mbr-text,
  .cid-spA076RLGf .list,
  .cid-spA076RLGf .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA076RLGf .text-content {
    padding: 0;
  }
}
.cid-spA076RLGf .mbr-section-title {
  color: #000000;
}
.cid-spA076RLGf .mbr-text,
.cid-spA076RLGf .mbr-section-btn {
  color: #000000;
}
.cid-spA076RLGf .list {
  color: #000000;
}
.cid-spA0M6911k {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA0M6911k .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA0M6911k .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA0M6911k .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spA0M6911k .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spA0M6911k .mbr-text {
  color: #8d97ad;
}
.cid-spA0M6911k .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA0M6911k .counter-container {
  padding-top: 1rem;
}
.cid-spA0M6911k .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA0M6911k .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA0M6911k .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA0M6911k .main-row {
    margin: 0;
  }
  .cid-spA0M6911k .mbr-section-title,
  .cid-spA0M6911k .mbr-text,
  .cid-spA0M6911k .list,
  .cid-spA0M6911k .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA0M6911k .text-content {
    padding: 0;
  }
}
.cid-spA0M6911k .mbr-section-title {
  color: #000000;
}
.cid-spA0M6911k .mbr-text,
.cid-spA0M6911k .mbr-section-btn {
  color: #000000;
}
.cid-spA0M6911k .list {
  color: #000000;
}
.cid-spA1g9PyyE {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA1g9PyyE .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA1g9PyyE .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA1g9PyyE .text-content {
  padding-right: 1.5rem;
}
.cid-spA1g9PyyE .mbr-text {
  color: #8d97ad;
}
.cid-spA1g9PyyE .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA1g9PyyE .counter-container {
  padding-top: 1rem;
}
.cid-spA1g9PyyE .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA1g9PyyE .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA1g9PyyE .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA1g9PyyE .main-row {
    margin: 0;
  }
  .cid-spA1g9PyyE .mbr-section-title,
  .cid-spA1g9PyyE .mbr-text,
  .cid-spA1g9PyyE .list,
  .cid-spA1g9PyyE .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA1g9PyyE .text-content {
    padding: 0;
  }
}
.cid-spA1g9PyyE .mbr-section-title {
  color: #000000;
}
.cid-spA1g9PyyE .mbr-text,
.cid-spA1g9PyyE .mbr-section-btn {
  color: #000000;
}
.cid-spA1g9PyyE .list {
  color: #000000;
}
.cid-spA1zWwBAX {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA1zWwBAX .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA1zWwBAX .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA1zWwBAX .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spA1zWwBAX .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spA1zWwBAX .mbr-text {
  color: #8d97ad;
}
.cid-spA1zWwBAX .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA1zWwBAX .counter-container {
  padding-top: 1rem;
}
.cid-spA1zWwBAX .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA1zWwBAX .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA1zWwBAX .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA1zWwBAX .main-row {
    margin: 0;
  }
  .cid-spA1zWwBAX .mbr-section-title,
  .cid-spA1zWwBAX .mbr-text,
  .cid-spA1zWwBAX .list,
  .cid-spA1zWwBAX .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA1zWwBAX .text-content {
    padding: 0;
  }
}
.cid-spA1zWwBAX .mbr-section-title {
  color: #000000;
}
.cid-spA1zWwBAX .mbr-text,
.cid-spA1zWwBAX .mbr-section-btn {
  color: #000000;
}
.cid-spA1zWwBAX .list {
  color: #000000;
}
.cid-spA1RMiLy8 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA1RMiLy8 .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA1RMiLy8 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA1RMiLy8 .text-content {
  padding-right: 1.5rem;
}
.cid-spA1RMiLy8 .mbr-text {
  color: #8d97ad;
}
.cid-spA1RMiLy8 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA1RMiLy8 .counter-container {
  padding-top: 1rem;
}
.cid-spA1RMiLy8 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA1RMiLy8 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA1RMiLy8 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA1RMiLy8 .main-row {
    margin: 0;
  }
  .cid-spA1RMiLy8 .mbr-section-title,
  .cid-spA1RMiLy8 .mbr-text,
  .cid-spA1RMiLy8 .list,
  .cid-spA1RMiLy8 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA1RMiLy8 .text-content {
    padding: 0;
  }
}
.cid-spA1RMiLy8 .mbr-section-title {
  color: #000000;
}
.cid-spA1RMiLy8 .mbr-text,
.cid-spA1RMiLy8 .mbr-section-btn {
  color: #000000;
}
.cid-spA1RMiLy8 .list {
  color: #000000;
}
.cid-spA29mdsV9 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA29mdsV9 .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA29mdsV9 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA29mdsV9 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spA29mdsV9 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spA29mdsV9 .mbr-text {
  color: #8d97ad;
}
.cid-spA29mdsV9 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA29mdsV9 .counter-container {
  padding-top: 1rem;
}
.cid-spA29mdsV9 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA29mdsV9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA29mdsV9 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA29mdsV9 .main-row {
    margin: 0;
  }
  .cid-spA29mdsV9 .mbr-section-title,
  .cid-spA29mdsV9 .mbr-text,
  .cid-spA29mdsV9 .list,
  .cid-spA29mdsV9 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA29mdsV9 .text-content {
    padding: 0;
  }
}
.cid-spA29mdsV9 .mbr-section-title {
  color: #000000;
}
.cid-spA29mdsV9 .mbr-text,
.cid-spA29mdsV9 .mbr-section-btn {
  color: #000000;
}
.cid-spA29mdsV9 .list {
  color: #000000;
}
.cid-spA2rGZUrn {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spA2rGZUrn .content {
    text-align: center;
  }
  .cid-spA2rGZUrn .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spA2rGZUrn .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spA2rGZUrn .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spA2rGZUrn .media-wrap img {
  height: 6rem;
}
.cid-spA2rGZUrn .mbr-text {
  color: #8d97ad;
}
.cid-spA2rGZUrn .p-title {
  font-size: 17px;
}
.cid-spA2rGZUrn .p-title span {
  color: #111111;
}
.cid-spA2rGZUrn .title-card {
  font-size: 1.3rem;
}
.cid-spA2rGZUrn .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spA2rGZUrn .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spA2rGZUrn .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spA2rGZUrn .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spA2rGZUrn .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spA2rGZUrn .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spA2rGZUrn .copyright img {
  margin-right: 10px;
}
.cid-spA2rGZUrn .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #c1c1c1;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spA2rGZUrn .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spA2rGZUrn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spA2rGZUrn .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spA2rGZUrn .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spA2rGZUrn .copyright > p {
  text-align: center;
}
.cid-spEb2vWuXA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEb2vWuXA .nav-item,
.cid-spEb2vWuXA .nav-link,
.cid-spEb2vWuXA .navbar-caption {
  font-weight: normal;
}
.cid-spEb2vWuXA .nav-item:focus,
.cid-spEb2vWuXA .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEb2vWuXA .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEb2vWuXA .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEb2vWuXA .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEb2vWuXA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEb2vWuXA .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEb2vWuXA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEb2vWuXA .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-spEb2vWuXA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEb2vWuXA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEb2vWuXA .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEb2vWuXA .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEb2vWuXA .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEb2vWuXA .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEb2vWuXA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEb2vWuXA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEb2vWuXA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEb2vWuXA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEb2vWuXA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEb2vWuXA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEb2vWuXA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEb2vWuXA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEb2vWuXA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEb2vWuXA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEb2vWuXA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEb2vWuXA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEb2vWuXA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEb2vWuXA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEb2vWuXA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEb2vWuXA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEb2vWuXA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEb2vWuXA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEb2vWuXA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEb2vWuXA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEb2vWuXA .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEb2vWuXA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEb2vWuXA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEb2vWuXA .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEb2vWuXA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEb2vWuXA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEb2vWuXA .dropdown-item.active,
.cid-spEb2vWuXA .dropdown-item:active {
  background-color: transparent;
}
.cid-spEb2vWuXA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEb2vWuXA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEb2vWuXA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEb2vWuXA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEb2vWuXA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEb2vWuXA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEb2vWuXA .navbar-buttons {
  text-align: center;
}
.cid-spEb2vWuXA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEb2vWuXA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEb2vWuXA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEb2vWuXA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEb2vWuXA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEb2vWuXA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEb2vWuXA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEb2vWuXA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEb2vWuXA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEb2vWuXA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEb2vWuXA .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEb2vWuXA a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEb2vWuXA .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEb2vWuXA .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEb2vWuXA .soc-item {
  margin: .5rem .3rem;
}
.cid-spEb2vWuXA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEb2vWuXA .navbar {
    height: 77px;
  }
  .cid-spEb2vWuXA .navbar.opened {
    height: auto;
  }
  .cid-spEb2vWuXA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spA2LZKK7U {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-spA2LZKK7U .container-fluid {
  padding: 0 5rem;
}
.cid-spA2LZKK7U .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spA2LZKK7U .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-spA2LZKK7U .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-spA2LZKK7U .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-spA2LZKK7U .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-spA2LZKK7U .container-fluid {
    padding: 0 1rem;
  }
  .cid-spA2LZKK7U .mbr-figure {
    margin-top: 1rem;
  }
  .cid-spA2LZKK7U .mbr-section-title {
    text-align: center !important;
  }
  .cid-spA2LZKK7U .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-spA2LZKK7U .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-spA2LZKK7U .mbr-section-subtitle,
.cid-spA2LZKK7U .mbr-section-btn {
  text-align: left;
}
.cid-spA3kAjZdP {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA3kAjZdP .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA3kAjZdP .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA3kAjZdP .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spA3kAjZdP .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spA3kAjZdP .mbr-text {
  color: #8d97ad;
}
.cid-spA3kAjZdP .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA3kAjZdP .counter-container {
  padding-top: 1rem;
}
.cid-spA3kAjZdP .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA3kAjZdP .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA3kAjZdP .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA3kAjZdP .main-row {
    margin: 0;
  }
  .cid-spA3kAjZdP .mbr-section-title,
  .cid-spA3kAjZdP .mbr-text,
  .cid-spA3kAjZdP .list,
  .cid-spA3kAjZdP .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA3kAjZdP .text-content {
    padding: 0;
  }
}
.cid-spA3kAjZdP .mbr-section-title {
  color: #000000;
}
.cid-spA3kAjZdP .mbr-text,
.cid-spA3kAjZdP .mbr-section-btn {
  color: #000000;
}
.cid-spA3kAjZdP .list {
  color: #000000;
}
.cid-spA4986P0w {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA4986P0w .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA4986P0w .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA4986P0w .text-content {
  padding-right: 1.5rem;
}
.cid-spA4986P0w .mbr-text {
  color: #8d97ad;
}
.cid-spA4986P0w .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA4986P0w .counter-container {
  padding-top: 1rem;
}
.cid-spA4986P0w .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA4986P0w .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA4986P0w .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA4986P0w .main-row {
    margin: 0;
  }
  .cid-spA4986P0w .mbr-section-title,
  .cid-spA4986P0w .mbr-text,
  .cid-spA4986P0w .list,
  .cid-spA4986P0w .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA4986P0w .text-content {
    padding: 0;
  }
}
.cid-spA4986P0w .mbr-section-title {
  color: #000000;
}
.cid-spA4986P0w .mbr-text,
.cid-spA4986P0w .mbr-section-btn {
  color: #000000;
}
.cid-spA4986P0w .list {
  color: #000000;
}
.cid-spA3WuLwEq {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA3WuLwEq .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA3WuLwEq .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA3WuLwEq .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spA3WuLwEq .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spA3WuLwEq .mbr-text {
  color: #8d97ad;
}
.cid-spA3WuLwEq .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA3WuLwEq .counter-container {
  padding-top: 1rem;
}
.cid-spA3WuLwEq .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA3WuLwEq .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA3WuLwEq .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA3WuLwEq .main-row {
    margin: 0;
  }
  .cid-spA3WuLwEq .mbr-section-title,
  .cid-spA3WuLwEq .mbr-text,
  .cid-spA3WuLwEq .list,
  .cid-spA3WuLwEq .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA3WuLwEq .text-content {
    padding: 0;
  }
}
.cid-spA3WuLwEq .mbr-section-title {
  color: #000000;
}
.cid-spA3WuLwEq .mbr-text,
.cid-spA3WuLwEq .mbr-section-btn {
  color: #000000;
}
.cid-spA3WuLwEq .list {
  color: #000000;
}
.cid-spA4xLeVV5 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA4xLeVV5 .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA4xLeVV5 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA4xLeVV5 .text-content {
  padding-right: 1.5rem;
}
.cid-spA4xLeVV5 .mbr-text {
  color: #8d97ad;
}
.cid-spA4xLeVV5 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA4xLeVV5 .counter-container {
  padding-top: 1rem;
}
.cid-spA4xLeVV5 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA4xLeVV5 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA4xLeVV5 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA4xLeVV5 .main-row {
    margin: 0;
  }
  .cid-spA4xLeVV5 .mbr-section-title,
  .cid-spA4xLeVV5 .mbr-text,
  .cid-spA4xLeVV5 .list,
  .cid-spA4xLeVV5 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA4xLeVV5 .text-content {
    padding: 0;
  }
}
.cid-spA4xLeVV5 .mbr-section-title {
  color: #000000;
}
.cid-spA4xLeVV5 .mbr-text,
.cid-spA4xLeVV5 .mbr-section-btn {
  color: #000000;
}
.cid-spA4xLeVV5 .list {
  color: #000000;
}
.cid-spA4UHEkBZ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA4UHEkBZ .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA4UHEkBZ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA4UHEkBZ .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spA4UHEkBZ .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spA4UHEkBZ .mbr-text {
  color: #8d97ad;
}
.cid-spA4UHEkBZ .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA4UHEkBZ .counter-container {
  padding-top: 1rem;
}
.cid-spA4UHEkBZ .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA4UHEkBZ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA4UHEkBZ .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA4UHEkBZ .main-row {
    margin: 0;
  }
  .cid-spA4UHEkBZ .mbr-section-title,
  .cid-spA4UHEkBZ .mbr-text,
  .cid-spA4UHEkBZ .list,
  .cid-spA4UHEkBZ .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA4UHEkBZ .text-content {
    padding: 0;
  }
}
.cid-spA4UHEkBZ .mbr-section-title {
  color: #000000;
}
.cid-spA4UHEkBZ .mbr-text,
.cid-spA4UHEkBZ .mbr-section-btn {
  color: #000000;
}
.cid-spA4UHEkBZ .list {
  color: #000000;
}
.cid-spA5hipUSK {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA5hipUSK .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA5hipUSK .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA5hipUSK .text-content {
  padding-right: 1.5rem;
}
.cid-spA5hipUSK .mbr-text {
  color: #8d97ad;
}
.cid-spA5hipUSK .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA5hipUSK .counter-container {
  padding-top: 1rem;
}
.cid-spA5hipUSK .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA5hipUSK .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA5hipUSK .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA5hipUSK .main-row {
    margin: 0;
  }
  .cid-spA5hipUSK .mbr-section-title,
  .cid-spA5hipUSK .mbr-text,
  .cid-spA5hipUSK .list,
  .cid-spA5hipUSK .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA5hipUSK .text-content {
    padding: 0;
  }
}
.cid-spA5hipUSK .mbr-section-title {
  color: #000000;
}
.cid-spA5hipUSK .mbr-text,
.cid-spA5hipUSK .mbr-section-btn {
  color: #000000;
}
.cid-spA5hipUSK .list {
  color: #000000;
}
.cid-spA5xqyxJc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spA5xqyxJc .content {
    text-align: center;
  }
  .cid-spA5xqyxJc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spA5xqyxJc .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spA5xqyxJc .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spA5xqyxJc .media-wrap img {
  height: 6rem;
}
.cid-spA5xqyxJc .mbr-text {
  color: #8d97ad;
}
.cid-spA5xqyxJc .p-title {
  font-size: 17px;
}
.cid-spA5xqyxJc .p-title span {
  color: #111111;
}
.cid-spA5xqyxJc .title-card {
  font-size: 1.3rem;
}
.cid-spA5xqyxJc .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spA5xqyxJc .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spA5xqyxJc .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spA5xqyxJc .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spA5xqyxJc .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spA5xqyxJc .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spA5xqyxJc .copyright img {
  margin-right: 10px;
}
.cid-spA5xqyxJc .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #c1c1c1;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spA5xqyxJc .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spA5xqyxJc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spA5xqyxJc .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spA5xqyxJc .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spA5xqyxJc .copyright > p {
  text-align: center;
}
.cid-spEaWrg5wL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaWrg5wL .nav-item,
.cid-spEaWrg5wL .nav-link,
.cid-spEaWrg5wL .navbar-caption {
  font-weight: normal;
}
.cid-spEaWrg5wL .nav-item:focus,
.cid-spEaWrg5wL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEaWrg5wL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEaWrg5wL .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaWrg5wL .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEaWrg5wL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEaWrg5wL .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEaWrg5wL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEaWrg5wL .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-spEaWrg5wL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEaWrg5wL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEaWrg5wL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEaWrg5wL .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEaWrg5wL .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEaWrg5wL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEaWrg5wL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEaWrg5wL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEaWrg5wL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEaWrg5wL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEaWrg5wL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEaWrg5wL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEaWrg5wL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEaWrg5wL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEaWrg5wL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEaWrg5wL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEaWrg5wL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEaWrg5wL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEaWrg5wL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEaWrg5wL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEaWrg5wL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEaWrg5wL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEaWrg5wL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEaWrg5wL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEaWrg5wL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEaWrg5wL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEaWrg5wL .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEaWrg5wL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEaWrg5wL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEaWrg5wL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEaWrg5wL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEaWrg5wL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEaWrg5wL .dropdown-item.active,
.cid-spEaWrg5wL .dropdown-item:active {
  background-color: transparent;
}
.cid-spEaWrg5wL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEaWrg5wL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEaWrg5wL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEaWrg5wL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEaWrg5wL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEaWrg5wL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEaWrg5wL .navbar-buttons {
  text-align: center;
}
.cid-spEaWrg5wL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEaWrg5wL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEaWrg5wL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEaWrg5wL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaWrg5wL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaWrg5wL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEaWrg5wL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaWrg5wL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEaWrg5wL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEaWrg5wL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaWrg5wL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEaWrg5wL a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEaWrg5wL .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEaWrg5wL .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEaWrg5wL .soc-item {
  margin: .5rem .3rem;
}
.cid-spEaWrg5wL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEaWrg5wL .navbar {
    height: 77px;
  }
  .cid-spEaWrg5wL .navbar.opened {
    height: auto;
  }
  .cid-spEaWrg5wL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spA5Ywq2sS {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-spA5Ywq2sS .container-fluid {
  padding: 0 5rem;
}
.cid-spA5Ywq2sS .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spA5Ywq2sS .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-spA5Ywq2sS .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-spA5Ywq2sS .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-spA5Ywq2sS .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-spA5Ywq2sS .container-fluid {
    padding: 0 1rem;
  }
  .cid-spA5Ywq2sS .mbr-figure {
    margin-top: 1rem;
  }
  .cid-spA5Ywq2sS .mbr-section-title {
    text-align: center !important;
  }
  .cid-spA5Ywq2sS .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-spA5Ywq2sS .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-spA5Ywq2sS .mbr-section-subtitle,
.cid-spA5Ywq2sS .mbr-section-btn {
  text-align: left;
}
.cid-spA6Ch1cCe {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA6Ch1cCe .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA6Ch1cCe .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA6Ch1cCe .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spA6Ch1cCe .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spA6Ch1cCe .mbr-text {
  color: #8d97ad;
}
.cid-spA6Ch1cCe .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA6Ch1cCe .counter-container {
  padding-top: 1rem;
}
.cid-spA6Ch1cCe .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA6Ch1cCe .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA6Ch1cCe .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA6Ch1cCe .main-row {
    margin: 0;
  }
  .cid-spA6Ch1cCe .mbr-section-title,
  .cid-spA6Ch1cCe .mbr-text,
  .cid-spA6Ch1cCe .list,
  .cid-spA6Ch1cCe .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA6Ch1cCe .text-content {
    padding: 0;
  }
}
.cid-spA6Ch1cCe .mbr-section-title {
  color: #000000;
}
.cid-spA6Ch1cCe .mbr-text,
.cid-spA6Ch1cCe .mbr-section-btn {
  color: #000000;
}
.cid-spA6Ch1cCe .list {
  color: #000000;
}
.cid-spA6O6sJmw {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA6O6sJmw .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA6O6sJmw .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA6O6sJmw .text-content {
  padding-right: 1.5rem;
}
.cid-spA6O6sJmw .mbr-text {
  color: #8d97ad;
}
.cid-spA6O6sJmw .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA6O6sJmw .counter-container {
  padding-top: 1rem;
}
.cid-spA6O6sJmw .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA6O6sJmw .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA6O6sJmw .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA6O6sJmw .main-row {
    margin: 0;
  }
  .cid-spA6O6sJmw .mbr-section-title,
  .cid-spA6O6sJmw .mbr-text,
  .cid-spA6O6sJmw .list,
  .cid-spA6O6sJmw .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA6O6sJmw .text-content {
    padding: 0;
  }
}
.cid-spA6O6sJmw .mbr-section-title {
  color: #000000;
}
.cid-spA6O6sJmw .mbr-text,
.cid-spA6O6sJmw .mbr-section-btn {
  color: #000000;
}
.cid-spA6O6sJmw .list {
  color: #000000;
}
.cid-spA7sU9MS4 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA7sU9MS4 .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA7sU9MS4 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA7sU9MS4 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spA7sU9MS4 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spA7sU9MS4 .mbr-text {
  color: #8d97ad;
}
.cid-spA7sU9MS4 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA7sU9MS4 .counter-container {
  padding-top: 1rem;
}
.cid-spA7sU9MS4 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA7sU9MS4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA7sU9MS4 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA7sU9MS4 .main-row {
    margin: 0;
  }
  .cid-spA7sU9MS4 .mbr-section-title,
  .cid-spA7sU9MS4 .mbr-text,
  .cid-spA7sU9MS4 .list,
  .cid-spA7sU9MS4 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA7sU9MS4 .text-content {
    padding: 0;
  }
}
.cid-spA7sU9MS4 .mbr-section-title {
  color: #000000;
}
.cid-spA7sU9MS4 .mbr-text,
.cid-spA7sU9MS4 .mbr-section-btn {
  color: #000000;
}
.cid-spA7sU9MS4 .list {
  color: #000000;
}
.cid-spA7uzhCMf {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spA7uzhCMf .content {
    text-align: center;
  }
  .cid-spA7uzhCMf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spA7uzhCMf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spA7uzhCMf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spA7uzhCMf .media-wrap img {
  height: 6rem;
}
.cid-spA7uzhCMf .mbr-text {
  color: #8d97ad;
}
.cid-spA7uzhCMf .p-title {
  font-size: 17px;
}
.cid-spA7uzhCMf .p-title span {
  color: #111111;
}
.cid-spA7uzhCMf .title-card {
  font-size: 1.3rem;
}
.cid-spA7uzhCMf .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spA7uzhCMf .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spA7uzhCMf .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spA7uzhCMf .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spA7uzhCMf .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spA7uzhCMf .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spA7uzhCMf .copyright img {
  margin-right: 10px;
}
.cid-spA7uzhCMf .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #c1c1c1;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spA7uzhCMf .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spA7uzhCMf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spA7uzhCMf .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spA7uzhCMf .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spA7uzhCMf .copyright > p {
  text-align: center;
}
.cid-spEaRql997 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaRql997 .nav-item,
.cid-spEaRql997 .nav-link,
.cid-spEaRql997 .navbar-caption {
  font-weight: normal;
}
.cid-spEaRql997 .nav-item:focus,
.cid-spEaRql997 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEaRql997 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEaRql997 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaRql997 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEaRql997 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEaRql997 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEaRql997 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEaRql997 .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-spEaRql997 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEaRql997 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEaRql997 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEaRql997 .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEaRql997 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEaRql997 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEaRql997 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEaRql997 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEaRql997 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEaRql997 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEaRql997 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEaRql997 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEaRql997 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEaRql997 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEaRql997 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEaRql997 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEaRql997 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEaRql997 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEaRql997 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEaRql997 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEaRql997 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEaRql997 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEaRql997 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEaRql997 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEaRql997 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEaRql997 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEaRql997 .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEaRql997 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEaRql997 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEaRql997 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEaRql997 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEaRql997 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEaRql997 .dropdown-item.active,
.cid-spEaRql997 .dropdown-item:active {
  background-color: transparent;
}
.cid-spEaRql997 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEaRql997 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEaRql997 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEaRql997 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEaRql997 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEaRql997 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEaRql997 .navbar-buttons {
  text-align: center;
}
.cid-spEaRql997 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEaRql997 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEaRql997 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEaRql997 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaRql997 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaRql997 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEaRql997 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaRql997 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEaRql997 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEaRql997 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaRql997 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEaRql997 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEaRql997 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEaRql997 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEaRql997 .soc-item {
  margin: .5rem .3rem;
}
.cid-spEaRql997 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEaRql997 .navbar {
    height: 77px;
  }
  .cid-spEaRql997 .navbar.opened {
    height: auto;
  }
  .cid-spEaRql997 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spA8UM375s {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-spA8UM375s .container-fluid {
  padding: 0 5rem;
}
.cid-spA8UM375s .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spA8UM375s .mbr-section-title {
  padding-bottom: 2rem;
  color: #3e4555;
}
.cid-spA8UM375s .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-spA8UM375s .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-spA8UM375s .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-spA8UM375s .container-fluid {
    padding: 0 1rem;
  }
  .cid-spA8UM375s .mbr-figure {
    margin-top: 1rem;
  }
  .cid-spA8UM375s .mbr-section-title {
    text-align: center !important;
  }
  .cid-spA8UM375s .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-spA8UM375s .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-spA8UM375s .mbr-section-subtitle,
.cid-spA8UM375s .mbr-section-btn {
  text-align: left;
}
.cid-spA930h4u4 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA930h4u4 .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA930h4u4 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA930h4u4 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spA930h4u4 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spA930h4u4 .mbr-text {
  color: #8d97ad;
}
.cid-spA930h4u4 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA930h4u4 .counter-container {
  padding-top: 1rem;
}
.cid-spA930h4u4 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA930h4u4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA930h4u4 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA930h4u4 .main-row {
    margin: 0;
  }
  .cid-spA930h4u4 .mbr-section-title,
  .cid-spA930h4u4 .mbr-text,
  .cid-spA930h4u4 .list,
  .cid-spA930h4u4 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA930h4u4 .text-content {
    padding: 0;
  }
}
.cid-spA930h4u4 .mbr-section-title {
  color: #000000;
}
.cid-spA930h4u4 .mbr-text,
.cid-spA930h4u4 .mbr-section-btn {
  color: #000000;
}
.cid-spA930h4u4 .list {
  color: #000000;
}
.cid-spA9Mqe1Bl {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spA9Mqe1Bl .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spA9Mqe1Bl .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spA9Mqe1Bl .text-content {
  padding-right: 1.5rem;
}
.cid-spA9Mqe1Bl .mbr-text {
  color: #8d97ad;
}
.cid-spA9Mqe1Bl .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spA9Mqe1Bl .counter-container {
  padding-top: 1rem;
}
.cid-spA9Mqe1Bl .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spA9Mqe1Bl .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spA9Mqe1Bl .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spA9Mqe1Bl .main-row {
    margin: 0;
  }
  .cid-spA9Mqe1Bl .mbr-section-title,
  .cid-spA9Mqe1Bl .mbr-text,
  .cid-spA9Mqe1Bl .list,
  .cid-spA9Mqe1Bl .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spA9Mqe1Bl .text-content {
    padding: 0;
  }
}
.cid-spA9Mqe1Bl .mbr-section-title {
  color: #000000;
}
.cid-spA9Mqe1Bl .mbr-text,
.cid-spA9Mqe1Bl .mbr-section-btn {
  color: #000000;
}
.cid-spA9Mqe1Bl .list {
  color: #000000;
}
.cid-spAaac3KLE {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spAaac3KLE .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spAaac3KLE .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spAaac3KLE .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spAaac3KLE .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spAaac3KLE .mbr-text {
  color: #8d97ad;
}
.cid-spAaac3KLE .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spAaac3KLE .counter-container {
  padding-top: 1rem;
}
.cid-spAaac3KLE .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spAaac3KLE .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spAaac3KLE .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spAaac3KLE .main-row {
    margin: 0;
  }
  .cid-spAaac3KLE .mbr-section-title,
  .cid-spAaac3KLE .mbr-text,
  .cid-spAaac3KLE .list,
  .cid-spAaac3KLE .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spAaac3KLE .text-content {
    padding: 0;
  }
}
.cid-spAaac3KLE .mbr-section-title {
  color: #000000;
}
.cid-spAaac3KLE .mbr-text,
.cid-spAaac3KLE .mbr-section-btn {
  color: #000000;
}
.cid-spAaac3KLE .list {
  color: #000000;
}
.cid-spAaDOgokU {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spAaDOgokU .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spAaDOgokU .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spAaDOgokU .text-content {
  padding-right: 1.5rem;
}
.cid-spAaDOgokU .mbr-text {
  color: #8d97ad;
}
.cid-spAaDOgokU .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spAaDOgokU .counter-container {
  padding-top: 1rem;
}
.cid-spAaDOgokU .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spAaDOgokU .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spAaDOgokU .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spAaDOgokU .main-row {
    margin: 0;
  }
  .cid-spAaDOgokU .mbr-section-title,
  .cid-spAaDOgokU .mbr-text,
  .cid-spAaDOgokU .list,
  .cid-spAaDOgokU .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spAaDOgokU .text-content {
    padding: 0;
  }
}
.cid-spAaDOgokU .mbr-section-title {
  color: #000000;
}
.cid-spAaDOgokU .mbr-text,
.cid-spAaDOgokU .mbr-section-btn {
  color: #000000;
}
.cid-spAaDOgokU .list {
  color: #000000;
}
.cid-spAaVnVaAb {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spAaVnVaAb .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spAaVnVaAb .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spAaVnVaAb .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-spAaVnVaAb .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-spAaVnVaAb .mbr-text {
  color: #8d97ad;
}
.cid-spAaVnVaAb .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spAaVnVaAb .counter-container {
  padding-top: 1rem;
}
.cid-spAaVnVaAb .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spAaVnVaAb .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spAaVnVaAb .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spAaVnVaAb .main-row {
    margin: 0;
  }
  .cid-spAaVnVaAb .mbr-section-title,
  .cid-spAaVnVaAb .mbr-text,
  .cid-spAaVnVaAb .list,
  .cid-spAaVnVaAb .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spAaVnVaAb .text-content {
    padding: 0;
  }
}
.cid-spAaVnVaAb .mbr-section-title {
  color: #000000;
}
.cid-spAaVnVaAb .mbr-text,
.cid-spAaVnVaAb .mbr-section-btn {
  color: #000000;
}
.cid-spAaVnVaAb .list {
  color: #000000;
}
.cid-spAbg7CasM {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/transparan-1024x768.png");
}
.cid-spAbg7CasM .mbr-overlay {
  background: linear-gradient(90deg, #188ef4, #c1c1c1);
}
.cid-spAbg7CasM .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-spAbg7CasM .text-content {
  padding-right: 1.5rem;
}
.cid-spAbg7CasM .mbr-text {
  color: #8d97ad;
}
.cid-spAbg7CasM .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-spAbg7CasM .counter-container {
  padding-top: 1rem;
}
.cid-spAbg7CasM .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-spAbg7CasM .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-spAbg7CasM .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-spAbg7CasM .main-row {
    margin: 0;
  }
  .cid-spAbg7CasM .mbr-section-title,
  .cid-spAbg7CasM .mbr-text,
  .cid-spAbg7CasM .list,
  .cid-spAbg7CasM .mbr-section-btn {
    text-align: center !important;
  }
  .cid-spAbg7CasM .text-content {
    padding: 0;
  }
}
.cid-spAbg7CasM .mbr-section-title {
  color: #000000;
}
.cid-spAbg7CasM .mbr-text,
.cid-spAbg7CasM .mbr-section-btn {
  color: #000000;
}
.cid-spAbg7CasM .list {
  color: #000000;
}
.cid-spAbv66BkD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spAbv66BkD .content {
    text-align: center;
  }
  .cid-spAbv66BkD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spAbv66BkD .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spAbv66BkD .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spAbv66BkD .media-wrap img {
  height: 6rem;
}
.cid-spAbv66BkD .mbr-text {
  color: #8d97ad;
}
.cid-spAbv66BkD .p-title {
  font-size: 17px;
}
.cid-spAbv66BkD .p-title span {
  color: #111111;
}
.cid-spAbv66BkD .title-card {
  font-size: 1.3rem;
}
.cid-spAbv66BkD .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spAbv66BkD .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spAbv66BkD .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spAbv66BkD .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spAbv66BkD .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spAbv66BkD .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spAbv66BkD .copyright img {
  margin-right: 10px;
}
.cid-spAbv66BkD .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #c1c1c1;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spAbv66BkD .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spAbv66BkD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spAbv66BkD .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spAbv66BkD .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spAbv66BkD .copyright > p {
  text-align: center;
}
.cid-spEaNDersT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaNDersT .nav-item,
.cid-spEaNDersT .nav-link,
.cid-spEaNDersT .navbar-caption {
  font-weight: normal;
}
.cid-spEaNDersT .nav-item:focus,
.cid-spEaNDersT .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEaNDersT .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEaNDersT .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaNDersT .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEaNDersT .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEaNDersT .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEaNDersT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEaNDersT .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-spEaNDersT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEaNDersT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEaNDersT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEaNDersT .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEaNDersT .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEaNDersT .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEaNDersT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEaNDersT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEaNDersT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEaNDersT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEaNDersT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEaNDersT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEaNDersT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEaNDersT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEaNDersT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEaNDersT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEaNDersT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEaNDersT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEaNDersT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEaNDersT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEaNDersT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEaNDersT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEaNDersT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEaNDersT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEaNDersT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEaNDersT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEaNDersT .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEaNDersT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEaNDersT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEaNDersT .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEaNDersT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEaNDersT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEaNDersT .dropdown-item.active,
.cid-spEaNDersT .dropdown-item:active {
  background-color: transparent;
}
.cid-spEaNDersT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEaNDersT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEaNDersT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEaNDersT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEaNDersT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEaNDersT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEaNDersT .navbar-buttons {
  text-align: center;
}
.cid-spEaNDersT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEaNDersT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEaNDersT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEaNDersT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaNDersT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaNDersT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEaNDersT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaNDersT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEaNDersT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEaNDersT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaNDersT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEaNDersT a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEaNDersT .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEaNDersT .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEaNDersT .soc-item {
  margin: .5rem .3rem;
}
.cid-spEaNDersT .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEaNDersT .navbar {
    height: 77px;
  }
  .cid-spEaNDersT .navbar.opened {
    height: auto;
  }
  .cid-spEaNDersT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spAcakmkG2 {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-spAcakmkG2 .mbr-text {
  color: #000000;
}
.cid-spAcvabdnZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spAcvabdnZ .content {
    text-align: center;
  }
  .cid-spAcvabdnZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spAcvabdnZ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spAcvabdnZ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spAcvabdnZ .media-wrap img {
  height: 6rem;
}
.cid-spAcvabdnZ .mbr-text {
  color: #8d97ad;
}
.cid-spAcvabdnZ .p-title {
  font-size: 17px;
}
.cid-spAcvabdnZ .p-title span {
  color: #111111;
}
.cid-spAcvabdnZ .title-card {
  font-size: 1.3rem;
}
.cid-spAcvabdnZ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spAcvabdnZ .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spAcvabdnZ .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spAcvabdnZ .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spAcvabdnZ .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spAcvabdnZ .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spAcvabdnZ .copyright img {
  margin-right: 10px;
}
.cid-spAcvabdnZ .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spAcvabdnZ .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spAcvabdnZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spAcvabdnZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spAcvabdnZ .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spAcvabdnZ .copyright > p {
  text-align: center;
}
.cid-spEaJJqkyI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaJJqkyI .nav-item,
.cid-spEaJJqkyI .nav-link,
.cid-spEaJJqkyI .navbar-caption {
  font-weight: normal;
}
.cid-spEaJJqkyI .nav-item:focus,
.cid-spEaJJqkyI .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEaJJqkyI .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEaJJqkyI .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaJJqkyI .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEaJJqkyI .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEaJJqkyI .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEaJJqkyI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEaJJqkyI .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-spEaJJqkyI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEaJJqkyI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEaJJqkyI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEaJJqkyI .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEaJJqkyI .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEaJJqkyI .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEaJJqkyI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEaJJqkyI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEaJJqkyI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEaJJqkyI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEaJJqkyI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEaJJqkyI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEaJJqkyI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEaJJqkyI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEaJJqkyI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEaJJqkyI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEaJJqkyI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEaJJqkyI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEaJJqkyI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEaJJqkyI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEaJJqkyI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEaJJqkyI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEaJJqkyI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEaJJqkyI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEaJJqkyI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEaJJqkyI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEaJJqkyI .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEaJJqkyI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEaJJqkyI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEaJJqkyI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEaJJqkyI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEaJJqkyI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEaJJqkyI .dropdown-item.active,
.cid-spEaJJqkyI .dropdown-item:active {
  background-color: transparent;
}
.cid-spEaJJqkyI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEaJJqkyI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEaJJqkyI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEaJJqkyI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEaJJqkyI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEaJJqkyI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEaJJqkyI .navbar-buttons {
  text-align: center;
}
.cid-spEaJJqkyI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEaJJqkyI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEaJJqkyI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEaJJqkyI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaJJqkyI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaJJqkyI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEaJJqkyI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaJJqkyI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEaJJqkyI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEaJJqkyI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaJJqkyI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEaJJqkyI a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEaJJqkyI .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEaJJqkyI .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEaJJqkyI .soc-item {
  margin: .5rem .3rem;
}
.cid-spEaJJqkyI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEaJJqkyI .navbar {
    height: 77px;
  }
  .cid-spEaJJqkyI .navbar.opened {
    height: auto;
  }
  .cid-spEaJJqkyI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spAdelPjt8 {
  padding-top: 150px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-spAdelPjt8 .google-map {
  height: 25rem;
  position: relative;
}
.cid-spAdelPjt8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-spAdelPjt8 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-spAdelPjt8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-spAdelPjt8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-spAdelPjt8 .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-spAdelPjt8 .form-container {
  padding: 3rem;
}
.cid-spAdelPjt8 .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-spAdelPjt8 .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #2bdc9d, #1dc9cb);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-spAdelPjt8 .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-spAdelPjt8 .form-group,
  .cid-spAdelPjt8 .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-spAdelPjt8 .form-control {
  border-radius: .25rem !important;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-spAdelPjt8 textarea.form-control {
  min-height: 170px;
}
@media (max-width: 767px) {
  .cid-spAdelPjt8 .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-spAdelPjt8 .text-block {
    margin-bottom: 2rem;
  }
  .cid-spAdelPjt8 .wrapper {
    margin-top: 0;
  }
}
.cid-spAdelPjt8 .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-spAdelPjt8 .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-spAdelPjt8 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spAdelPjt8 .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-spAdelPjt8 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-spAdelPjt8 .social-list a:hover {
  opacity: 1;
}
.cid-spAf7g8nC4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spAf7g8nC4 .content {
    text-align: center;
  }
  .cid-spAf7g8nC4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spAf7g8nC4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spAf7g8nC4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spAf7g8nC4 .media-wrap img {
  height: 6rem;
}
.cid-spAf7g8nC4 .mbr-text {
  color: #8d97ad;
}
.cid-spAf7g8nC4 .p-title {
  font-size: 17px;
}
.cid-spAf7g8nC4 .p-title span {
  color: #111111;
}
.cid-spAf7g8nC4 .title-card {
  font-size: 1.3rem;
}
.cid-spAf7g8nC4 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spAf7g8nC4 .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spAf7g8nC4 .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spAf7g8nC4 .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spAf7g8nC4 .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spAf7g8nC4 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spAf7g8nC4 .copyright img {
  margin-right: 10px;
}
.cid-spAf7g8nC4 .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spAf7g8nC4 .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spAf7g8nC4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spAf7g8nC4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spAf7g8nC4 .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spAf7g8nC4 .copyright > p {
  text-align: center;
}
.cid-spEaEHDHTC .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaEHDHTC .nav-item,
.cid-spEaEHDHTC .nav-link,
.cid-spEaEHDHTC .navbar-caption {
  font-weight: normal;
}
.cid-spEaEHDHTC .nav-item:focus,
.cid-spEaEHDHTC .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEaEHDHTC .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEaEHDHTC .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEaEHDHTC .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEaEHDHTC .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEaEHDHTC .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEaEHDHTC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEaEHDHTC .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-spEaEHDHTC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEaEHDHTC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEaEHDHTC .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEaEHDHTC .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEaEHDHTC .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEaEHDHTC .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEaEHDHTC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEaEHDHTC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEaEHDHTC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEaEHDHTC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEaEHDHTC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEaEHDHTC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEaEHDHTC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEaEHDHTC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEaEHDHTC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEaEHDHTC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEaEHDHTC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEaEHDHTC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEaEHDHTC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEaEHDHTC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEaEHDHTC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEaEHDHTC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEaEHDHTC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEaEHDHTC .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEaEHDHTC .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEaEHDHTC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEaEHDHTC .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEaEHDHTC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEaEHDHTC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEaEHDHTC .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEaEHDHTC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEaEHDHTC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEaEHDHTC .dropdown-item.active,
.cid-spEaEHDHTC .dropdown-item:active {
  background-color: transparent;
}
.cid-spEaEHDHTC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEaEHDHTC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEaEHDHTC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEaEHDHTC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEaEHDHTC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEaEHDHTC ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEaEHDHTC .navbar-buttons {
  text-align: center;
}
.cid-spEaEHDHTC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEaEHDHTC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEaEHDHTC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEaEHDHTC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaEHDHTC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEaEHDHTC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEaEHDHTC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaEHDHTC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEaEHDHTC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEaEHDHTC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEaEHDHTC .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEaEHDHTC a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEaEHDHTC .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEaEHDHTC .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEaEHDHTC .soc-item {
  margin: .5rem .3rem;
}
.cid-spEaEHDHTC .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEaEHDHTC .navbar {
    height: 77px;
  }
  .cid-spEaEHDHTC .navbar.opened {
    height: auto;
  }
  .cid-spEaEHDHTC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spAi6Qo8o1 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spAi6Qo8o1 .mbr-text {
  color: #8d97ad;
}
.cid-spAi6Qo8o1 .blockquote-quote svg {
  height: 40px;
  width: 40px;
  fill: #8d97ad;
}
.cid-spAi6Qo8o1 .signature > span {
  color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spAi6Qo8o1 .blockquote-quote {
    text-align: left;
  }
  .cid-spAi6Qo8o1 .signature {
    text-align: left;
  }
}
.cid-spAfEvJlPQ {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-spAfEvJlPQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-spAiQhJzXu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spAiQhJzXu .content {
    text-align: center;
  }
  .cid-spAiQhJzXu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spAiQhJzXu .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spAiQhJzXu .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spAiQhJzXu .media-wrap img {
  height: 6rem;
}
.cid-spAiQhJzXu .mbr-text {
  color: #8d97ad;
}
.cid-spAiQhJzXu .p-title {
  font-size: 17px;
}
.cid-spAiQhJzXu .p-title span {
  color: #111111;
}
.cid-spAiQhJzXu .title-card {
  font-size: 1.3rem;
}
.cid-spAiQhJzXu .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spAiQhJzXu .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spAiQhJzXu .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spAiQhJzXu .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spAiQhJzXu .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spAiQhJzXu .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spAiQhJzXu .copyright img {
  margin-right: 10px;
}
.cid-spAiQhJzXu .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spAiQhJzXu .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spAiQhJzXu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spAiQhJzXu .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spAiQhJzXu .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spAiQhJzXu .copyright > p {
  text-align: center;
}
.cid-spEazsjzxR .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEazsjzxR .nav-item,
.cid-spEazsjzxR .nav-link,
.cid-spEazsjzxR .navbar-caption {
  font-weight: normal;
}
.cid-spEazsjzxR .nav-item:focus,
.cid-spEazsjzxR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-spEazsjzxR .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spEazsjzxR .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spEazsjzxR .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spEazsjzxR .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spEazsjzxR .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spEazsjzxR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spEazsjzxR .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-spEazsjzxR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spEazsjzxR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spEazsjzxR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #011842;
}
.cid-spEazsjzxR .navbar.opened {
  transition: all .3s;
  background: #011842 !important;
}
.cid-spEazsjzxR .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-spEazsjzxR .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spEazsjzxR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spEazsjzxR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spEazsjzxR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.7rem - 1rem);
  }
}
.cid-spEazsjzxR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spEazsjzxR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spEazsjzxR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spEazsjzxR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spEazsjzxR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spEazsjzxR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spEazsjzxR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spEazsjzxR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spEazsjzxR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spEazsjzxR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spEazsjzxR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spEazsjzxR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spEazsjzxR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spEazsjzxR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spEazsjzxR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spEazsjzxR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spEazsjzxR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spEazsjzxR .navbar.navbar-short {
  background: #011842 !important;
  min-height: 60px;
}
.cid-spEazsjzxR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spEazsjzxR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spEazsjzxR .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spEazsjzxR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spEazsjzxR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spEazsjzxR .dropdown-item.active,
.cid-spEazsjzxR .dropdown-item:active {
  background-color: transparent;
}
.cid-spEazsjzxR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spEazsjzxR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spEazsjzxR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #011842;
}
.cid-spEazsjzxR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spEazsjzxR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spEazsjzxR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spEazsjzxR .navbar-buttons {
  text-align: center;
}
.cid-spEazsjzxR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spEazsjzxR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cccccc;
}
.cid-spEazsjzxR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spEazsjzxR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spEazsjzxR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spEazsjzxR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spEazsjzxR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEazsjzxR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spEazsjzxR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spEazsjzxR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spEazsjzxR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spEazsjzxR a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spEazsjzxR .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spEazsjzxR .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spEazsjzxR .soc-item {
  margin: .5rem .3rem;
}
.cid-spEazsjzxR .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spEazsjzxR .navbar {
    height: 77px;
  }
  .cid-spEazsjzxR .navbar.opened {
    height: auto;
  }
  .cid-spEazsjzxR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spAZ3Wu57n {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spAZ3Wu57n .mbr-text {
  color: #000000;
}
.cid-spAXQm0jPO {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-spAXQm0jPO .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-spAYYD4j78 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spAYYD4j78 .content {
    text-align: center;
  }
  .cid-spAYYD4j78 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spAYYD4j78 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-spAYYD4j78 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spAYYD4j78 .media-wrap img {
  height: 6rem;
}
.cid-spAYYD4j78 .mbr-text {
  color: #8d97ad;
}
.cid-spAYYD4j78 .p-title {
  font-size: 17px;
}
.cid-spAYYD4j78 .p-title span {
  color: #111111;
}
.cid-spAYYD4j78 .title-card {
  font-size: 1.3rem;
}
.cid-spAYYD4j78 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spAYYD4j78 .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-spAYYD4j78 .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-spAYYD4j78 .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-spAYYD4j78 .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-spAYYD4j78 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spAYYD4j78 .copyright img {
  margin-right: 10px;
}
.cid-spAYYD4j78 .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spAYYD4j78 .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-spAYYD4j78 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-spAYYD4j78 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-spAYYD4j78 .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spAYYD4j78 .copyright > p {
  text-align: center;
}
