@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: #f20049 !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: #f20049 !important;
  border-color: #f20049 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #a50032 !important;
  border-color: #a50032 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #a50032 !important;
  border-color: #a50032 !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: #8c002a !important;
  color: #8c002a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #f20049 !important;
  border-color: #f20049 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f20049 !important;
  border-color: #f20049 !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: #f20049 !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: #8c002a !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: #f20049;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
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: #ffbfd2;
}
.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*/
.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;
}
@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;
}
.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-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSZzuVL6AO {
  background-color: #000000;
}
.cid-qSZzuVL6AO .mbr-section-title,
.cid-qSZzuVL6AO .mbr-section-subtitle {
  color: #000000;
}
.cid-qSZzuVL6AO .mbr-section-text {
  color: #232323;
}
.cid-qSZzuVL6AO .mbr-text,
.cid-qSZzuVL6AO .typed-text,
.cid-qSZzuVL6AO .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-qSZzuVL6AO .btn {
  margin-left: 4px !important;
}
.cid-qSZzuVL6AO .animated-element {
  color: #f20049;
}
.cid-qSZzuVL6AO .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #f20049;
}
.cid-qSZzuVL6AO .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-qSZzuVL6AO .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSZzuVL6AO .typed-text,
  .cid-qSZzuVL6AO .mbr-section-subtitle,
  .cid-qSZzuVL6AO .mbr-section-text,
  .cid-qSZzuVL6AO .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-qSZzuVL6AO .mbr-section-subtitle,
.cid-qSZzuVL6AO .typed-text {
  color: #ffffff;
}
.cid-qSZzuVL6AO .mbr-section-text,
.cid-qSZzuVL6AO .mbr-section-btn {
  color: #ffffff;
}
.cid-qSZzwysQvT {
  padding-top: 40px;
  background-image: url("../../../assets/images/reparation-smartphones-aubgiphone-yonne4-2000x2667.jpg");
}
.cid-qSZzwysQvT .container {
  margin-bottom: 15%;
}
.cid-qSZzwysQvT .content-container .btn-bgr {
  z-index: 0;
}
.cid-qSZzwysQvT .container-boxes {
  padding-bottom: 0px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #f4f8fa;
}
.cid-qSZzwysQvT .icon-block-top span {
  background-color: #f20049;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
}
.cid-qSZzwysQvT .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-qSZzwysQvT .box-item:first-child {
  background-color: #c1c1c1;
  margin-top: -150px;
}
.cid-qSZzwysQvT .box-item:nth-child(2) {
  background-color: #52e5e5;
}
.cid-qSZzwysQvT .box-item:last-child {
  background-color: #bf5c75;
  margin-right: 0;
}
.cid-qSZzwysQvT .mbr-text,
.cid-qSZzwysQvT .box-item-text {
  color: #8d97ad;
}
.cid-qSZzwysQvT .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qSZzwysQvT .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qSZzwysQvT .box-list li:last-child {
  border-bottom: none;
}
.cid-qSZzwysQvT .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qSZzwysQvT .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-qSZzwysQvT .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-qSZzwysQvT .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qSZzwysQvT .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-qSZzwysQvT .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-qSZzwysQvT .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-qSZzwysQvT .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-qSZzwysQvT .mbr-text {
  color: #f20049;
}
.cid-qSZzwysQvT .box-item-text,
.cid-qSZzwysQvT .mbr-section-btn {
  color: #ffffff;
}
.cid-qT3VnGwHHn {
  padding-top: 0px;
  background-image: url("../../../assets/images/reparation-smartphones-aubgiphone-yonne10-2000x1500.jpg");
}
.cid-qT3VnGwHHn .container {
  margin-bottom: 15%;
}
.cid-qT3VnGwHHn .content-container .btn-bgr {
  z-index: 0;
}
.cid-qT3VnGwHHn .container-boxes {
  padding-bottom: 0px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #f4f8fa;
}
.cid-qT3VnGwHHn .icon-block-top span {
  background-color: #f20049;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
}
.cid-qT3VnGwHHn .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-qT3VnGwHHn .box-item:first-child {
  background-color: #ff7b9c;
  margin-top: -150px;
}
.cid-qT3VnGwHHn .box-item:nth-child(2) {
  background-color: #5eeebb;
}
.cid-qT3VnGwHHn .box-item:last-child {
  background-color: #51aafa;
  margin-right: 0;
}
.cid-qT3VnGwHHn .mbr-text,
.cid-qT3VnGwHHn .box-item-text {
  color: #8d97ad;
}
.cid-qT3VnGwHHn .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qT3VnGwHHn .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qT3VnGwHHn .box-list li:last-child {
  border-bottom: none;
}
.cid-qT3VnGwHHn .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qT3VnGwHHn .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-qT3VnGwHHn .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-qT3VnGwHHn .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qT3VnGwHHn .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-qT3VnGwHHn .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-qT3VnGwHHn .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-qT3VnGwHHn .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-qT3VnGwHHn .box-item-text,
.cid-qT3VnGwHHn .mbr-section-btn {
  color: #ffffff;
}
.cid-qT4mWLqnWA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/reparation-smartphones-aubgiphone-yonne1-2000x2667.jpg");
}
.cid-qT4mWLqnWA .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-qT4mWLqnWA .mbr-section-title {
  margin: 0;
  color: #f20049;
}
.cid-qT4mWLqnWA .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qT4mWLqnWA .card-img span {
  color: #188ef4;
}
.cid-qT4mWLqnWA .row-item {
  margin-bottom: 2rem;
}
.cid-qT4mWLqnWA .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-qT4mWLqnWA .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-qT4mWLqnWA .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-qT4mWLqnWA .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qT4nxT0aOJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qT4nxT0aOJ .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-qT4nxT0aOJ .mbr-section-title {
  margin: 0;
}
.cid-qT4nxT0aOJ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qT4nxT0aOJ .card-img span {
  color: #188ef4;
}
.cid-qT4nxT0aOJ .row-item {
  margin-bottom: 2rem;
}
.cid-qT4nxT0aOJ .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-qT4nxT0aOJ .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-qT4nxT0aOJ .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-qT4nxT0aOJ .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qSZzJPwYMB {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/aubgiphone-reparation-800x716.jpg");
}
.cid-qSZzJPwYMB .row {
  justify-content: flex-end;
  align-items: stretch;
}
.cid-qSZzJPwYMB .content-panel {
  padding: 2rem;
  background-color: #08579f;
  border-radius: .25rem;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qSZzJPwYMB .content-block {
  color: #efefef;
}
.cid-qSZzJPwYMB .input-wrap,
.cid-qSZzJPwYMB .form-group {
  padding-left: .5rem;
  padding-right: .5rem;
}
.cid-qSZzJPwYMB .field,
.cid-qSZzJPwYMB .form-control {
  border-radius: .25rem !important;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 768px) {
  .cid-qSZzJPwYMB .main-row {
    flex-direction: column-reverse;
  }
  .cid-qSZzJPwYMB .text-block {
    margin-bottom: 2rem;
  }
}
.cid-qSZzMWp5Nv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qSZzMWp5Nv .mbr-overlay {
  background: #efefef;
}
.cid-qSZzMWp5Nv .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qSZzMWp5Nv .client-name {
  color: #8d97ad;
}
.cid-qSZzMWp5Nv .wrap-img {
  padding-bottom: 1rem;
}
.cid-qSZzMWp5Nv .wrap-img img {
  max-width: 100%;
}
.cid-qSZzMWp5Nv .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qSZzyzGVSs {
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/aubgiphone-logo-203x80.jpg");
  overflow: hidden !important;
}
.cid-qSZzyzGVSs .mbr-section-subtitle {
  font-weight: 400;
}
.cid-qSZzyzGVSs .mbr-section-title {
  padding-bottom: 2rem;
}
.cid-qSZzyzGVSs .img-block {
  align-self: center;
}
.cid-qSZzyzGVSs .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
.cid-qSZzyzGVSs .mbr-form {
  margin-bottom: 3rem;
}
.cid-qSZzyzGVSs .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 0px;
  font-size: 18px;
}
.cid-qSZzyzGVSs a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-qSZzyzGVSs .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-qSZzyzGVSs .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-qSZzyzGVSs .mbr-subscribe .input-group-btn button,
.cid-qSZzyzGVSs .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-qSZzyzGVSs .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSZzyzGVSs input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-qSZzyzGVSs .input-group-btn {
    width: 100%;
  }
  .cid-qSZzyzGVSs .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-qSZzyzGVSs .mbr-form {
    margin-bottom: 0;
  }
  .cid-qSZzyzGVSs .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-qSZzyzGVSs .input-group-btn a.btn {
    width: 100%;
  }
  .cid-qSZzyzGVSs .input-group-btn {
    width: calc(92%);
  }
  .cid-qSZzyzGVSs .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-qSZzyzGVSs .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-qSZzyzGVSs .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }
  .cid-qSZzyzGVSs .input-group span {
    display: inline;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-qSZzyzGVSs .input-group-btn button,
  .cid-qSZzyzGVSs .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-qSZzyzGVSs .input-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
  .cid-qSZzyzGVSs .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-qSZzyzGVSs .mbr-subscribe > * {
    margin: 0 0rem;
  }
  .cid-qSZzyzGVSs .input-group-btn a.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-qSZzyzGVSs .input-group-btn button.btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
}
.cid-qSZzCytWwC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/aubgiphone-vente-iphone-1-500x500.jpg");
}
.cid-qSZzCytWwC .main-row {
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-qSZzCytWwC .section-text {
  color: #8d97ad;
}
.cid-qSZzCytWwC .mbr-overlay {
  background: linear-gradient(90deg, #cccccc, #ffffff);
}
.cid-qSZzCytWwC .media-content {
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-qSZzCytWwC .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-qSZzCytWwC .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-qSZzCytWwC .mbr-figure .card-text {
  padding: 2rem;
}
.cid-qSZzCytWwC .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-qSZzCytWwC .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-qSZzCytWwC .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-qSZzCytWwC .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: #333333;
}
@media (max-width: 767px) {
  .cid-qSZzCytWwC .mbr-text {
    text-align: center;
  }
}
.cid-qT4jSzQQbW {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-qT4jSzQQbW .mbr-section-title {
  color: #444444;
}
.cid-qT4jSzQQbW .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qT4jSzQQbW .mbr-text {
  color: #8d97ad;
}
.cid-qT4jSzQQbW .nav {
  border: none;
}
.cid-qT4jSzQQbW .nav-tabs {
  width: 100%;
}
.cid-qT4jSzQQbW .nav-tabs .nav-item {
  margin-bottom: 1rem;
  width: 100%;
}
.cid-qT4jSzQQbW .card-img {
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-qT4jSzQQbW .nav-tabs .nav-link {
  display: flex;
  color: #ffffff;
  box-sizing: border-box;
  font-style: normal;
  background: #f20049;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-qT4jSzQQbW .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-qT4jSzQQbW .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
}
.cid-qT4jSzQQbW .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-qT4jSzQQbW .nav-item {
    display: table-row !important;
  }
}
.cid-qT4prsmDXi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/reparation-smartphones-aubgiphone-yonne4-2000x2667.jpg");
}
.cid-qT4prsmDXi .carousel-item {
  justify-content: center;
}
.cid-qT4prsmDXi .carousel-item.active,
.cid-qT4prsmDXi .carousel-item-next,
.cid-qT4prsmDXi .carousel-item-prev {
  display: flex;
}
.cid-qT4prsmDXi .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
  width: 20%;
}
.cid-qT4prsmDXi .carousel-controls a span {
  position: absolute;
  top: 45%;
  font-size: 1.2rem;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #ffffff;
  opacity: .9;
}
.cid-qT4prsmDXi .carousel-controls a:hover span {
  opacity: 1;
}
.cid-qT4prsmDXi .user_image {
  width: 100px;
  height: 100px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  margin: 1rem auto 1rem auto;
  display: flex;
}
.cid-qT4prsmDXi .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qT4prsmDXi .mbr-iconfont {
  font-size: 3rem;
  position: absolute;
  opacity: 0.3;
  color: #f4f8fa;
}
.cid-qT4prsmDXi .mbr-iconfont.left-top {
  top: 0;
  left: 0;
}
.cid-qT4prsmDXi .mbr-iconfont.right-bottom {
  bottom: 1rem;
  right: 0;
}
.cid-qT4prsmDXi .user_text {
  color: #767676;
  position: relative;
}
@media (min-width: 768px) {
  .cid-qT4prsmDXi .user_text p {
    padding: 1rem 4rem;
  }
}
@media (max-width: 230px) {
  .cid-qT4prsmDXi .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-qT4sx4AzSZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-qT4sx4AzSZ .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-qT4sx4AzSZ .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-qT4saC8JHf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qT4saC8JHf .google-map {
  height: 25rem;
  position: relative;
}
.cid-qT4saC8JHf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qT4saC8JHf .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-qT4saC8JHf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qT4saC8JHf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-qT4sHyF4Tx {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-qT4sHyF4Tx .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-qT4sHyF4Tx .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-qT4sPvhKue {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qT4sPvhKue .google-map {
  height: 25rem;
  position: relative;
}
.cid-qT4sPvhKue .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qT4sPvhKue .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-qT4sPvhKue .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qT4sPvhKue .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-qSZzOprH6A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qSZzOprH6A .content {
    text-align: center;
  }
  .cid-qSZzOprH6A .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSZzOprH6A .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSZzOprH6A .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSZzOprH6A .media-wrap img {
  height: 6rem;
}
.cid-qSZzOprH6A .mbr-text {
  color: #8d97ad;
}
.cid-qSZzOprH6A .p-title {
  font-size: 17px;
}
.cid-qSZzOprH6A .p-title span {
  color: #111111;
}
.cid-qSZzOprH6A .title-card {
  font-size: 1.3rem;
}
.cid-qSZzOprH6A .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qSZzOprH6A .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-qSZzOprH6A .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-qSZzOprH6A .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-qSZzOprH6A .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-qSZzOprH6A .copyright {
  display: flex;
  align-items: center;
}
.cid-qSZzOprH6A .copyright img {
  margin-right: 10px;
}
.cid-qSZzOprH6A .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-qSZzOprH6A .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-qSZzOprH6A .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSZzOprH6A .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-qSZzOprH6A .footer-menu {
    justify-content: center;
  }
}
.cid-qSZzOprH6A SPAN {
  color: #f20049;
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qT4unMgZiH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qT4unMgZiH .mbr-text {
  color: #8d97ad;
}
.cid-qT4unMgZiH .blockquote-quote svg {
  height: 40px;
  width: 40px;
  fill: #8d97ad;
}
.cid-qT4unMgZiH .signature > span {
  color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-qT4unMgZiH .blockquote-quote {
    text-align: left;
  }
  .cid-qT4unMgZiH .signature {
    text-align: left;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTqruFianj {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqruFianj .mbr-overlay {
  background: #efefef;
}
.cid-qTqruFianj .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqruFianj .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqruFianj .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqruFianj .mbr-text {
  color: #8d97ad;
}
.cid-qTqruFianj .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqruFianj .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqruFianj .card-title {
    text-align: center;
  }
  .cid-qTqruFianj p.mbr-text,
  .cid-qTqruFianj p.date {
    text-align: center;
  }
}
.cid-qTqswGa6nx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqswGa6nx .mbr-overlay {
  background: #efefef;
}
.cid-qTqswGa6nx .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqswGa6nx .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqswGa6nx .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqswGa6nx .mbr-text {
  color: #8d97ad;
}
.cid-qTqswGa6nx .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqswGa6nx .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqswGa6nx .card-title {
    text-align: center;
  }
  .cid-qTqswGa6nx p.mbr-text,
  .cid-qTqswGa6nx p.date {
    text-align: center;
  }
}
.cid-qTqtebG3ms {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqtebG3ms .mbr-overlay {
  background: #efefef;
}
.cid-qTqtebG3ms .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqtebG3ms .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqtebG3ms .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqtebG3ms .mbr-text {
  color: #8d97ad;
}
.cid-qTqtebG3ms .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqtebG3ms .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqtebG3ms .card-title {
    text-align: center;
  }
  .cid-qTqtebG3ms p.mbr-text,
  .cid-qTqtebG3ms p.date {
    text-align: center;
  }
}
.cid-qTqtNiEfQn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqtNiEfQn .mbr-overlay {
  background: #efefef;
}
.cid-qTqtNiEfQn .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqtNiEfQn .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqtNiEfQn .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqtNiEfQn .mbr-text {
  color: #8d97ad;
}
.cid-qTqtNiEfQn .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqtNiEfQn .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqtNiEfQn .card-title {
    text-align: center;
  }
  .cid-qTqtNiEfQn p.mbr-text,
  .cid-qTqtNiEfQn p.date {
    text-align: center;
  }
}
.cid-qTquk9j5hO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTquk9j5hO .mbr-overlay {
  background: #efefef;
}
.cid-qTquk9j5hO .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTquk9j5hO .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTquk9j5hO .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTquk9j5hO .mbr-text {
  color: #8d97ad;
}
.cid-qTquk9j5hO .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTquk9j5hO .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTquk9j5hO .card-title {
    text-align: center;
  }
  .cid-qTquk9j5hO p.mbr-text,
  .cid-qTquk9j5hO p.date {
    text-align: center;
  }
}
.cid-qTquNiqAwY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTquNiqAwY .mbr-overlay {
  background: #efefef;
}
.cid-qTquNiqAwY .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTquNiqAwY .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTquNiqAwY .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTquNiqAwY .mbr-text {
  color: #8d97ad;
}
.cid-qTquNiqAwY .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTquNiqAwY .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTquNiqAwY .card-title {
    text-align: center;
  }
  .cid-qTquNiqAwY p.mbr-text,
  .cid-qTquNiqAwY p.date {
    text-align: center;
  }
}
.cid-qTquNWGb40 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTquNWGb40 .mbr-overlay {
  background: #efefef;
}
.cid-qTquNWGb40 .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTquNWGb40 .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTquNWGb40 .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTquNWGb40 .mbr-text {
  color: #8d97ad;
}
.cid-qTquNWGb40 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTquNWGb40 .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTquNWGb40 .card-title {
    text-align: center;
  }
  .cid-qTquNWGb40 p.mbr-text,
  .cid-qTquNWGb40 p.date {
    text-align: center;
  }
}
.cid-qTquOwpJW4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTquOwpJW4 .mbr-overlay {
  background: #efefef;
}
.cid-qTquOwpJW4 .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTquOwpJW4 .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTquOwpJW4 .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTquOwpJW4 .mbr-text {
  color: #8d97ad;
}
.cid-qTquOwpJW4 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTquOwpJW4 .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTquOwpJW4 .card-title {
    text-align: center;
  }
  .cid-qTquOwpJW4 p.mbr-text,
  .cid-qTquOwpJW4 p.date {
    text-align: center;
  }
}
.cid-qTqwWFIhcK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqwWFIhcK .mbr-overlay {
  background: #efefef;
}
.cid-qTqwWFIhcK .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqwWFIhcK .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqwWFIhcK .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqwWFIhcK .mbr-text {
  color: #8d97ad;
}
.cid-qTqwWFIhcK .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqwWFIhcK .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqwWFIhcK .card-title {
    text-align: center;
  }
  .cid-qTqwWFIhcK p.mbr-text,
  .cid-qTqwWFIhcK p.date {
    text-align: center;
  }
}
.cid-qTqwXBZ9XW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqwXBZ9XW .mbr-overlay {
  background: #efefef;
}
.cid-qTqwXBZ9XW .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqwXBZ9XW .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqwXBZ9XW .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqwXBZ9XW .mbr-text {
  color: #8d97ad;
}
.cid-qTqwXBZ9XW .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqwXBZ9XW .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqwXBZ9XW .card-title {
    text-align: center;
  }
  .cid-qTqwXBZ9XW p.mbr-text,
  .cid-qTqwXBZ9XW p.date {
    text-align: center;
  }
}
.cid-qTqwYNT7aP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqwYNT7aP .mbr-overlay {
  background: #efefef;
}
.cid-qTqwYNT7aP .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqwYNT7aP .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqwYNT7aP .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqwYNT7aP .mbr-text {
  color: #8d97ad;
}
.cid-qTqwYNT7aP .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqwYNT7aP .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqwYNT7aP .card-title {
    text-align: center;
  }
  .cid-qTqwYNT7aP p.mbr-text,
  .cid-qTqwYNT7aP p.date {
    text-align: center;
  }
}
.cid-qTqyXdwcoN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqyXdwcoN .mbr-overlay {
  background: #efefef;
}
.cid-qTqyXdwcoN .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqyXdwcoN .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqyXdwcoN .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqyXdwcoN .mbr-text {
  color: #8d97ad;
}
.cid-qTqyXdwcoN .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqyXdwcoN .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqyXdwcoN .card-title {
    text-align: center;
  }
  .cid-qTqyXdwcoN p.mbr-text,
  .cid-qTqyXdwcoN p.date {
    text-align: center;
  }
}
.cid-qTqzZQcHZW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqzZQcHZW .mbr-overlay {
  background: #efefef;
}
.cid-qTqzZQcHZW .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqzZQcHZW .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqzZQcHZW .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqzZQcHZW .mbr-text {
  color: #8d97ad;
}
.cid-qTqzZQcHZW .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqzZQcHZW .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqzZQcHZW .card-title {
    text-align: center;
  }
  .cid-qTqzZQcHZW p.mbr-text,
  .cid-qTqzZQcHZW p.date {
    text-align: center;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTqin7wymh {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/reparation-smartphones-aubgiphone-yonne2-1-2000x2667.jpg");
}
.cid-qTqin7wymh .mbr-overlay {
  background: #efefef;
  background: linear-gradient(90deg, #efefef, #cccccc);
}
.cid-qTqin7wymh .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqin7wymh .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqin7wymh .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqin7wymh .mbr-text {
  color: #444444;
}
.cid-qTqin7wymh .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqin7wymh .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqin7wymh .card-title {
    text-align: center;
  }
  .cid-qTqin7wymh p.mbr-text,
  .cid-qTqin7wymh p.date {
    text-align: center;
  }
}
.cid-qTqjPRPRFU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/reparation-smartphones-aubgiphone-yonne2-2000x2667.jpg");
}
.cid-qTqjPRPRFU .mbr-overlay {
  background: #efefef;
}
.cid-qTqjPRPRFU .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqjPRPRFU .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqjPRPRFU .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqjPRPRFU .mbr-text {
  color: #444444;
}
.cid-qTqjPRPRFU .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqjPRPRFU .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqjPRPRFU .card-title {
    text-align: center;
  }
  .cid-qTqjPRPRFU p.mbr-text,
  .cid-qTqjPRPRFU p.date {
    text-align: center;
  }
}
.cid-qTqkYDbXMf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/reparation-smartphones-aubgiphone-yonne1-2000x2667.jpg");
}
.cid-qTqkYDbXMf .mbr-overlay {
  background: #efefef;
}
.cid-qTqkYDbXMf .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqkYDbXMf .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqkYDbXMf .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqkYDbXMf .mbr-text {
  color: #8d97ad;
}
.cid-qTqkYDbXMf .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqkYDbXMf .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqkYDbXMf .card-title {
    text-align: center;
  }
  .cid-qTqkYDbXMf p.mbr-text,
  .cid-qTqkYDbXMf p.date {
    text-align: center;
  }
}
.cid-qTqlDjMuDm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/reparation-smartphones-aubgiphone-yonne2-1-2000x2667.jpg");
}
.cid-qTqlDjMuDm .mbr-overlay {
  background: #efefef;
}
.cid-qTqlDjMuDm .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqlDjMuDm .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqlDjMuDm .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqlDjMuDm .mbr-text {
  color: #8d97ad;
}
.cid-qTqlDjMuDm .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqlDjMuDm .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqlDjMuDm .card-title {
    text-align: center;
  }
  .cid-qTqlDjMuDm p.mbr-text,
  .cid-qTqlDjMuDm p.date {
    text-align: center;
  }
}
.cid-qTqoc5mH3t {
  padding-top: 0px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/reparation-smartphones-aubgiphone-yonne2-1-2000x2667.jpg");
}
.cid-qTqoc5mH3t .mbr-overlay {
  background: #efefef;
}
.cid-qTqoc5mH3t .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqoc5mH3t .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqoc5mH3t .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqoc5mH3t .mbr-text {
  color: #8d97ad;
}
.cid-qTqoc5mH3t .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqoc5mH3t .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqoc5mH3t .card-title {
    text-align: center;
  }
  .cid-qTqoc5mH3t p.mbr-text,
  .cid-qTqoc5mH3t p.date {
    text-align: center;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTqExUnhdj {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqExUnhdj .mbr-overlay {
  background: #efefef;
}
.cid-qTqExUnhdj .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqExUnhdj .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqExUnhdj .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqExUnhdj .mbr-text {
  color: #8d97ad;
}
.cid-qTqExUnhdj .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqExUnhdj .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqExUnhdj .card-title {
    text-align: center;
  }
  .cid-qTqExUnhdj p.mbr-text,
  .cid-qTqExUnhdj p.date {
    text-align: center;
  }
}
.cid-qTqFjurICI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqFjurICI .mbr-overlay {
  background: #efefef;
}
.cid-qTqFjurICI .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqFjurICI .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqFjurICI .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqFjurICI .mbr-text {
  color: #8d97ad;
}
.cid-qTqFjurICI .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqFjurICI .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqFjurICI .card-title {
    text-align: center;
  }
  .cid-qTqFjurICI p.mbr-text,
  .cid-qTqFjurICI p.date {
    text-align: center;
  }
}
.cid-qTqG1lCqCw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqG1lCqCw .mbr-overlay {
  background: #efefef;
}
.cid-qTqG1lCqCw .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqG1lCqCw .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqG1lCqCw .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqG1lCqCw .mbr-text {
  color: #8d97ad;
}
.cid-qTqG1lCqCw .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqG1lCqCw .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqG1lCqCw .card-title {
    text-align: center;
  }
  .cid-qTqG1lCqCw p.mbr-text,
  .cid-qTqG1lCqCw p.date {
    text-align: center;
  }
}
.cid-qTqGpJum2M {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqGpJum2M .mbr-overlay {
  background: #efefef;
}
.cid-qTqGpJum2M .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqGpJum2M .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqGpJum2M .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqGpJum2M .mbr-text {
  color: #8d97ad;
}
.cid-qTqGpJum2M .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqGpJum2M .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqGpJum2M .card-title {
    text-align: center;
  }
  .cid-qTqGpJum2M p.mbr-text,
  .cid-qTqGpJum2M p.date {
    text-align: center;
  }
}
.cid-qTqGQ3oCBI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqGQ3oCBI .mbr-overlay {
  background: #efefef;
}
.cid-qTqGQ3oCBI .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqGQ3oCBI .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqGQ3oCBI .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqGQ3oCBI .mbr-text {
  color: #8d97ad;
}
.cid-qTqGQ3oCBI .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqGQ3oCBI .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqGQ3oCBI .card-title {
    text-align: center;
  }
  .cid-qTqGQ3oCBI p.mbr-text,
  .cid-qTqGQ3oCBI p.date {
    text-align: center;
  }
}
.cid-qTqHg5nZCI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqHg5nZCI .mbr-overlay {
  background: #efefef;
}
.cid-qTqHg5nZCI .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqHg5nZCI .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqHg5nZCI .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqHg5nZCI .mbr-text {
  color: #8d97ad;
}
.cid-qTqHg5nZCI .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqHg5nZCI .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqHg5nZCI .card-title {
    text-align: center;
  }
  .cid-qTqHg5nZCI p.mbr-text,
  .cid-qTqHg5nZCI p.date {
    text-align: center;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTqIl8EYIS {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqIl8EYIS .mbr-overlay {
  background: #efefef;
}
.cid-qTqIl8EYIS .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqIl8EYIS .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqIl8EYIS .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqIl8EYIS .mbr-text {
  color: #8d97ad;
}
.cid-qTqIl8EYIS .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqIl8EYIS .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqIl8EYIS .card-title {
    text-align: center;
  }
  .cid-qTqIl8EYIS p.mbr-text,
  .cid-qTqIl8EYIS p.date {
    text-align: center;
  }
}
.cid-qTqHUdxjmO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqHUdxjmO .mbr-overlay {
  background: #efefef;
}
.cid-qTqHUdxjmO .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqHUdxjmO .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqHUdxjmO .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqHUdxjmO .mbr-text {
  color: #8d97ad;
}
.cid-qTqHUdxjmO .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqHUdxjmO .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqHUdxjmO .card-title {
    text-align: center;
  }
  .cid-qTqHUdxjmO p.mbr-text,
  .cid-qTqHUdxjmO p.date {
    text-align: center;
  }
}
.cid-qTqINkk0Ot {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqINkk0Ot .mbr-overlay {
  background: #efefef;
}
.cid-qTqINkk0Ot .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqINkk0Ot .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqINkk0Ot .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqINkk0Ot .mbr-text {
  color: #8d97ad;
}
.cid-qTqINkk0Ot .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqINkk0Ot .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqINkk0Ot .card-title {
    text-align: center;
  }
  .cid-qTqINkk0Ot p.mbr-text,
  .cid-qTqINkk0Ot p.date {
    text-align: center;
  }
}
.cid-qTqJepiFWw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqJepiFWw .mbr-overlay {
  background: #efefef;
}
.cid-qTqJepiFWw .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqJepiFWw .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqJepiFWw .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqJepiFWw .mbr-text {
  color: #8d97ad;
}
.cid-qTqJepiFWw .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqJepiFWw .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqJepiFWw .card-title {
    text-align: center;
  }
  .cid-qTqJepiFWw p.mbr-text,
  .cid-qTqJepiFWw p.date {
    text-align: center;
  }
}
.cid-qTqJEniZPs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqJEniZPs .mbr-overlay {
  background: #efefef;
}
.cid-qTqJEniZPs .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqJEniZPs .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqJEniZPs .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqJEniZPs .mbr-text {
  color: #8d97ad;
}
.cid-qTqJEniZPs .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqJEniZPs .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqJEniZPs .card-title {
    text-align: center;
  }
  .cid-qTqJEniZPs p.mbr-text,
  .cid-qTqJEniZPs p.date {
    text-align: center;
  }
}
.cid-qTqK6o7hSQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqK6o7hSQ .mbr-overlay {
  background: #efefef;
}
.cid-qTqK6o7hSQ .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqK6o7hSQ .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqK6o7hSQ .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqK6o7hSQ .mbr-text {
  color: #8d97ad;
}
.cid-qTqK6o7hSQ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqK6o7hSQ .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqK6o7hSQ .card-title {
    text-align: center;
  }
  .cid-qTqK6o7hSQ p.mbr-text,
  .cid-qTqK6o7hSQ p.date {
    text-align: center;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTqQEgd3wl {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqQEgd3wl .mbr-overlay {
  background: #efefef;
}
.cid-qTqQEgd3wl .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqQEgd3wl .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqQEgd3wl .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqQEgd3wl .mbr-text {
  color: #8d97ad;
}
.cid-qTqQEgd3wl .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqQEgd3wl .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqQEgd3wl .card-title {
    text-align: center;
  }
  .cid-qTqQEgd3wl p.mbr-text,
  .cid-qTqQEgd3wl p.date {
    text-align: center;
  }
}
.cid-qTqTIsl2Qk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTqTIsl2Qk .mbr-overlay {
  background: #efefef;
}
.cid-qTqTIsl2Qk .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTqTIsl2Qk .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTqTIsl2Qk .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTqTIsl2Qk .mbr-text {
  color: #8d97ad;
}
.cid-qTqTIsl2Qk .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTqTIsl2Qk .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTqTIsl2Qk .card-title {
    text-align: center;
  }
  .cid-qTqTIsl2Qk p.mbr-text,
  .cid-qTqTIsl2Qk p.date {
    text-align: center;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTrkycAlyV {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTrkycAlyV .mbr-overlay {
  background: #efefef;
}
.cid-qTrkycAlyV .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTrkycAlyV .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTrkycAlyV .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTrkycAlyV .mbr-text {
  color: #8d97ad;
}
.cid-qTrkycAlyV .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTrkycAlyV .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTrkycAlyV .card-title {
    text-align: center;
  }
  .cid-qTrkycAlyV p.mbr-text,
  .cid-qTrkycAlyV p.date {
    text-align: center;
  }
}
.cid-qTrl1RiN3b {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTrl1RiN3b .mbr-overlay {
  background: #efefef;
}
.cid-qTrl1RiN3b .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTrl1RiN3b .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTrl1RiN3b .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTrl1RiN3b .mbr-text {
  color: #8d97ad;
}
.cid-qTrl1RiN3b .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTrl1RiN3b .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTrl1RiN3b .card-title {
    text-align: center;
  }
  .cid-qTrl1RiN3b p.mbr-text,
  .cid-qTrl1RiN3b p.date {
    text-align: center;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTrlYIw6Cn {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTrlYIw6Cn .mbr-overlay {
  background: #efefef;
}
.cid-qTrlYIw6Cn .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTrlYIw6Cn .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTrlYIw6Cn .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTrlYIw6Cn .mbr-text {
  color: #8d97ad;
}
.cid-qTrlYIw6Cn .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTrlYIw6Cn .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTrlYIw6Cn .card-title {
    text-align: center;
  }
  .cid-qTrlYIw6Cn p.mbr-text,
  .cid-qTrlYIw6Cn p.date {
    text-align: center;
  }
}
.cid-qTrmnHOxWL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTrmnHOxWL .mbr-overlay {
  background: #efefef;
}
.cid-qTrmnHOxWL .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTrmnHOxWL .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTrmnHOxWL .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTrmnHOxWL .mbr-text {
  color: #8d97ad;
}
.cid-qTrmnHOxWL .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTrmnHOxWL .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTrmnHOxWL .card-title {
    text-align: center;
  }
  .cid-qTrmnHOxWL p.mbr-text,
  .cid-qTrmnHOxWL p.date {
    text-align: center;
  }
}
.cid-qTrmJaM5QC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTrmJaM5QC .mbr-overlay {
  background: #efefef;
}
.cid-qTrmJaM5QC .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTrmJaM5QC .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTrmJaM5QC .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTrmJaM5QC .mbr-text {
  color: #8d97ad;
}
.cid-qTrmJaM5QC .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTrmJaM5QC .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTrmJaM5QC .card-title {
    text-align: center;
  }
  .cid-qTrmJaM5QC p.mbr-text,
  .cid-qTrmJaM5QC p.date {
    text-align: center;
  }
}
.cid-qTrneUpac5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTrneUpac5 .mbr-overlay {
  background: #efefef;
}
.cid-qTrneUpac5 .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTrneUpac5 .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTrneUpac5 .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTrneUpac5 .mbr-text {
  color: #8d97ad;
}
.cid-qTrneUpac5 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTrneUpac5 .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTrneUpac5 .card-title {
    text-align: center;
  }
  .cid-qTrneUpac5 p.mbr-text,
  .cid-qTrneUpac5 p.date {
    text-align: center;
  }
}
.cid-qTrnLLMSRy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTrnLLMSRy .mbr-overlay {
  background: #efefef;
}
.cid-qTrnLLMSRy .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTrnLLMSRy .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTrnLLMSRy .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTrnLLMSRy .mbr-text {
  color: #8d97ad;
}
.cid-qTrnLLMSRy .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTrnLLMSRy .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTrnLLMSRy .card-title {
    text-align: center;
  }
  .cid-qTrnLLMSRy p.mbr-text,
  .cid-qTrnLLMSRy p.date {
    text-align: center;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTroBAqmvW {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTroBAqmvW .mbr-overlay {
  background: #efefef;
}
.cid-qTroBAqmvW .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTroBAqmvW .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTroBAqmvW .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTroBAqmvW .mbr-text {
  color: #8d97ad;
}
.cid-qTroBAqmvW .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTroBAqmvW .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTroBAqmvW .card-title {
    text-align: center;
  }
  .cid-qTroBAqmvW p.mbr-text,
  .cid-qTroBAqmvW p.date {
    text-align: center;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTrpPeXSPY {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTrpPeXSPY .mbr-overlay {
  background: #efefef;
}
.cid-qTrpPeXSPY .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-qTrpPeXSPY .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-qTrpPeXSPY .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTrpPeXSPY .mbr-text {
  color: #8d97ad;
}
.cid-qTrpPeXSPY .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTrpPeXSPY .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-qTrpPeXSPY .card-title {
    text-align: center;
  }
  .cid-qTrpPeXSPY p.mbr-text,
  .cid-qTrpPeXSPY p.date {
    text-align: center;
  }
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTw2okICqE {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTw2okICqE .mbr-iconfont {
  color: #8d97ad;
}
.cid-qTw2okICqE .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-qTw2okICqE .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-qTw2okICqE .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTw2okICqE .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTw2okICqE .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-qTw2okICqE .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qTw49WCaN9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTw49WCaN9 .mbr-iconfont {
  color: #8d97ad;
}
.cid-qTw49WCaN9 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-qTw49WCaN9 .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-qTw49WCaN9 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTw49WCaN9 .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTw49WCaN9 .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-qTw49WCaN9 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qTw4R9NDNF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTw4R9NDNF .mbr-iconfont {
  color: #8d97ad;
}
.cid-qTw4R9NDNF .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-qTw4R9NDNF .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-qTw4R9NDNF .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTw4R9NDNF .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTw4R9NDNF .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-qTw4R9NDNF .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qTw5n3njfs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTw5n3njfs .mbr-iconfont {
  color: #8d97ad;
}
.cid-qTw5n3njfs .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-qTw5n3njfs .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-qTw5n3njfs .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTw5n3njfs .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTw5n3njfs .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-qTw5n3njfs .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qTw5QYmTgR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTw5QYmTgR .mbr-iconfont {
  color: #8d97ad;
}
.cid-qTw5QYmTgR .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-qTw5QYmTgR .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-qTw5QYmTgR .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTw5QYmTgR .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTw5QYmTgR .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-qTw5QYmTgR .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qTw6pQC1pe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qTw6pQC1pe .mbr-iconfont {
  color: #8d97ad;
}
.cid-qTw6pQC1pe .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-qTw6pQC1pe .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-qTw6pQC1pe .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-qTw6pQC1pe .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTw6pQC1pe .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-qTw6pQC1pe .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qVpscRDDaQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-qVpscRDDaQ .row {
  justify-content: flex-end;
  align-items: stretch;
}
.cid-qVpscRDDaQ .content-panel {
  padding: 2rem;
  background-color: #08579f;
  border-radius: .25rem;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qVpscRDDaQ .content-block {
  color: #efefef;
}
.cid-qVpscRDDaQ .input-wrap,
.cid-qVpscRDDaQ .form-group {
  padding-left: .5rem;
  padding-right: .5rem;
}
.cid-qVpscRDDaQ .field,
.cid-qVpscRDDaQ .form-control {
  border-radius: .25rem !important;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 768px) {
  .cid-qVpscRDDaQ .main-row {
    flex-direction: column-reverse;
  }
  .cid-qVpscRDDaQ .text-block {
    margin-bottom: 2rem;
  }
}
.cid-qVprItzrzh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qVprItzrzh .content {
    text-align: center;
  }
  .cid-qVprItzrzh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qVprItzrzh .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qVprItzrzh .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qVprItzrzh .media-wrap img {
  height: 6rem;
}
.cid-qVprItzrzh .mbr-text {
  color: #8d97ad;
}
.cid-qVprItzrzh .p-title {
  font-size: 17px;
}
.cid-qVprItzrzh .p-title span {
  color: #111111;
}
.cid-qVprItzrzh .title-card {
  font-size: 1.3rem;
}
.cid-qVprItzrzh .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qVprItzrzh .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-qVprItzrzh .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-qVprItzrzh .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-qVprItzrzh .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-qVprItzrzh .copyright {
  display: flex;
  align-items: center;
}
.cid-qVprItzrzh .copyright img {
  margin-right: 10px;
}
.cid-qVprItzrzh .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-qVprItzrzh .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-qVprItzrzh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qVprItzrzh .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-qVprItzrzh .footer-menu {
    justify-content: center;
  }
}
.cid-qVprItzrzh SPAN {
  color: #f20049;
}
.cid-qSZzufen3k .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;
  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-qSZzufen3k .nav-item,
.cid-qSZzufen3k .nav-link,
.cid-qSZzufen3k .navbar-caption {
  font-weight: normal;
}
.cid-qSZzufen3k .nav-item:focus,
.cid-qSZzufen3k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSZzufen3k .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  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-qSZzufen3k .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSZzufen3k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSZzufen3k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSZzufen3k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSZzufen3k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f20049;
  background: none;
}
.cid-qSZzufen3k .navbar.opened {
  transition: all .3s;
  background: #f20049 !important;
}
.cid-qSZzufen3k .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-qSZzufen3k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSZzufen3k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSZzufen3k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSZzufen3k .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-qSZzufen3k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSZzufen3k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-qSZzufen3k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSZzufen3k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSZzufen3k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSZzufen3k .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-qSZzufen3k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSZzufen3k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSZzufen3k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-qSZzufen3k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSZzufen3k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSZzufen3k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSZzufen3k .navbar.navbar-short {
  background: #f20049 !important;
  min-height: 60px;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSZzufen3k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSZzufen3k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSZzufen3k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSZzufen3k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSZzufen3k .dropdown-item.active,
.cid-qSZzufen3k .dropdown-item:active {
  background-color: transparent;
}
.cid-qSZzufen3k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSZzufen3k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f20049;
}
.cid-qSZzufen3k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSZzufen3k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSZzufen3k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSZzufen3k .navbar-buttons {
  text-align: center;
}
.cid-qSZzufen3k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSZzufen3k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSZzufen3k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSZzufen3k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSZzufen3k a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSZzufen3k .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-qSZzufen3k .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-qSZzufen3k .soc-item {
  margin: .5rem .3rem;
}
.cid-qSZzufen3k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSZzufen3k .navbar {
    height: 77px;
  }
  .cid-qSZzufen3k .navbar.opened {
    height: auto;
  }
  .cid-qSZzufen3k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTwAdwEAK9 {
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-qTwAdwEAK9 .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-qTwAdwEAK9 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-qTwCcJGhVw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-qTwCcJGhVw .row {
  justify-content: flex-end;
  align-items: stretch;
}
.cid-qTwCcJGhVw .content-panel {
  padding: 2rem;
  background-color: #08579f;
  border-radius: .25rem;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-qTwCcJGhVw .content-block {
  color: #efefef;
}
.cid-qTwCcJGhVw .input-wrap,
.cid-qTwCcJGhVw .form-group {
  padding-left: .5rem;
  padding-right: .5rem;
}
.cid-qTwCcJGhVw .field,
.cid-qTwCcJGhVw .form-control {
  border-radius: .25rem !important;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 768px) {
  .cid-qTwCcJGhVw .main-row {
    flex-direction: column-reverse;
  }
  .cid-qTwCcJGhVw .text-block {
    margin-bottom: 2rem;
  }
}
.cid-qVprTXyIRj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qVprTXyIRj .content {
    text-align: center;
  }
  .cid-qVprTXyIRj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qVprTXyIRj .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qVprTXyIRj .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qVprTXyIRj .media-wrap img {
  height: 6rem;
}
.cid-qVprTXyIRj .mbr-text {
  color: #8d97ad;
}
.cid-qVprTXyIRj .p-title {
  font-size: 17px;
}
.cid-qVprTXyIRj .p-title span {
  color: #111111;
}
.cid-qVprTXyIRj .title-card {
  font-size: 1.3rem;
}
.cid-qVprTXyIRj .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qVprTXyIRj .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-qVprTXyIRj .footer-menu {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.cid-qVprTXyIRj .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-qVprTXyIRj .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-qVprTXyIRj .copyright {
  display: flex;
  align-items: center;
}
.cid-qVprTXyIRj .copyright img {
  margin-right: 10px;
}
.cid-qVprTXyIRj .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-qVprTXyIRj .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-qVprTXyIRj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qVprTXyIRj .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-qVprTXyIRj .footer-menu {
    justify-content: center;
  }
}
.cid-qVprTXyIRj SPAN {
  color: #f20049;
}
